pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.style24</groupId>
  6. <artifactId>root</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <groupId>com.style24.batch</groupId>
  10. <artifactId>style24.batch</artifactId>
  11. <packaging>war</packaging>
  12. <name>style24.batch</name>
  13. <description>STYLE24 Batch</description>
  14. <dependencies>
  15. <!-- Maven module core -->
  16. <dependency>
  17. <groupId>com.style24.core</groupId>
  18. <artifactId>style24.core</artifactId>
  19. <version>0.0.1-SNAPSHOT</version>
  20. <scope>compile</scope>
  21. </dependency>
  22. <!--// Maven module core -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-batch</artifactId>
  26. </dependency>
  27. <!-- /// WEB-INF lib -->
  28. <dependency>
  29. <groupId>com.gagaframework</groupId>
  30. <artifactId>gagaframework-web-core</artifactId>
  31. <version>1.7.1-RELEASE</version>
  32. <scope>system</scope>
  33. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-core-1.7.1-RELEASE.jar</systemPath>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.gagaframework</groupId>
  37. <artifactId>gagaframework-web-parameter</artifactId>
  38. <version>1.7-RELEASE</version>
  39. <scope>system</scope>
  40. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-parameter-1.7-RELEASE.jar</systemPath>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.gagaframework</groupId>
  44. <artifactId>gagaframework-web-rest</artifactId>
  45. <version>1.7.1-RELEASE</version>
  46. <scope>system</scope>
  47. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-rest-1.7-RELEASE.jar</systemPath>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.gagaframework</groupId>
  51. <artifactId>gagaframework-web-util</artifactId>
  52. <version>1.7-RELEASE</version>
  53. <scope>system</scope>
  54. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-util-1.7-RELEASE.jar</systemPath>
  55. </dependency>
  56. <!-- \\\ WEB-INF lib -->
  57. </dependencies>
  58. <build>
  59. <finalName>${project.name}</finalName>
  60. <resources>
  61. <resource>
  62. <directory>src/main/java</directory>
  63. <includes>
  64. <include>**/*.xml</include>
  65. </includes>
  66. </resource>
  67. <resource>
  68. <directory>src/main/resources</directory>
  69. <includes>
  70. <include>**/*</include>
  71. </includes>
  72. </resource>
  73. </resources>
  74. </build>
  75. </project>