pom.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.4.13</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.its</groupId>
  12. <artifactId>pis-comm-server</artifactId>
  13. <version>0.0.1</version>
  14. <name>pis-comm-server</name>
  15. <description>PIS Communication Server</description>
  16. <packaging>jar</packaging>
  17. <repositories>
  18. <repository>
  19. <id>oracle</id>
  20. <url>http://maven.jahia.org/maven2</url>
  21. </repository>
  22. </repositories>
  23. <properties>
  24. <java.version>1.8</java.version>
  25. <jackson.version>2.13.1</jackson.version>
  26. <!-- jar 배포용 -->
  27. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  28. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  29. <maven.compiler.source>1.8</maven.compiler.source>
  30. <maven.compiler.target>1.8</maven.compiler.target>
  31. <!--main 함수가 있는 class 경로-->
  32. <start-class>com.its.pis.PisCommServerApplication</start-class>
  33. <webapp.lib>C:\DEV\ITS\01.WINDOWS\22.05.GUMI\JAVA\repository</webapp.lib>
  34. <maven.test.skip>true</maven.test.skip>
  35. </properties>
  36. <dependencies>
  37. <!-- logback for windows color jansi 1.8 version -->
  38. <dependency>
  39. <groupId>org.fusesource.jansi</groupId>
  40. <artifactId>jansi</artifactId>
  41. <version>1.8</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>io.jsonwebtoken</groupId>
  45. <artifactId>jjwt</artifactId>
  46. <version>0.9.1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.jcabi</groupId>
  55. <artifactId>jcabi-log</artifactId>
  56. <version>0.20.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.oracle</groupId>
  60. <artifactId>ojdbc7</artifactId>
  61. <version>12.1.0.2</version>
  62. <scope>system</scope>
  63. <systemPath>${webapp.lib}/ojdbc7-12.1.0.2.jar</systemPath>
  64. </dependency>
  65. <dependency>
  66. <groupId>tibero6</groupId>
  67. <artifactId>tibero6-jdbc</artifactId>
  68. <version>1.0.0</version>
  69. <scope>system</scope>
  70. <systemPath>${webapp.lib}/tibero6-jdbc-14.jar</systemPath>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.google.guava</groupId>
  74. <artifactId>guava</artifactId>
  75. <version>30.1-jre</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.bgee.log4jdbc-log4j2</groupId>
  79. <artifactId>log4jdbc-log4j2-jdbc4.1</artifactId>
  80. <version>1.16</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-quartz</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-jdbc</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-web</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.mybatis.spring.boot</groupId>
  96. <artifactId>mybatis-spring-boot-starter</artifactId>
  97. <version>2.2.0</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-devtools</artifactId>
  102. <scope>runtime</scope>
  103. <optional>true</optional>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-configuration-processor</artifactId>
  108. <optional>true</optional>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.projectlombok</groupId>
  112. <artifactId>lombok</artifactId>
  113. <optional>true</optional>
  114. <scope>compile</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>net.sf.json-lib</groupId>
  118. <artifactId>json-lib</artifactId>
  119. <version>2.4</version>
  120. <classifier>jdk15</classifier>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-starter-tomcat</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-starter-websocket</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>io.netty</groupId>
  132. <artifactId>netty-all</artifactId>
  133. <version>4.1.52.Final</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>io.netty</groupId>
  137. <artifactId>netty-transport</artifactId>
  138. <version>4.1.52.Final</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.commons</groupId>
  142. <artifactId>commons-lang3</artifactId>
  143. <version>3.11</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.rometools</groupId>
  147. <artifactId>rome</artifactId>
  148. <version>1.10.0</version>
  149. </dependency>
  150. <!-- FOR WEB UI: START -->
  151. <dependency>
  152. <groupId>org.springframework.boot</groupId>
  153. <artifactId>spring-boot-starter-security</artifactId>
  154. </dependency>
  155. <dependency>
  156. <groupId>javax.servlet</groupId>
  157. <artifactId>jstl</artifactId>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.apache.tomcat.embed</groupId>
  161. <artifactId>tomcat-embed-jasper</artifactId>
  162. <scope>provided</scope>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.springframework.boot</groupId>
  166. <artifactId>spring-boot-starter-web-services</artifactId>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.apache.httpcomponents</groupId>
  170. <artifactId>httpclient</artifactId>
  171. <version>4.5.12</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.intellij</groupId>
  175. <artifactId>forms_rt</artifactId>
  176. <version>7.0.3</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.apache.commons</groupId>
  180. <artifactId>commons-lang3</artifactId>
  181. <version>3.12.0</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>commons-io</groupId>
  185. <artifactId>commons-io</artifactId>
  186. <version>2.11.0</version>
  187. </dependency>
  188. </dependencies>
  189. <build>
  190. <plugins>
  191. <!-- <plugin>-->
  192. <!-- <groupId>org.springframework.boot</groupId>-->
  193. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  194. <!-- <configuration>-->
  195. <!-- <executable>true</executable>-->
  196. <!-- </configuration>-->
  197. <!-- </plugin>-->
  198. <plugin>
  199. <groupId>org.springframework.boot</groupId>
  200. <artifactId>spring-boot-maven-plugin</artifactId>
  201. <configuration>
  202. <includeSystemScope>true</includeSystemScope>
  203. </configuration>
  204. </plugin>
  205. </plugins>
  206. </build>
  207. </project>