pom.xml 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057
  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 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>kr.co.hanalife.hlfl</groupId>
  6. <artifactId>hlfl</artifactId>
  7. <packaging>war</packaging>
  8. <version>1.0.0</version>
  9. <name>${project.artifactId}</name>
  10. <!-- <name>hlfl</name> -->
  11. <!-- <url>http://www.egovframe.go.kr</url> -->
  12. <properties>
  13. <spring.maven.artifact.version>5.3.6</spring.maven.artifact.version>
  14. <org.egovframe.rte.version>4.0.0</org.egovframe.rte.version>
  15. </properties>
  16. <repositories>
  17. <repository>
  18. <id>public</id>
  19. <url>http://21.98.230.127:8081/nexus/content/groups/public/</url>
  20. <releases>
  21. <enabled>true</enabled>
  22. </releases>
  23. <snapshots>
  24. <enabled>true</enabled>
  25. </snapshots>
  26. </repository>
  27. </repositories>
  28. <pluginRepositories>
  29. <pluginRepository>
  30. <id>public</id>
  31. <url>http://21.98.230.127:8081/nexus/content/groups/public/</url>
  32. <releases>
  33. <enabled>true</enabled>
  34. </releases>
  35. <snapshots>
  36. <enabled>true</enabled>
  37. </snapshots>
  38. </pluginRepository>
  39. </pluginRepositories>
  40. <dependencies>
  41. <!-- 표준프레임워크 실행환경 -->
  42. <dependency>
  43. <groupId>org.egovframe.rte</groupId>
  44. <artifactId>org.egovframe.rte.ptl.mvc</artifactId>
  45. <version>${org.egovframe.rte.version}</version>
  46. <exclusions>
  47. <exclusion>
  48. <artifactId>commons-logging</artifactId>
  49. <groupId>commons-logging</groupId>
  50. </exclusion>
  51. <exclusion>
  52. <groupId>commons-beanutils</groupId>
  53. <artifactId>commons-beanutils</artifactId> <!-- 1.9.2 있어서 제외 -->
  54. </exclusion>
  55. </exclusions>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.egovframe.rte</groupId>
  59. <artifactId>org.egovframe.rte.psl.dataaccess</artifactId>
  60. <version>${org.egovframe.rte.version}</version>
  61. <exclusions>
  62. <exclusion>
  63. <groupId>org.apache.logging.log4j</groupId>
  64. <artifactId>log4j-api</artifactId>
  65. </exclusion>
  66. <exclusion>
  67. <groupId>org.apache.logging.log4j</groupId>
  68. <artifactId>log4j-core</artifactId>
  69. </exclusion>
  70. <exclusion>
  71. <groupId>org.slf4j</groupId>
  72. <artifactId>log4j-over-slf4j</artifactId>
  73. </exclusion>
  74. <exclusion>
  75. <groupId>org.apache.logging.log4j</groupId>
  76. <artifactId>log4j-slf4j-impl</artifactId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.egovframe.rte</groupId>
  82. <artifactId>org.egovframe.rte.fdl.idgnr</artifactId>
  83. <version>${org.egovframe.rte.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.egovframe.rte</groupId>
  87. <artifactId>org.egovframe.rte.fdl.property</artifactId>
  88. <version>${org.egovframe.rte.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.egovframe.rte</groupId>
  92. <artifactId>org.egovframe.rte.fdl.excel</artifactId>
  93. <version>${org.egovframe.rte.version}</version>
  94. <exclusions>
  95. <exclusion>
  96. <groupId>commons-codec</groupId>
  97. <artifactId>commons-codec</artifactId>
  98. </exclusion>
  99. <exclusion>
  100. <groupId>commons-beanutils</groupId>
  101. <artifactId>commons-beanutils</artifactId> <!-- 1.9.2 있어서 제외 -->
  102. </exclusion>
  103. </exclusions>
  104. </dependency>
  105. <dependency>
  106. <groupId>javax.servlet</groupId>
  107. <artifactId>javax.servlet-api</artifactId>
  108. <scope>provided</scope>
  109. <version>3.1.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>javax.servlet</groupId>
  113. <artifactId>jstl</artifactId>
  114. <version>1.2</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>taglibs</groupId>
  118. <artifactId>standard</artifactId>
  119. <version>1.1.2</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.antlr</groupId>
  123. <artifactId>antlr</artifactId>
  124. <version>3.5</version>
  125. <exclusions>
  126. <exclusion>
  127. <groupId>antlr</groupId>
  128. <artifactId>antlr</artifactId>
  129. </exclusion>
  130. </exclusions>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.hsqldb</groupId>
  134. <artifactId>hsqldb</artifactId>
  135. <version>2.5.0</version>
  136. </dependency>
  137. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2 -->
  138. <dependency>
  139. <groupId>org.apache.commons</groupId>
  140. <artifactId>commons-dbcp2</artifactId>
  141. <version>2.9.0</version>
  142. </dependency>
  143. <!-- The complete Tiles dependency with all supported technologies is achievable with the following dependency declaration: -->
  144. <dependency>
  145. <groupId>org.apache.tiles</groupId>
  146. <artifactId>tiles-extras</artifactId>
  147. <version>3.0.8</version>
  148. <exclusions>
  149. <exclusion>
  150. <groupId>commons-lang</groupId>
  151. <artifactId>commons-lang</artifactId>
  152. </exclusion>
  153. </exclusions>
  154. </dependency>
  155. <!-- The basic Tiles dependency with only servlet support can be added this way: -->
  156. <dependency>
  157. <groupId>org.apache.tiles</groupId>
  158. <artifactId>tiles-servlet</artifactId>
  159. <version>3.0.8</version>
  160. </dependency>
  161. <!-- If you need a dependency to Tiles JSP support, Declare the dependency this way: -->
  162. <dependency>
  163. <groupId>org.apache.tiles</groupId>
  164. <artifactId>tiles-jsp</artifactId>
  165. <version>3.0.8</version>
  166. </dependency>
  167. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
  168. <dependency>
  169. <groupId>org.apache.commons</groupId>
  170. <artifactId>commons-collections4</artifactId>
  171. <version>4.4</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.apache.poi</groupId>
  175. <artifactId>poi-ooxml</artifactId>
  176. <!-- <version>3.10-FINAL</version> -->
  177. <!-- <version>3.17</version> -->
  178. <version>3.16</version>
  179. <!-- <exclusions>
  180. <exclusion>
  181. <groupId>commons-codec</groupId>
  182. <artifactId>commons-codec</artifactId>
  183. </exclusion>
  184. </exclusions> -->
  185. </dependency>
  186. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  187. <dependency>
  188. <groupId>commons-io</groupId>
  189. <artifactId>commons-io</artifactId>
  190. <version>2.11.0</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>commons-fileupload</groupId>
  194. <artifactId>commons-fileupload</artifactId>
  195. <version>1.4</version>
  196. </dependency>
  197. <!-- logback-->
  198. <!-- <dependency>
  199. <groupId>ch.qos.logback</groupId>
  200. <artifactId>logback-core</artifactId>
  201. <version>1.2.9</version>
  202. </dependency> -->
  203. <dependency>
  204. <groupId>ch.qos.logback</groupId>
  205. <artifactId>logback-classic</artifactId>
  206. <version>1.2.9</version>
  207. </dependency>
  208. <!-- <dependency>
  209. <groupId>org.slf4j</groupId>
  210. <artifactId>jul-to-slf4j</artifactId>
  211. <version>1.7.32</version>
  212. </dependency> -->
  213. <!-- //logback-->
  214. <!-- 조건부 설정을 사용하려면 아래의 디펜던시를 추가해 주어야 한다. -->
  215. <dependency>
  216. <groupId>org.codehaus.janino</groupId>
  217. <artifactId>janino</artifactId>
  218. <version>2.7.7</version>
  219. </dependency>
  220. <!-- https://mvnrepository.com/artifact/com.ibm.icu/icu4j -->
  221. <dependency>
  222. <groupId>com.ibm.icu</groupId>
  223. <artifactId>icu4j</artifactId>
  224. <version>71.1</version>
  225. </dependency>
  226. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
  227. <dependency>
  228. <groupId>com.fasterxml.jackson.core</groupId>
  229. <artifactId>jackson-core</artifactId>
  230. <version>2.13.2</version>
  231. </dependency>
  232. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations -->
  233. <dependency>
  234. <groupId>com.fasterxml.jackson.core</groupId>
  235. <artifactId>jackson-annotations</artifactId>
  236. <version>2.13.2</version>
  237. </dependency>
  238. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  239. <dependency>
  240. <groupId>com.fasterxml.jackson.core</groupId>
  241. <artifactId>jackson-databind</artifactId>
  242. <version>2.13.2.2</version>
  243. </dependency>
  244. <!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
  245. <dependency>
  246. <groupId>com.googlecode.json-simple</groupId>
  247. <artifactId>json-simple</artifactId>
  248. <version>1.1.1</version>
  249. </dependency>
  250. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  251. <dependency>
  252. <groupId>com.google.code.gson</groupId>
  253. <artifactId>gson</artifactId>
  254. <version>2.9.0</version>
  255. </dependency>
  256. <dependency>
  257. <groupId>hnsfa</groupId>
  258. <artifactId>gson</artifactId>
  259. <version>2.4</version> <!-- 한컴위드 -->
  260. </dependency>
  261. <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib -->
  262. <dependency>
  263. <groupId>net.sf.json-lib</groupId>
  264. <artifactId>json-lib</artifactId>
  265. <version>2.4</version>
  266. <classifier>jdk15</classifier>
  267. <exclusions>
  268. <exclusion>
  269. <groupId>commons-beanutils</groupId>
  270. <artifactId>commons-beanutils</artifactId>
  271. </exclusion>
  272. <exclusion>
  273. <groupId>commons-lang</groupId>
  274. <artifactId>commons-lang</artifactId>
  275. </exclusion>
  276. </exclusions>
  277. </dependency>
  278. <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib-ext-spring -->
  279. <dependency>
  280. <groupId>net.sf.json-lib</groupId>
  281. <artifactId>json-lib-ext-spring</artifactId>
  282. <version>1.0.2</version>
  283. </dependency>
  284. <!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
  285. <dependency>
  286. <groupId>org.springframework</groupId>
  287. <artifactId>spring-jdbc</artifactId>
  288. <version>5.3.18</version>
  289. </dependency>
  290. <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
  291. <dependency>
  292. <groupId>org.mybatis</groupId>
  293. <artifactId>mybatis</artifactId>
  294. <version>3.5.3</version>
  295. </dependency>
  296. <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-spring -->
  297. <dependency>
  298. <groupId>org.mybatis</groupId>
  299. <artifactId>mybatis-spring</artifactId>
  300. <version>2.0.3</version>
  301. </dependency>
  302. <!-- https://mvnrepository.com/artifact/com.oracle.ojdbc/ojdbc10 -->
  303. <!-- https://mvnrepository.com/artifact/org.lazyluke/log4jdbc-remix -->
  304. <!-- net.sf.log4jdbc.Log4jdbcProxyDataSource용 -->
  305. <dependency>
  306. <groupId>org.lazyluke</groupId>
  307. <artifactId>log4jdbc-remix</artifactId>
  308. <version>0.2.7</version>
  309. </dependency>
  310. <dependency>
  311. <groupId>org.projectlombok</groupId>
  312. <artifactId>lombok</artifactId>
  313. <version>1.18.10</version>
  314. <scope>provided</scope>
  315. </dependency>
  316. <dependency>
  317. <groupId>jdom</groupId>
  318. <artifactId>jdom</artifactId>
  319. <version>1.0</version>
  320. </dependency>
  321. <!-- SFTP -->
  322. <dependency>
  323. <groupId>com.jcraft</groupId>
  324. <artifactId>jsch</artifactId>
  325. <version>0.1.54</version>
  326. </dependency>
  327. <!-- asis Jar -->
  328. <dependency>
  329. <groupId>hnsfa</groupId>
  330. <artifactId>zipit-srch</artifactId>
  331. <version>1.0</version>
  332. </dependency>
  333. <dependency>
  334. <groupId>hnsfa</groupId>
  335. <!-- <artifactId>kwic-support.2.1.12.jre5</artifactId> -->
  336. <artifactId>kwic-support-T.2.1.17</artifactId> <!-- org.w3c.dom 충돌로 dom2로 수정 -->
  337. <version>1.0</version>
  338. </dependency>
  339. <dependency>
  340. <groupId>hnsfa</groupId>
  341. <artifactId>dom4j</artifactId>
  342. <version>1.6.1</version>
  343. </dependency>
  344. <dependency>
  345. <groupId>hnsfa</groupId>
  346. <artifactId>jaxen</artifactId>
  347. <!-- <version>1.1.3.1</version> --> <!-- org.w3c.dom 충돌로 dom2로 수정 -->
  348. <version>1.1.6</version> <!-- org.w3c.dom 충돌로 dom2로 수정 -->
  349. </dependency>
  350. <!-- 보안 FIDO 인증 -->
  351. <dependency>
  352. <groupId>hnsfa</groupId>
  353. <artifactId>hanati-elec-sign</artifactId>
  354. <version>1.2.1</version>
  355. </dependency>
  356. <!-- 라온시큐어 신용카드 인증(참조라이브러리) -->
  357. <dependency>
  358. <groupId>hnsfa</groupId>
  359. <artifactId>commons-beanutils</artifactId>
  360. <version>1.9.2</version> <!-- 1.8.0 버전 존재 -->
  361. </dependency>
  362. <dependency>
  363. <groupId>hnsfa</groupId>
  364. <artifactId>commons-codec</artifactId>
  365. <version>1.11</version> <!-- 1.10버전존재 -->
  366. </dependency>
  367. <!-- <dependency>
  368. <groupId>hnsfa</groupId>
  369. <artifactId>commons-collections</artifactId>
  370. <version>3.2.1</version>
  371. </dependency> --> <!-- 3.2.2버전존재 -->
  372. <dependency>
  373. <groupId>hnsfa</groupId>
  374. <artifactId>commons-lang</artifactId>
  375. <version>2.6</version>
  376. </dependency> <!-- 2.5버전 존재 -->
  377. <!-- SCI평가정보 휴대폰본인인증 암호화모듈-->
  378. <dependency>
  379. <groupId>hnsfa</groupId>
  380. <artifactId>sciSecu_v2</artifactId>
  381. <version>1.0</version>
  382. </dependency>
  383. <!-- SCI평가정보 휴대폰본인인증 통신모듈-->
  384. <dependency>
  385. <groupId>hnsfa</groupId>
  386. <artifactId>SciClient</artifactId>
  387. <version>1.0</version>
  388. </dependency>
  389. <!-- Jeus WebT -->
  390. <dependency>
  391. <groupId>hnsfa</groupId>
  392. <artifactId>WebT-7.0.2.0-r11661-forJEUS8.0</artifactId>
  393. <version>1.0</version>
  394. </dependency>
  395. <!-- IF 결제 -->
  396. <dependency>
  397. <groupId>hnsfa</groupId>
  398. <artifactId>tn_common</artifactId>
  399. <version>1.0</version>
  400. </dependency>
  401. <!-- xml 변환 -->
  402. <dependency>
  403. <groupId>javax.xml.bind</groupId>
  404. <artifactId>jaxb-api</artifactId>
  405. <version>2.3.0</version>
  406. </dependency>
  407. <!-- 키보드보안 -->
  408. <dependency>
  409. <groupId>hnsfa</groupId>
  410. <artifactId>com.nprotect.pluginfree.v1.5.0.20211117</artifactId>
  411. <version>1.0</version>
  412. </dependency>
  413. <!-- 모바일 백신 AhnLab -->
  414. <dependency>
  415. <groupId>hnsfa</groupId>
  416. <artifactId>v3mobileplusinterface</artifactId>
  417. <version>1.0</version>
  418. </dependency>
  419. <!-- HTML을 PDF로 변환 (캡소프트) -->
  420. <dependency>
  421. <groupId>hnsfa</groupId>
  422. <artifactId>html2pdf-2.0.0-jdk16</artifactId>
  423. <version>1.0</version>
  424. </dependency>
  425. <!-- DRM서버 개발에 필요한 라이브러리 -->
  426. <dependency>
  427. <groupId>hnsfa</groupId>
  428. <artifactId>scsl_4.2.0.0</artifactId>
  429. <version>1.0</version>
  430. </dependency>
  431. <!-- beans을 XML로 변환 -->
  432. <dependency>
  433. <groupId>hnsfa</groupId>
  434. <artifactId>commons-betwixt</artifactId>
  435. <version>0.8</version>
  436. </dependency>
  437. <!-- PDF파일 파싱 (나루아이 주현태 부장님 요청)-->
  438. <dependency>
  439. <groupId>org.apache.pdfbox</groupId>
  440. <artifactId>pdfbox</artifactId>
  441. <version>2.0.13</version>
  442. </dependency>
  443. <dependency>
  444. <groupId>org.apache.pdfbox</groupId>
  445. <artifactId>pdfbox-tools</artifactId>
  446. <version>2.0.13</version>
  447. </dependency>
  448. <dependency>
  449. <groupId>org.apache.pdfbox</groupId>
  450. <artifactId>fontbox</artifactId>
  451. <version>3.0.0-RC1</version>
  452. </dependency>
  453. <!-- 한컴위드 -->
  454. <dependency>
  455. <groupId>hnsfa</groupId>
  456. <artifactId>bcpkix</artifactId>
  457. <version>jdk15to18-166</version>
  458. </dependency>
  459. <dependency>
  460. <groupId>hnsfa</groupId>
  461. <artifactId>bcprov-ext</artifactId>
  462. <version>jdk15to18-166</version>
  463. </dependency>
  464. <dependency>
  465. <groupId>hnsfa</groupId>
  466. <artifactId>bcprov</artifactId>
  467. <version>jdk15to18-166</version>
  468. </dependency>
  469. <dependency>
  470. <groupId>hnsfa</groupId>
  471. <artifactId>xecure7</artifactId>
  472. <version>1.0</version>
  473. </dependency>
  474. <!-- 한컴위드 END -->
  475. <!-- mysql이나 oracle DB 사용시 아래 설정 추가
  476. <dependency>
  477. <groupId>com.googlecode.log4jdbc</groupId>
  478. <artifactId>log4jdbc</artifactId>
  479. <version>1.2</version>
  480. <exclusions>
  481. <exclusion>
  482. <artifactId>slf4j-api</artifactId>
  483. <groupId>org.slf4j</groupId>
  484. </exclusion>
  485. </exclusions>
  486. </dependency>
  487. <dependency>
  488. <groupId>org.apache.commons</groupId>
  489. <artifactId>commons-dbcp2</artifactId>
  490. <version>2.4.0</version>
  491. </dependency>
  492. <dependency>
  493. <groupId>mysql</groupId>
  494. <artifactId>mysql-connector-java</artifactId>
  495. <version>5.1.31</version>
  496. </dependency>
  497. -->
  498. <dependency>
  499. <groupId>ojdbc</groupId>
  500. <artifactId>ojdbc</artifactId>
  501. <version>8</version>
  502. <scope>system</scope>
  503. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/ojdbc8.jar</systemPath>
  504. </dependency>
  505. <dependency>
  506. <groupId>orai18n</groupId>
  507. <artifactId>orai18n</artifactId>
  508. <version>18</version>
  509. <scope>system</scope>
  510. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/orai18n.jar</systemPath>
  511. </dependency>
  512. <!-- TSA 관련 : 시작 -->
  513. <dependency>
  514. <groupId>hnsfa</groupId>
  515. <artifactId>libPdfSigner</artifactId>
  516. <version>1.2</version>
  517. <!-- <scope>system</scope>
  518. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/libPdfSigner.jar</systemPath> -->
  519. </dependency>
  520. <dependency>
  521. <groupId>hnsfa</groupId>
  522. <artifactId>jcaos-arcCert</artifactId>
  523. <version>1.5.1.0</version>
  524. <!-- <scope>system</scope>
  525. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/jcaos-arcCert-1.5.1.0.jar</systemPath> -->
  526. </dependency>
  527. <!-- TSA 관련 : 끝 -->
  528. <!-- 스크래핑 관련 : 시작 -->
  529. <!--
  530. <dependency>
  531. <groupId>hnsfa</groupId>
  532. <artifactId>commons-codec</artifactId>
  533. <version>1.9</version>
  534. <scope>system</scope>
  535. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/commons-codec-1.9.jar</systemPath>
  536. </dependency>
  537. -->
  538. <dependency>
  539. <groupId>hnsfa</groupId>
  540. <artifactId>commons-httpclient</artifactId>
  541. <version>3.1</version>
  542. <!-- <scope>system</scope>
  543. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/commons-httpclient-3.1.jar</systemPath> -->
  544. </dependency>
  545. <!-- <dependency>
  546. <groupId>hnsfa</groupId>
  547. <artifactId>commons-logging</artifactId>
  548. <version>1.2</version>
  549. <scope>system</scope>
  550. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/commons-logging-1.2.jar</systemPath>
  551. </dependency> -->
  552. <dependency>
  553. <groupId>hnsfa</groupId>
  554. <artifactId>CubeOneAPI</artifactId>
  555. <version>1.0</version>
  556. <!-- <scope>system</scope>
  557. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/CubeOneAPI.jar</systemPath> -->
  558. </dependency>
  559. <dependency>
  560. <groupId>hnsfa</groupId>
  561. <artifactId>dom4j</artifactId>
  562. <version>1.6.1</version>
  563. <!-- <scope>system</scope>
  564. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/dom4j-1.6.1.jar</systemPath> -->
  565. </dependency>
  566. <dependency>
  567. <groupId>hnsfa</groupId>
  568. <artifactId>httpclient</artifactId>
  569. <version>4.1.1</version>
  570. <!-- <scope>system</scope>
  571. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/httpclient-4.1.1.jar</systemPath> -->
  572. </dependency>
  573. <dependency>
  574. <groupId>hnsfa</groupId>
  575. <artifactId>httpclient-cache</artifactId>
  576. <version>4.1.1</version>
  577. <!-- <scope>system</scope>
  578. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/httpclient-cache-4.1.1.jar</systemPath> -->
  579. </dependency>
  580. <dependency>
  581. <groupId>hnsfa</groupId>
  582. <artifactId>httpcore</artifactId>
  583. <version>4.1</version>
  584. <!-- <scope>system</scope>
  585. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/httpcore-4.1.jar</systemPath> -->
  586. </dependency>
  587. <dependency>
  588. <groupId>hnsfa</groupId>
  589. <artifactId>httpmime</artifactId>
  590. <version>4.1.1</version>
  591. <!-- <scope>system</scope>
  592. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/httpmime-4.1.1.jar</systemPath> -->
  593. </dependency>
  594. <dependency>
  595. <groupId>hnsfa</groupId>
  596. <artifactId>jackson-core-asl</artifactId>
  597. <version>1.8.5</version>
  598. <!-- <scope>system</scope>
  599. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/jackson-core-asl-1.8.5.jar</systemPath> -->
  600. </dependency>
  601. <dependency>
  602. <groupId>hnsfa</groupId>
  603. <artifactId>jackson-mapper-asl</artifactId>
  604. <version>1.8.5</version>
  605. <!-- <scope>system</scope>
  606. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/jackson-mapper-asl-1.8.5.jar</systemPath> -->
  607. </dependency>
  608. <!-- 스크래핑 관련 : 끝 -->
  609. <!-- DRM keymanager 관련 : 시작 -->
  610. <!-- <dependency> 위에 정의되어있음
  611. <groupId>hnsfa</groupId>
  612. <artifactId>scsl</artifactId>
  613. <version>4.2.0.0</version>
  614. <scope>system</scope>
  615. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/scsl_4.2.0.0.jar</systemPath>
  616. </dependency> -->
  617. <!-- DRM keymanager 관련 : 끝 -->
  618. <!-- Magic S Sign 관련 : 시작 -->
  619. <!-- 2022.08.03 사용하지 않기로 했는데, 일단 주석해 놓고, 오픈할 땐 삭제 -->
  620. <!--
  621. <dependency>
  622. <groupId>hnsfa</groupId>
  623. <artifactId>jcaos</artifactId>
  624. <version>1.4.11.4</version>
  625. <scope>system</scope>
  626. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/jcaos-1.4.11.4.jar</systemPath>
  627. </dependency>
  628. -->
  629. <dependency>
  630. <groupId>hnsfa</groupId>
  631. <artifactId>ssign</artifactId>
  632. <version>1.0.1</version>
  633. <!-- <scope>system</scope> -->
  634. <!-- <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/ssign-1.0.1.jar</systemPath> -->
  635. </dependency>
  636. <!-- Magic S Sign 관련 : 끝 -->
  637. <!-- FIDO 관련 : 시작 -->
  638. <dependency>
  639. <groupId>hnsfa</groupId>
  640. <artifactId>pkix</artifactId>
  641. <version>1.51.0.0</version>
  642. <!-- <scope>system</scope>
  643. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/pkix-1.51.0.0.jar</systemPath> -->
  644. </dependency>
  645. <dependency>
  646. <groupId>hnsfa</groupId>
  647. <artifactId>prov</artifactId>
  648. <version>1.51.0.0</version>
  649. <!-- <scope>system</scope>
  650. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/prov-1.51.0.0.jar</systemPath> -->
  651. </dependency>
  652. <dependency>
  653. <groupId>hnsfa</groupId>
  654. <artifactId>core</artifactId>
  655. <version>1.51.0.0</version>
  656. <!-- <scope>system</scope>
  657. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/core-1.51.0.0.jar</systemPath> -->
  658. </dependency>
  659. <!-- FIDO 관련 : 끝 -->
  660. <!-- naver lucy xss : 시작 -->
  661. <dependency>
  662. <groupId>hnsfa</groupId>
  663. <artifactId>lucy-xss</artifactId>
  664. <version>1.6.3</version>
  665. </dependency>
  666. <dependency>
  667. <groupId>hnsfa</groupId>
  668. <artifactId>lucy-xss-servlet</artifactId>
  669. <version>2.0.0</version>
  670. </dependency>
  671. <!-- naver lucy xss : 끝 -->
  672. <dependency>
  673. <groupId>hnsfa</groupId>
  674. <artifactId>anylink</artifactId>
  675. <version>1.0</version>
  676. </dependency>
  677. <!-- 서버 TO 서버 통신 -->
  678. <dependency>
  679. <groupId>org.apache.httpcomponents</groupId>
  680. <artifactId>httpclient</artifactId>
  681. <version>4.5.8</version>
  682. </dependency>
  683. <!-- xFrame5 Dependency -->
  684. <dependency>
  685. <groupId>softbase.xframe5</groupId>
  686. <artifactId>xdataset5</artifactId>
  687. <version>1.0.3</version>
  688. </dependency>
  689. <dependency>
  690. <groupId>json-simple</groupId>
  691. <artifactId>json-simple</artifactId>
  692. <version>1.1.1</version>
  693. </dependency>
  694. <dependency>
  695. <groupId>softbase.xframe5</groupId>
  696. <artifactId>xdataset5-spring</artifactId>
  697. <version>1.0.4</version>
  698. </dependency>
  699. <dependency>
  700. <groupId>softbase.xframe5</groupId>
  701. <artifactId>xdataset5-util</artifactId>
  702. <version>1.0.4</version>
  703. </dependency>
  704. <dependency>
  705. <groupId>softbase.xframe5</groupId>
  706. <artifactId>xexcel5_316</artifactId>
  707. <version>1.0.7</version>
  708. </dependency>
  709. <dependency>
  710. <groupId>org.apache.poi</groupId>
  711. <artifactId>poi</artifactId>
  712. <version>3.16</version>
  713. </dependency>
  714. <dependency>
  715. <groupId>org.apache.poi</groupId>
  716. <artifactId>poi-ooxml</artifactId>
  717. <version>3.16</version>
  718. </dependency>
  719. <dependency>
  720. <groupId>org.apache.poi</groupId>
  721. <artifactId>poi-scratchpad</artifactId>
  722. <version>3.16</version>
  723. </dependency>
  724. <dependency>
  725. <groupId>commons-io</groupId>
  726. <artifactId>commons-io</artifactId>
  727. <version>1.4</version>
  728. </dependency>
  729. <dependency>
  730. <groupId>commons-fileupload</groupId>
  731. <artifactId>commons-fileupload</artifactId>
  732. <version>1.4</version>
  733. </dependency>
  734. <!--
  735. <dependency>
  736. <groupId>org.apache.commons</groupId>
  737. <artifactId>commons-dbcp2</artifactId>
  738. <version>2.0</version>
  739. </dependency>
  740. -->
  741. <!-- /xFrame5 Dependency -->
  742. <dependency>
  743. <groupId>log4j</groupId>
  744. <artifactId>log4j</artifactId>
  745. <version>1.2.14</version>
  746. </dependency>
  747. <dependency>
  748. <groupId>DbUtils</groupId>
  749. <artifactId>commons-dbUtils</artifactId>
  750. <version>1.1</version>
  751. <scope>system</scope>
  752. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/commons-dbutils-1.1.jar</systemPath>
  753. </dependency>
  754. <dependency>
  755. <groupId>configuration</groupId>
  756. <artifactId>commons-configuration</artifactId>
  757. <version>1.9</version>
  758. <scope>system</scope>
  759. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/commons-configuration-1.9.jar</systemPath>
  760. </dependency>
  761. <dependency>
  762. <groupId>UbiServer</groupId>
  763. <artifactId>UbiServer</artifactId>
  764. <version>1</version>
  765. <scope>system</scope>
  766. <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/UbiServer.jar</systemPath>
  767. </dependency>
  768. </dependencies>
  769. <profiles>
  770. <!-- LOCAL -->
  771. <profile>
  772. <id>local</id>
  773. <properties>
  774. <env>local</env>
  775. </properties>
  776. <activation>
  777. <activeByDefault>true</activeByDefault>
  778. </activation>
  779. </profile>
  780. <!-- DEV -->
  781. <profile>
  782. <id>dev</id>
  783. <properties>
  784. <env>dev</env>
  785. </properties>
  786. </profile>
  787. <!-- UAT -->
  788. <profile>
  789. <id>uat</id>
  790. <properties>
  791. <env>uat</env>
  792. </properties>
  793. </profile>
  794. <!-- Production -->
  795. <profile>
  796. <id>prod</id>
  797. <properties>
  798. <env>prod</env>
  799. </properties>
  800. </profile>
  801. </profiles>
  802. <build>
  803. <resources>
  804. <!-- 공통 -->
  805. <resource>
  806. <directory>src/main/resources</directory>
  807. </resource>
  808. <!-- uat/dev/prod -->
  809. <resource>
  810. <directory>src/main/resources-${env}</directory>
  811. </resource>
  812. </resources>
  813. <defaultGoal>install</defaultGoal>
  814. <directory>${basedir}/target</directory>
  815. <finalName>${artifactId}-${version}</finalName>
  816. <pluginManagement>
  817. <plugins>
  818. <plugin>
  819. <groupId>org.apache.tomcat.maven</groupId>
  820. <artifactId>tomcat7-maven-plugin</artifactId>
  821. <version>2.2</version>
  822. <configuration>
  823. <port>80</port>
  824. <path>/</path>
  825. <systemProperties>
  826. <JAVA_OPTS>-Xms256m -Xmx768m -XX:MaxPermSize=256m</JAVA_OPTS>
  827. </systemProperties>
  828. </configuration>
  829. </plugin>
  830. <plugin>
  831. <groupId>org.apache.maven.plugins</groupId>
  832. <artifactId>maven-compiler-plugin</artifactId>
  833. <configuration>
  834. <source>11</source>
  835. <target>11</target>
  836. <encoding>UTF-8</encoding>
  837. <annotationProcessors>
  838. <annotationProcessor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</annotationProcessor>
  839. </annotationProcessors>
  840. </configuration>
  841. </plugin>
  842. <plugin>
  843. <groupId>org.codehaus.mojo</groupId>
  844. <artifactId>hibernate3-maven-plugin</artifactId>
  845. <version>3.0</version>
  846. <configuration>
  847. <components>
  848. <component>
  849. <name>hbm2ddl</name>
  850. <implementation>annotationconfiguration</implementation>
  851. </component>
  852. </components>
  853. </configuration>
  854. <dependencies>
  855. <dependency>
  856. <groupId>org.hsqldb</groupId>
  857. <artifactId>hsqldb</artifactId>
  858. <version>2.5.0</version>
  859. </dependency>
  860. </dependencies>
  861. </plugin>
  862. <!-- EMMA -->
  863. <plugin>
  864. <groupId>org.codehaus.mojo</groupId>
  865. <artifactId>emma-maven-plugin</artifactId>
  866. <version>1.0-alpha-3</version>
  867. </plugin>
  868. <!-- PMD manven plugin -->
  869. <plugin>
  870. <groupId>org.apache.maven.plugins</groupId>
  871. <artifactId>maven-pmd-plugin</artifactId>
  872. <version>3.12.0</version>
  873. </plugin>
  874. </plugins>
  875. </pluginManagement>
  876. <plugins>
  877. <!-- EMMA -->
  878. <plugin>
  879. <groupId>org.apache.maven.plugins</groupId>
  880. <artifactId>maven-surefire-plugin</artifactId>
  881. <configuration>
  882. <skipTests>true</skipTests>
  883. <forkMode>once</forkMode>
  884. <reportFormat>xml</reportFormat>
  885. <excludes>
  886. <exclude>**/Abstract*.java</exclude>
  887. <exclude>**/*Suite.java</exclude>
  888. </excludes>
  889. <includes>
  890. <include>**/*Test.java</include>
  891. </includes>
  892. </configuration>
  893. </plugin>
  894. <plugin>
  895. <groupId>org.codehaus.mojo</groupId>
  896. <artifactId>emma-maven-plugin</artifactId>
  897. <inherited>true</inherited>
  898. </plugin>
  899. <!-- JavaDoc -->
  900. <plugin>
  901. <groupId>org.apache.maven.plugins</groupId>
  902. <artifactId>maven-javadoc-plugin</artifactId>
  903. <version>3.1.1</version>
  904. </plugin>
  905. </plugins>
  906. </build>
  907. <reporting>
  908. <outputDirectory>${basedir}/target/site</outputDirectory>
  909. <plugins>
  910. <plugin>
  911. <groupId>org.apache.maven.plugins</groupId>
  912. <artifactId>maven-project-info-reports-plugin</artifactId>
  913. <version>3.0.0</version>
  914. <reportSets>
  915. <reportSet>
  916. <id>sunlink</id>
  917. <reports>
  918. <report>javadoc</report>
  919. </reports>
  920. <inherited>true</inherited>
  921. <configuration>
  922. <links>
  923. <link>http://docs.oracle.com/javase/6/docs/api/</link>
  924. </links>
  925. </configuration>
  926. </reportSet>
  927. </reportSets>
  928. </plugin>
  929. <!-- JUnit Test Results & EMMA Coverage Reporting -->
  930. <plugin>
  931. <groupId>org.codehaus.mojo</groupId>
  932. <artifactId>emma-maven-plugin</artifactId>
  933. <inherited>true</inherited>
  934. </plugin>
  935. <plugin>
  936. <groupId>org.codehaus.mojo</groupId>
  937. <artifactId>surefire-report-maven-plugin</artifactId>
  938. <inherited>true</inherited>
  939. <reportSets>
  940. <reportSet>
  941. <reports>
  942. <report>report-only</report>
  943. </reports>
  944. </reportSet>
  945. </reportSets>
  946. </plugin>
  947. <!-- Generating JavaDoc Report -->
  948. <plugin>
  949. <groupId>org.apache.maven.plugins</groupId>
  950. <artifactId>maven-javadoc-plugin</artifactId>
  951. <configuration>
  952. <minmemory>128m</minmemory>
  953. <maxmemory>512m</maxmemory>
  954. <encoding>${encoding}</encoding>
  955. <docencoding>${encoding}</docencoding>
  956. <charset>${encoding}</charset>
  957. </configuration>
  958. </plugin>
  959. <!-- Generating Java Source in HTML -->
  960. <plugin>
  961. <groupId>org.apache.maven.plugins</groupId>
  962. <artifactId>maven-jxr-plugin</artifactId>
  963. <configuration>
  964. <inputEncoding>${encoding}</inputEncoding>
  965. <outputEncoding>${encoding}</outputEncoding>
  966. <linkJavadoc>true</linkJavadoc>
  967. <javadocDir>apidocs</javadocDir>
  968. </configuration>
  969. </plugin>
  970. </plugins>
  971. </reporting>
  972. </project>