pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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>wthr-comm-server</artifactId>
  13. <version>0.0.1</version>
  14. <name>wthr-comm-server</name>
  15. <description>Weather(Open API) Communication Server</description>
  16. <packaging>war</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. <!-- 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.wthr.WthrCommServerApplication</start-class>
  32. <webapp.lib>C:\DEV\ITS\01.WINDOWS\22.01.YONGIN\JAVA\repository</webapp.lib>
  33. <maven.test.skip>true</maven.test.skip>
  34. </properties>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.fusesource.jansi</groupId>
  38. <artifactId>jansi</artifactId>
  39. <version>1.8</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-test</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.jcabi</groupId>
  48. <artifactId>jcabi-log</artifactId>
  49. <version>0.20.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.oracle</groupId>
  53. <artifactId>ojdbc7</artifactId>
  54. <version>12.1.0.2</version>
  55. <scope>system</scope>
  56. <systemPath>${webapp.lib}/ojdbc7-12.1.0.2.jar</systemPath>
  57. </dependency>
  58. <dependency>
  59. <groupId>tibero6</groupId>
  60. <artifactId>tibero6-jdbc</artifactId>
  61. <version>1.0.0</version>
  62. <scope>system</scope>
  63. <systemPath>${webapp.lib}/tibero6-jdbc-14.jar</systemPath>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.google.guava</groupId>
  67. <artifactId>guava</artifactId>
  68. <version>30.1-jre</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.bgee.log4jdbc-log4j2</groupId>
  72. <artifactId>log4jdbc-log4j2-jdbc4.1</artifactId>
  73. <version>1.16</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-quartz</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-jdbc</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-web</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.mybatis.spring.boot</groupId>
  89. <artifactId>mybatis-spring-boot-starter</artifactId>
  90. <version>2.2.0</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-devtools</artifactId>
  95. <scope>runtime</scope>
  96. <optional>true</optional>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-configuration-processor</artifactId>
  101. <optional>true</optional>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.projectlombok</groupId>
  105. <artifactId>lombok</artifactId>
  106. <optional>true</optional>
  107. </dependency>
  108. <dependency>
  109. <groupId>net.sf.json-lib</groupId>
  110. <artifactId>json-lib</artifactId>
  111. <version>2.4</version>
  112. <classifier>jdk15</classifier>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-tomcat</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>io.netty</groupId>
  120. <artifactId>netty-all</artifactId>
  121. <version>4.1.52.Final</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>io.netty</groupId>
  125. <artifactId>netty-transport</artifactId>
  126. <version>4.1.52.Final</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.apache.commons</groupId>
  130. <artifactId>commons-lang3</artifactId>
  131. <version>3.11</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.rometools</groupId>
  135. <artifactId>rome</artifactId>
  136. <version>1.10.0</version>
  137. </dependency>
  138. <!-- FOR WEB UI: START -->
  139. <dependency>
  140. <groupId>org.springframework.boot</groupId>
  141. <artifactId>spring-boot-starter-security</artifactId>
  142. </dependency>
  143. <dependency>
  144. <groupId>javax.servlet</groupId>
  145. <artifactId>jstl</artifactId>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.tomcat.embed</groupId>
  149. <artifactId>tomcat-embed-jasper</artifactId>
  150. <scope>provided</scope>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-starter-web-services</artifactId>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.apache.httpcomponents</groupId>
  158. <artifactId>httpclient</artifactId>
  159. <version>4.5.12</version>
  160. </dependency>
  161. <!-- FOR WEB UI: END -->
  162. </dependencies>
  163. <build>
  164. <plugins>
  165. <plugin>
  166. <groupId>org.springframework.boot</groupId>
  167. <artifactId>spring-boot-maven-plugin</artifactId>
  168. <configuration>
  169. <includeSystemScope>true</includeSystemScope>
  170. </configuration>
  171. </plugin>
  172. </plugins>
  173. </build>
  174. </project>