pom.xml 3.7 KB

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