pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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</version>
  20. </dependency>
  21. <!--// Maven module core -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-batch</artifactId>
  25. </dependency>
  26. <!-- /// WEB-INF lib -->
  27. <dependency>
  28. <groupId>com.gagaframework</groupId>
  29. <artifactId>gagaframework-web-core</artifactId>
  30. <version>1.7.1-RELEASE</version>
  31. <scope>system</scope>
  32. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-core-1.7.1-RELEASE.jar</systemPath>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.gagaframework</groupId>
  36. <artifactId>gagaframework-web-parameter</artifactId>
  37. <version>1.7-RELEASE</version>
  38. <scope>system</scope>
  39. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-parameter-1.7-RELEASE.jar</systemPath>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.gagaframework</groupId>
  43. <artifactId>gagaframework-web-rest</artifactId>
  44. <version>1.7.1-RELEASE</version>
  45. <scope>system</scope>
  46. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-rest-1.7-RELEASE.jar</systemPath>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.gagaframework</groupId>
  50. <artifactId>gagaframework-web-util</artifactId>
  51. <version>1.7-RELEASE</version>
  52. <scope>system</scope>
  53. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-util-1.7-RELEASE.jar</systemPath>
  54. </dependency>
  55. <!--USAFE 보증보험-->
  56. <dependency>
  57. <groupId>com.usafe.guarantee</groupId>
  58. <artifactId>usafe-guarantee</artifactId>
  59. <version>1.0</version>
  60. <scope>system</scope>
  61. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/usafe.jar</systemPath>
  62. </dependency>
  63. <dependency>
  64. <groupId>net.sourceforge.blowfishj</groupId>
  65. <artifactId>usafe-blowfishj</artifactId>
  66. <version>1.0</version>
  67. <scope>system</scope>
  68. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/usafe.jar</systemPath>
  69. </dependency>
  70. <!--KCP-->
  71. <dependency>
  72. <groupId>com.kcp</groupId>
  73. <artifactId>kcp</artifactId>
  74. <version>1.0</version>
  75. <scope>system</scope>
  76. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/jPpcliE.jar</systemPath>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.kcp</groupId>
  80. <artifactId>ConnectionKCP</artifactId>
  81. <version>1.0</version>
  82. <scope>system</scope>
  83. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/ConnectionKCP.jar</systemPath>
  84. </dependency>
  85. <dependency>
  86. <groupId>kr.co.kcp.CT_CLI</groupId>
  87. <artifactId>CT_CLI</artifactId>
  88. <version>1.0</version>
  89. <scope>system</scope>
  90. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/CtCli-1.0.6.jar</systemPath>
  91. </dependency>
  92. <!-- \\\ WEB-INF lib -->
  93. </dependencies>
  94. <build>
  95. <finalName>${project.name}</finalName>
  96. <resources>
  97. <resource>
  98. <directory>src/main/java</directory>
  99. <includes>
  100. <include>**/*.xml</include>
  101. </includes>
  102. </resource>
  103. <resource>
  104. <directory>src/main/resources</directory>
  105. <includes>
  106. <include>**/*</include>
  107. </includes>
  108. </resource>
  109. </resources>
  110. </build>
  111. </project>