pom.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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>vds-comm-server</artifactId>
  13. <version>0.0.1</version>
  14. <name>vds-comm-server</name>
  15. <description>VDS Communication Server</description>
  16. <packaging>jar</packaging>
  17. <repositories>
  18. <repository>
  19. <id>oracle</id>
  20. <url>https://maven.jahia.org/maven2</url>
  21. </repository>
  22. </repositories>
  23. <properties>
  24. <java.version>1.8</java.version>
  25. <!-- jar 배포용 -->
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  28. <maven.compiler.source>1.8</maven.compiler.source>
  29. <maven.compiler.target>1.8</maven.compiler.target>
  30. <!--main 함수가 있는 class 경로-->
  31. <start-class>com.its.vds.VdsCommServerApplication</start-class>
  32. <webapp.lib>C:\DEV\ITS\01.WINDOWS\22.07.PyeongTaek\JAVA\repository</webapp.lib>
  33. <maven.test.skip>true</maven.test.skip>
  34. </properties>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-test</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.jcabi</groupId>
  43. <artifactId>jcabi-log</artifactId>
  44. <version>0.22.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.oracle</groupId>
  48. <artifactId>ojdbc7</artifactId>
  49. <version>12.1.0.2</version>
  50. <scope>system</scope>
  51. <systemPath>${webapp.lib}/ojdbc7-12.1.0.2.jar</systemPath>
  52. </dependency>
  53. <dependency>
  54. <groupId>tibero6</groupId>
  55. <artifactId>tibero6-jdbc</artifactId>
  56. <version>1.0.0</version>
  57. <scope>system</scope>
  58. <systemPath>${webapp.lib}/tibero6-jdbc-14.jar</systemPath>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.google.guava</groupId>
  62. <artifactId>guava</artifactId>
  63. <version>31.1-jre</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.bgee.log4jdbc-log4j2</groupId>
  67. <artifactId>log4jdbc-log4j2-jdbc4.1</artifactId>
  68. <version>1.16</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-quartz</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-jdbc</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-web</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.mybatis.spring.boot</groupId>
  84. <artifactId>mybatis-spring-boot-starter</artifactId>
  85. <version>2.2.2</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-devtools</artifactId>
  90. <scope>runtime</scope>
  91. <optional>true</optional>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-configuration-processor</artifactId>
  96. <optional>true</optional>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.projectlombok</groupId>
  100. <artifactId>lombok</artifactId>
  101. <optional>true</optional>
  102. <scope>compile</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>net.sf.json-lib</groupId>
  106. <artifactId>json-lib</artifactId>
  107. <version>2.4</version>
  108. <classifier>jdk15</classifier>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-starter-tomcat</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>io.netty</groupId>
  116. <artifactId>netty-all</artifactId>
  117. <version>4.1.52.Final</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>io.netty</groupId>
  121. <artifactId>netty-transport</artifactId>
  122. <version>4.1.52.Final</version>
  123. </dependency>
  124. <!-- <dependency>-->
  125. <!-- <groupId>org.apache.commons</groupId>-->
  126. <!-- <artifactId>commons-lang3</artifactId>-->
  127. <!-- <version>3.11</version>-->
  128. <!-- </dependency>-->
  129. <dependency>
  130. <groupId>com.rometools</groupId>
  131. <artifactId>rome</artifactId>
  132. <version>1.18.0</version>
  133. </dependency>
  134. <!-- FOR WEB UI: START -->
  135. <dependency>
  136. <groupId>org.springframework.boot</groupId>
  137. <artifactId>spring-boot-starter-security</artifactId>
  138. </dependency>
  139. <dependency>
  140. <groupId>javax.servlet</groupId>
  141. <artifactId>jstl</artifactId>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.tomcat.embed</groupId>
  145. <artifactId>tomcat-embed-jasper</artifactId>
  146. <scope>provided</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot-starter-web-services</artifactId>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.httpcomponents</groupId>
  154. <artifactId>httpclient</artifactId>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.intellij</groupId>
  158. <artifactId>forms_rt</artifactId>
  159. <version>7.0.3</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.commons</groupId>
  163. <artifactId>commons-lang3</artifactId>
  164. <version>3.12.0</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>commons-io</groupId>
  168. <artifactId>commons-io</artifactId>
  169. <version>2.11.0</version>
  170. </dependency>
  171. </dependencies>
  172. <build>
  173. <plugins>
  174. <!-- <plugin>-->
  175. <!-- <groupId>org.springframework.boot</groupId>-->
  176. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  177. <!-- <configuration>-->
  178. <!-- <executable>true</executable>-->
  179. <!-- </configuration>-->
  180. <!-- </plugin>-->
  181. <plugin>
  182. <groupId>org.springframework.boot</groupId>
  183. <artifactId>spring-boot-maven-plugin</artifactId>
  184. <configuration>
  185. <includeSystemScope>true</includeSystemScope>
  186. </configuration>
  187. </plugin>
  188. </plugins>
  189. </build>
  190. </project>