123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>sgc</groupId>
- <artifactId>sgc-portal</artifactId>
- <version>1.0.0</version>
- <packaging>war</packaging>
- <name><![CDATA[SGC Portal]]></name>
- <description>SGC Portal</description>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.1.9.RELEASE</version>
- <relativePath /> <!-- lookup parent from repository -->
- </parent>
- <properties>
- <java.version>1.8</java.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <start-class>sgc.portal.Application</start-class>
- <websequare.version>5.0_2.3288B.20180921.160532_1.5</websequare.version>
- </properties>
- <repositories>
- <repository>
- <id>sgc-repo</id>
- <url>http://211.38.140.247:8081/repository/maven-public/</url>
- </repository>
- </repositories>
- <dependencies>
-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-devtools</artifactId>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-webflux</artifactId>
- </dependency>
- <!--
- JEUS 배포를 위한 의존성 관리
- -> log4j-api.jar를 배포하면 제우스 운영에는 크게 지장은 없지만
- 제우스 부팅 시 다음과 같은 에러 로그가 발생됨.
- java.lang.IllegalArgumentException
- at jeus.thirdparty.asm504.ClassReader.<init>(ClassReader.java:170)
- log4j-api 에서 [META-INF/versions/9/org/apache/logging/log4j/util/StackLocator.class] version 패키지 삭제하고
- 기존 log4j-api를 제외하고 log4j-api의 내용을 일부 변경한 log4j-api-wpark를 의존하도록 설정cd
- -->
- <dependency>
- <groupId>org.apache.logging.log4j</groupId>
- <artifactId>log4j-api-wpark</artifactId>
- <version>2.11.2</version>
- </dependency>
- <!-- mybatis, mybatis pagination plugin -->
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>2.1.4</version>
- </dependency>
- <dependency>
- <groupId>com.github.miemiedev</groupId>
- <artifactId>mybatis-paginator</artifactId>
- <version>1.2.17</version>
- <exclusions>
- <exclusion>
- <groupId>*</groupId>
- <artifactId>*</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- jdbc -->
- <dependency>
- <groupId>tmaxsoft.tibero</groupId>
- <artifactId>tibero6-jdbc</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>2.11.0</version>
- </dependency>
- <!-- web for jsp -->
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.mail</groupId>
- <artifactId>javax.mail-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sun.mail</groupId>
- <artifactId>javax.mail</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.tomcat.embed</groupId>
- <artifactId>tomcat-embed-jasper</artifactId>
- <scope>provided</scope>
- </dependency>
- <!-- for websquare -->
- <dependency>
- <groupId>websquare</groupId>
- <artifactId>websquare5</artifactId>
- <version>${websequare.version}</version>
- </dependency>
- <dependency>
- <groupId>websquare</groupId>
- <artifactId>websquare5_adapter</artifactId>
- <version>${websequare.version}</version>
- </dependency>
- <dependency>
- <groupId>websquare</groupId>
- <artifactId>websquare5_common</artifactId>
- <version>${websequare.version}</version>
- </dependency>
- <dependency>
- <groupId>websquare</groupId>
- <artifactId>websquare5_hybrid</artifactId>
- <version>${websequare.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>1.4</version>
- <exclusions>
- <exclusion>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- 웹스퀘어 엑셀 다운로드 -->
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>3.10-FINAL</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.xmlbeans</groupId>
- <artifactId>xmlbeans-qname</artifactId>
- <version>2.3.0</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.xmlbeans</groupId>
- <artifactId>xmlbeans-xmlpublic</artifactId>
- <version>2.5.0</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <groupId>stax</groupId>
- <artifactId>stax-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.thoughtworks.xstream</groupId>
- <artifactId>xstream</artifactId>
- <version>1.4.10</version>
- </dependency>
- <dependency>
- <groupId>org.apache</groupId>
- <artifactId>batik-all</artifactId>
- <version>1.7</version>
- </dependency>
- <dependency>
- <groupId>org.apache</groupId>
- <artifactId>fop</artifactId>
- <version>1.7</version>
- </dependency>
- <!-- dreamsecurity... ComFileYtaUploadController 에서 사용되는 라이브러들로 추정됨 -->
- <dependency>
- <groupId>com.epapyrus.api</groupId>
- <artifactId>exportFile</artifactId>
- <version>2.0.2</version>
- </dependency>
- <dependency>
- <groupId>com.lowagie</groupId>
- <artifactId>itext</artifactId>
- <version>2.1.7</version>
- </dependency>
- <dependency>
- <groupId>com.dreamsecurity</groupId>
- <artifactId>jcaos-client-arcCert</artifactId>
- <version>1.4.7.1</version>
- </dependency>
- <dependency>
- <groupId>com.dreamsecurity</groupId>
- <artifactId>libDSTSPDFSig</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.dreamsecurity</groupId>
- <artifactId>libMagicTsaClient</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>org.apache.pdfbox</groupId>
- <artifactId>pdfbox</artifactId>
- <version>1.2.1</version>
- </dependency>
- <dependency>
- <groupId>org.scala-lang</groupId>
- <artifactId>scala-library</artifactId>
- <version>2.11.0</version>
- </dependency>
- <!-- utils -->
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2.2</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.6</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.googlecode.json-simple</groupId>
- <artifactId>json-simple</artifactId>
- <version>1.1.1</version>
- </dependency>
- <dependency>
- <groupId>org.bgee.log4jdbc-log4j2</groupId>
- <artifactId>log4jdbc-log4j2-jdbc4</artifactId>
- <version>1.16</version>
- </dependency>
- <dependency>
- <groupId>org.jetbrains</groupId>
- <artifactId>annotations</artifactId>
- <version>RELEASE</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>javase</artifactId>
- <version>3.4.0</version>
- </dependency>
- <dependency>
- <groupId>com.cronutils</groupId>
- <artifactId>cron-utils-spring</artifactId>
- <version>1.0.1</version>
- </dependency>
- <!-- STFP util -->
- <!-- https://mvnrepository.com/artifact/com.jcraft/jsch -->
- <dependency>
- <groupId>com.jcraft</groupId>
- <artifactId>jsch</artifactId>
- <version>0.1.55</version>
- </dependency>
- <!-- PWA workBox -->
- <dependency>
- <groupId>org.webjars.npm</groupId>
- <artifactId>workbox-sw</artifactId>
- <version>4.2.0</version>
- </dependency>
- <!-- webjars -->
- <dependency>
- <groupId>org.webjars</groupId>
- <artifactId>jquery-ui</artifactId>
- <version>1.12.0</version>
- </dependency>
- <!-- KCP -->
- <dependency>
- <groupId>com.kcp</groupId>
- <artifactId>jPpcliE</artifactId>
- <version>1.0</version>
- </dependency>
- <!-- org.apache.http.impl.client.HttpClients -->
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- </dependency>
- <!-- UbiServer -->
- <dependency>
- <groupId>com.ubireport.server.UbiServer4</groupId>
- <artifactId>UbiServer</artifactId>
- <version>4.0</version>
- </dependency>
- <!-- Google firebase Messaging -->
- <dependency>
- <groupId>com.google.firebase</groupId>
- <artifactId>firebase-admin</artifactId>
- <version>8.1.0</version>
- <exclusions>
- <exclusion>
- <groupId>io.grpc</groupId>
- <artifactId>grpc-core</artifactId>
- </exclusion>
- <exclusion>
- <groupId>io.grpc</groupId>
- <artifactId>grpc-alts</artifactId>
- </exclusion>
- <exclusion>
- <groupId>io.grpc</groupId>
- <artifactId>grpc-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>io.grpc</groupId>
- <artifactId>grpc-netty-shaded</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
-
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <configuration>
- <resourceEncoding>UTF-8</resourceEncoding>
- <failOnMissingWebXml>false</failOnMissingWebXml>
- <!-- <mainClass>${start-class}</mainClass> -->
- <!-- <layout>WAR</layout> -->
- <packagingExcludes>WEB-INF/lib/log4j-api-2.11.2.jar</packagingExcludes>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>clojure-interop</groupId>
- <artifactId>javax.imageio</artifactId>
- <version>1.0.5</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|