pom.xml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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. <swagger.version>2.9.2</swagger.version>
  26. <org.projectlombok.version>1.18.20</org.projectlombok.version>
  27. <org.mapstruct.version>1.4.2.Final</org.mapstruct.version>
  28. <jackson.version>2.13.1</jackson.version>
  29. <!-- jar 배포용 -->
  30. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  31. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  32. <maven.compiler.source>1.8</maven.compiler.source>
  33. <maven.compiler.target>1.8</maven.compiler.target>
  34. <!--main 함수가 있는 class 경로-->
  35. <start-class>com.its.vds.VdsCommServerApplication</start-class>
  36. <webapp.lib>C:\java\repository</webapp.lib>
  37. <maven.test.skip>true</maven.test.skip>
  38. </properties>
  39. <dependencies>
  40. <dependency>
  41. <groupId>io.springfox</groupId>
  42. <artifactId>springfox-swagger2</artifactId>
  43. <version>${swagger.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.springfox</groupId>
  47. <artifactId>springfox-swagger-ui</artifactId>
  48. <version>${swagger.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-validation</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-test</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-websocket</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.fusesource.jansi</groupId>
  65. <artifactId>jansi</artifactId>
  66. <version>1.8</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.jcabi</groupId>
  70. <artifactId>jcabi-log</artifactId>
  71. <version>0.22.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.oracle</groupId>
  75. <artifactId>ojdbc7</artifactId>
  76. <version>12.1.0.2</version>
  77. <scope>system</scope>
  78. <systemPath>${webapp.lib}/ojdbc7-12.1.0.2.jar</systemPath>
  79. </dependency>
  80. <dependency>
  81. <groupId>tibero6</groupId>
  82. <artifactId>tibero6-jdbc</artifactId>
  83. <version>1.0.0</version>
  84. <scope>system</scope>
  85. <systemPath>${webapp.lib}/tibero6-jdbc-14.jar</systemPath>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.google.guava</groupId>
  89. <artifactId>guava</artifactId>
  90. <version>31.1-jre</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.bgee.log4jdbc-log4j2</groupId>
  94. <artifactId>log4jdbc-log4j2-jdbc4.1</artifactId>
  95. <version>1.16</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-quartz</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-starter-jdbc</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-web</artifactId>
  108. <exclusions>
  109. <!-- Exclude the Tomcat dependency -->
  110. <exclusion>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-starter-tomcat</artifactId>
  113. </exclusion>
  114. </exclusions>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.mybatis.spring.boot</groupId>
  118. <artifactId>mybatis-spring-boot-starter</artifactId>
  119. <version>2.2.2</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-devtools</artifactId>
  124. <scope>runtime</scope>
  125. <optional>true</optional>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-configuration-processor</artifactId>
  130. <optional>true</optional>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.projectlombok</groupId>
  134. <artifactId>lombok</artifactId>
  135. <optional>true</optional>
  136. <scope>compile</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>net.sf.json-lib</groupId>
  140. <artifactId>json-lib</artifactId>
  141. <version>2.4</version>
  142. <classifier>jdk15</classifier>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-starter-tomcat</artifactId>
  147. </dependency>
  148. <dependency>
  149. <groupId>io.netty</groupId>
  150. <artifactId>netty-all</artifactId>
  151. <version>4.1.52.Final</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>io.netty</groupId>
  155. <artifactId>netty-transport</artifactId>
  156. <version>4.1.52.Final</version>
  157. </dependency>
  158. <!-- <dependency>-->
  159. <!-- <groupId>org.apache.commons</groupId>-->
  160. <!-- <artifactId>commons-lang3</artifactId>-->
  161. <!-- <version>3.11</version>-->
  162. <!-- </dependency>-->
  163. <dependency>
  164. <groupId>com.rometools</groupId>
  165. <artifactId>rome</artifactId>
  166. <version>1.18.0</version>
  167. </dependency>
  168. <!-- FOR WEB UI: START -->
  169. <dependency>
  170. <groupId>org.springframework.boot</groupId>
  171. <artifactId>spring-boot-starter-security</artifactId>
  172. </dependency>
  173. <dependency>
  174. <groupId>javax.servlet</groupId>
  175. <artifactId>jstl</artifactId>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.apache.tomcat.embed</groupId>
  179. <artifactId>tomcat-embed-jasper</artifactId>
  180. <scope>provided</scope>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.springframework.boot</groupId>
  184. <artifactId>spring-boot-starter-web-services</artifactId>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.apache.httpcomponents</groupId>
  188. <artifactId>httpclient</artifactId>
  189. </dependency>
  190. <dependency>
  191. <groupId>com.intellij</groupId>
  192. <artifactId>forms_rt</artifactId>
  193. <version>7.0.3</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.apache.commons</groupId>
  197. <artifactId>commons-lang3</artifactId>
  198. <version>3.12.0</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>commons-io</groupId>
  202. <artifactId>commons-io</artifactId>
  203. <version>2.11.0</version>
  204. </dependency>
  205. </dependencies>
  206. <build>
  207. <plugins>
  208. <plugin>
  209. <groupId>org.springframework.boot</groupId>
  210. <artifactId>spring-boot-maven-plugin</artifactId>
  211. <configuration>
  212. <includeSystemScope>true</includeSystemScope>
  213. </configuration>
  214. </plugin>
  215. </plugins>
  216. </build>
  217. </project>