pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. </dependency>
  20. <!--// Maven module core -->
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-batch</artifactId>
  24. </dependency>
  25. <!-- /// WEB-INF lib -->
  26. <dependency>
  27. <groupId>com.gagaframework</groupId>
  28. <artifactId>gagaframework-web-core</artifactId>
  29. <version>1.7.1-RELEASE</version>
  30. <scope>system</scope>
  31. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-core-1.7.1-RELEASE.jar</systemPath>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.gagaframework</groupId>
  35. <artifactId>gagaframework-web-parameter</artifactId>
  36. <version>1.7-RELEASE</version>
  37. <scope>system</scope>
  38. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-parameter-1.7-RELEASE.jar</systemPath>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.gagaframework</groupId>
  42. <artifactId>gagaframework-web-rest</artifactId>
  43. <version>1.7.1-RELEASE</version>
  44. <scope>system</scope>
  45. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-rest-1.7-RELEASE.jar</systemPath>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.gagaframework</groupId>
  49. <artifactId>gagaframework-web-util</artifactId>
  50. <version>1.7-RELEASE</version>
  51. <scope>system</scope>
  52. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-util-1.7-RELEASE.jar</systemPath>
  53. </dependency>
  54. <!-- \\\ WEB-INF lib -->
  55. </dependencies>
  56. <build>
  57. <finalName>${project.name}</finalName>
  58. <resources>
  59. <resource>
  60. <directory>src/main/java</directory>
  61. <includes>
  62. <include>**/*.xml</include>
  63. </includes>
  64. </resource>
  65. <resource>
  66. <directory>src/main/resources</directory>
  67. <includes>
  68. <include>**/*</include>
  69. </includes>
  70. </resource>
  71. </resources>
  72. </build>
  73. </project>