pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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.scm</groupId>
  10. <artifactId>style24.scm</artifactId>
  11. <packaging>war</packaging>
  12. <name>style24.scm</name>
  13. <description>STYLE24 SCM</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-security</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.security</groupId>
  28. <artifactId>spring-security-test</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>nz.net.ultraq.thymeleaf</groupId>
  37. <artifactId>thymeleaf-layout-dialect</artifactId>
  38. </dependency>
  39. <!-- /// WEB-INF lib -->
  40. <dependency>
  41. <groupId>com.gagaframework</groupId>
  42. <artifactId>gagaframework-web-core</artifactId>
  43. <version>1.7.1-RELEASE</version>
  44. <scope>system</scope>
  45. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-core-1.7.1-RELEASE.jar</systemPath>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.gagaframework</groupId>
  49. <artifactId>gagaframework-web-security</artifactId>
  50. <version>1.7.2-RELEASE</version>
  51. <scope>system</scope>
  52. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-security-1.7.2-RELEASE.jar</systemPath>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.gagaframework</groupId>
  56. <artifactId>gagaframework-web-parameter</artifactId>
  57. <version>1.7-RELEASE</version>
  58. <scope>system</scope>
  59. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-parameter-1.7-RELEASE.jar</systemPath>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.gagaframework</groupId>
  63. <artifactId>gagaframework-web-rest</artifactId>
  64. <version>1.7.1-RELEASE</version>
  65. <scope>system</scope>
  66. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-rest-1.7-RELEASE.jar</systemPath>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.gagaframework</groupId>
  70. <artifactId>gagaframework-web-util</artifactId>
  71. <version>1.7-RELEASE</version>
  72. <scope>system</scope>
  73. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-web-util-1.7-RELEASE.jar</systemPath>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.gagaframework</groupId>
  77. <artifactId>gagaframework-excel</artifactId>
  78. <version>1.7.1-RELEASE</version>
  79. <scope>system</scope>
  80. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gagaframework-excel-1.7.1-RELEASE.jar</systemPath>
  81. </dependency>
  82. <!--KCP-->
  83. <dependency>
  84. <groupId>com.kcp</groupId>
  85. <artifactId>kcp</artifactId>
  86. <version>1.0</version>
  87. <scope>system</scope>
  88. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/jPpcliE.jar</systemPath>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.kcp</groupId>
  92. <artifactId>ConnectionKCP</artifactId>
  93. <version>1.0</version>
  94. <scope>system</scope>
  95. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/ConnectionKCP.jar</systemPath>
  96. </dependency>
  97. <dependency>
  98. <groupId>kr.co.kcp.CT_CLI</groupId>
  99. <artifactId>CT_CLI</artifactId>
  100. <version>1.0</version>
  101. <scope>system</scope>
  102. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/CtCli-1.0.6.jar</systemPath>
  103. </dependency>
  104. <!-- \\\ WEB-INF lib -->
  105. </dependencies>
  106. <build>
  107. <plugins>
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-resources-plugin</artifactId>
  111. <version>3.1.0</version>
  112. <executions>
  113. <execution>
  114. <id>copyCore</id>
  115. <phase>prepare-package</phase>
  116. <goals>
  117. <goal>copy-resources</goal>
  118. </goals>
  119. <configuration>
  120. <resources>
  121. <resource>
  122. <directory>
  123. ${basedir}/../style24.core/target/classes
  124. </directory>
  125. <filtering>
  126. false
  127. </filtering>
  128. <includes>
  129. <include>**/*</include>
  130. </includes>
  131. </resource>
  132. </resources>
  133. <outputDirectory>
  134. ${basedir}/target/classes
  135. </outputDirectory>
  136. </configuration>
  137. </execution>
  138. </executions>
  139. </plugin>
  140. </plugins>
  141. <finalName>${project.name}</finalName>
  142. <resources>
  143. <resource>
  144. <directory>src/main/java</directory>
  145. <includes>
  146. <include>**/*.xml</include>
  147. </includes>
  148. </resource>
  149. <resource>
  150. <directory>src/main/resources</directory>
  151. <includes>
  152. <include>**/*</include>
  153. </includes>
  154. </resource>
  155. </resources>
  156. </build>
  157. </project>