pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  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. <groupId>sgc</groupId>
  6. <artifactId>sgc-portal</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>war</packaging>
  9. <name><![CDATA[SGC Portal]]></name>
  10. <description>SGC Portal</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.1.9.RELEASE</version>
  15. <relativePath /> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. <start-class>sgc.portal.Application</start-class>
  22. <websequare.version>5.0_2.3288B.20180921.160532_1.5</websequare.version>
  23. </properties>
  24. <repositories>
  25. <repository>
  26. <id>sgc-repo</id>
  27. <url>http://211.38.140.247:8081/repository/maven-public/</url>
  28. </repository>
  29. </repositories>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-web</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-tomcat</artifactId>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-configuration-processor</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-devtools</artifactId>
  52. <scope>runtime</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.security</groupId>
  56. <artifactId>spring-security-core</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-webflux</artifactId>
  61. </dependency>
  62. <!--
  63. JEUS 배포를 위한 의존성 관리
  64. -> log4j-api.jar를 배포하면 제우스 운영에는 크게 지장은 없지만
  65. 제우스 부팅 시 다음과 같은 에러 로그가 발생됨.
  66. java.lang.IllegalArgumentException
  67. at jeus.thirdparty.asm504.ClassReader.<init>(ClassReader.java:170)
  68. log4j-api 에서 [META-INF/versions/9/org/apache/logging/log4j/util/StackLocator.class] version 패키지 삭제하고
  69. 기존 log4j-api를 제외하고 log4j-api의 내용을 일부 변경한 log4j-api-wpark를 의존하도록 설정cd
  70. -->
  71. <dependency>
  72. <groupId>org.apache.logging.log4j</groupId>
  73. <artifactId>log4j-api-wpark</artifactId>
  74. <version>2.11.2</version>
  75. </dependency>
  76. <!-- mybatis, mybatis pagination plugin -->
  77. <dependency>
  78. <groupId>org.mybatis.spring.boot</groupId>
  79. <artifactId>mybatis-spring-boot-starter</artifactId>
  80. <version>2.1.4</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.github.miemiedev</groupId>
  84. <artifactId>mybatis-paginator</artifactId>
  85. <version>1.2.17</version>
  86. <exclusions>
  87. <exclusion>
  88. <groupId>*</groupId>
  89. <artifactId>*</artifactId>
  90. </exclusion>
  91. </exclusions>
  92. </dependency>
  93. <!-- jdbc -->
  94. <dependency>
  95. <groupId>tmaxsoft.tibero</groupId>
  96. <artifactId>tibero6-jdbc</artifactId>
  97. <version>1.0</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>xerces</groupId>
  101. <artifactId>xercesImpl</artifactId>
  102. <version>2.11.0</version>
  103. </dependency>
  104. <!-- web for jsp -->
  105. <dependency>
  106. <groupId>javax.servlet</groupId>
  107. <artifactId>jstl</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>javax.mail</groupId>
  111. <artifactId>javax.mail-api</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.sun.mail</groupId>
  115. <artifactId>javax.mail</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.apache.tomcat.embed</groupId>
  119. <artifactId>tomcat-embed-jasper</artifactId>
  120. <scope>provided</scope>
  121. </dependency>
  122. <!-- for websquare -->
  123. <dependency>
  124. <groupId>websquare</groupId>
  125. <artifactId>websquare5</artifactId>
  126. <version>${websequare.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>websquare</groupId>
  130. <artifactId>websquare5_adapter</artifactId>
  131. <version>${websequare.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>websquare</groupId>
  135. <artifactId>websquare5_common</artifactId>
  136. <version>${websequare.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>websquare</groupId>
  140. <artifactId>websquare5_hybrid</artifactId>
  141. <version>${websequare.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>commons-fileupload</groupId>
  145. <artifactId>commons-fileupload</artifactId>
  146. <version>1.4</version>
  147. <exclusions>
  148. <exclusion>
  149. <groupId>commons-io</groupId>
  150. <artifactId>commons-io</artifactId>
  151. </exclusion>
  152. </exclusions>
  153. </dependency>
  154. <!-- 웹스퀘어 엑셀 다운로드 -->
  155. <dependency>
  156. <groupId>org.apache.poi</groupId>
  157. <artifactId>poi-ooxml</artifactId>
  158. <version>3.10-FINAL</version>
  159. <scope>runtime</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.xmlbeans</groupId>
  163. <artifactId>xmlbeans-qname</artifactId>
  164. <version>2.3.0</version>
  165. <scope>runtime</scope>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.apache.xmlbeans</groupId>
  169. <artifactId>xmlbeans-xmlpublic</artifactId>
  170. <version>2.5.0</version>
  171. <scope>runtime</scope>
  172. <exclusions>
  173. <exclusion>
  174. <groupId>stax</groupId>
  175. <artifactId>stax-api</artifactId>
  176. </exclusion>
  177. </exclusions>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.thoughtworks.xstream</groupId>
  181. <artifactId>xstream</artifactId>
  182. <version>1.4.10</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.apache</groupId>
  186. <artifactId>batik-all</artifactId>
  187. <version>1.7</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.apache</groupId>
  191. <artifactId>fop</artifactId>
  192. <version>1.7</version>
  193. </dependency>
  194. <!-- dreamsecurity... ComFileYtaUploadController 에서 사용되는 라이브러들로 추정됨 -->
  195. <dependency>
  196. <groupId>com.epapyrus.api</groupId>
  197. <artifactId>exportFile</artifactId>
  198. <version>2.0.2</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>com.lowagie</groupId>
  202. <artifactId>itext</artifactId>
  203. <version>2.1.7</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>com.dreamsecurity</groupId>
  207. <artifactId>jcaos-client-arcCert</artifactId>
  208. <version>1.4.7.1</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>com.dreamsecurity</groupId>
  212. <artifactId>libDSTSPDFSig</artifactId>
  213. <version>1.0</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>com.dreamsecurity</groupId>
  217. <artifactId>libMagicTsaClient</artifactId>
  218. <version>1.0</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.apache.pdfbox</groupId>
  222. <artifactId>pdfbox</artifactId>
  223. <version>1.2.1</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.scala-lang</groupId>
  227. <artifactId>scala-library</artifactId>
  228. <version>2.11.0</version>
  229. </dependency>
  230. <!-- utils -->
  231. <dependency>
  232. <groupId>commons-collections</groupId>
  233. <artifactId>commons-collections</artifactId>
  234. <version>3.2.2</version>
  235. </dependency>
  236. <dependency>
  237. <groupId>commons-io</groupId>
  238. <artifactId>commons-io</artifactId>
  239. <version>2.6</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.apache.commons</groupId>
  243. <artifactId>commons-lang3</artifactId>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.projectlombok</groupId>
  247. <artifactId>lombok</artifactId>
  248. <scope>provided</scope>
  249. </dependency>
  250. <dependency>
  251. <groupId>com.googlecode.json-simple</groupId>
  252. <artifactId>json-simple</artifactId>
  253. <version>1.1.1</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>org.bgee.log4jdbc-log4j2</groupId>
  257. <artifactId>log4jdbc-log4j2-jdbc4</artifactId>
  258. <version>1.16</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>org.jetbrains</groupId>
  262. <artifactId>annotations</artifactId>
  263. <version>RELEASE</version>
  264. <scope>compile</scope>
  265. </dependency>
  266. <dependency>
  267. <groupId>com.google.zxing</groupId>
  268. <artifactId>javase</artifactId>
  269. <version>3.4.0</version>
  270. </dependency>
  271. <dependency>
  272. <groupId>com.cronutils</groupId>
  273. <artifactId>cron-utils-spring</artifactId>
  274. <version>1.0.1</version>
  275. </dependency>
  276. <!-- STFP util -->
  277. <!-- https://mvnrepository.com/artifact/com.jcraft/jsch -->
  278. <dependency>
  279. <groupId>com.jcraft</groupId>
  280. <artifactId>jsch</artifactId>
  281. <version>0.1.55</version>
  282. </dependency>
  283. <!-- PWA workBox -->
  284. <dependency>
  285. <groupId>org.webjars.npm</groupId>
  286. <artifactId>workbox-sw</artifactId>
  287. <version>4.2.0</version>
  288. </dependency>
  289. <!-- webjars -->
  290. <dependency>
  291. <groupId>org.webjars</groupId>
  292. <artifactId>jquery-ui</artifactId>
  293. <version>1.12.0</version>
  294. </dependency>
  295. <!-- KCP -->
  296. <dependency>
  297. <groupId>com.kcp</groupId>
  298. <artifactId>jPpcliE</artifactId>
  299. <version>1.0</version>
  300. </dependency>
  301. <!-- org.apache.http.impl.client.HttpClients -->
  302. <dependency>
  303. <groupId>org.apache.httpcomponents</groupId>
  304. <artifactId>httpclient</artifactId>
  305. </dependency>
  306. <!-- UbiServer -->
  307. <dependency>
  308. <groupId>com.ubireport.server.UbiServer4</groupId>
  309. <artifactId>UbiServer</artifactId>
  310. <version>4.0</version>
  311. </dependency>
  312. <!-- Google firebase Messaging -->
  313. <dependency>
  314. <groupId>com.google.firebase</groupId>
  315. <artifactId>firebase-admin</artifactId>
  316. <version>8.1.0</version>
  317. <exclusions>
  318. <exclusion>
  319. <groupId>io.grpc</groupId>
  320. <artifactId>grpc-core</artifactId>
  321. </exclusion>
  322. <exclusion>
  323. <groupId>io.grpc</groupId>
  324. <artifactId>grpc-alts</artifactId>
  325. </exclusion>
  326. <exclusion>
  327. <groupId>io.grpc</groupId>
  328. <artifactId>grpc-api</artifactId>
  329. </exclusion>
  330. <exclusion>
  331. <groupId>io.grpc</groupId>
  332. <artifactId>grpc-netty-shaded</artifactId>
  333. </exclusion>
  334. </exclusions>
  335. </dependency>
  336. </dependencies>
  337. <build>
  338. <plugins>
  339. <plugin>
  340. <groupId>org.springframework.boot</groupId>
  341. <artifactId>spring-boot-maven-plugin</artifactId>
  342. </plugin>
  343. <plugin>
  344. <groupId>org.apache.maven.plugins</groupId>
  345. <artifactId>maven-war-plugin</artifactId>
  346. <configuration>
  347. <resourceEncoding>UTF-8</resourceEncoding>
  348. <failOnMissingWebXml>false</failOnMissingWebXml>
  349. <!-- <mainClass>${start-class}</mainClass> -->
  350. <!-- <layout>WAR</layout> -->
  351. <packagingExcludes>WEB-INF/lib/log4j-api-2.11.2.jar</packagingExcludes>
  352. </configuration>
  353. </plugin>
  354. </plugins>
  355. </build>
  356. <dependencyManagement>
  357. <dependencies>
  358. <dependency>
  359. <groupId>clojure-interop</groupId>
  360. <artifactId>javax.imageio</artifactId>
  361. <version>1.0.5</version>
  362. </dependency>
  363. </dependencies>
  364. </dependencyManagement>
  365. </project>