pom.xml 2.3 KB

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