Eclipse_UDP-Send/pom.xml

157 lines
4.9 KiB
XML
Raw Permalink Normal View History

2023-09-15 08:58:39 +00:00
<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>kr.gmtc</groupId>
<artifactId>EyeGW-ASDE-Send</artifactId>
<version>0.0.0.1</version>
<packaging>jar</packaging>
<name>EyeGW-ASDE-Send</name>
<description>SACP ASDE 수신 S/W</description>
<!-- ====================================================================== -->
<!-- PARENT =============================================================== -->
<!-- ====================================================================== -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.6.RELEASE</version>
</parent>
<!-- ====================================================================== -->
<!-- REPOSITORIES ========================================================= -->
<!-- ====================================================================== -->
<repositories>
<repository>
<id>xwiki</id>
<name>XWiki Externals Repository</name>
<url>https://maven.xwiki.org/externals</url>
</repository>
<repository>
<id>local-repository</id>
<name>local jars</name>
<url>file://${project.basedir}/lib</url>
</repository>
</repositories>
<!-- ====================================================================== -->
<!-- PROPERTIES =========================================================== -->
<!-- ====================================================================== -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<maven.test.skip>true</maven.test.skip>
<!-- Security issue resolved : Log4Shell(CVE-2021-44228), DoS(CVE-2021-45105) -->
<log4j2.version>2.17.2</log4j2.version>
</properties>
<!-- ====================================================================== -->
<!-- DEPENDENCIES ========================================================= -->
<!-- ====================================================================== -->
<dependencies>
<!-- Spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- Log -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j2.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j2.version}</version>
</dependency>
<!-- DB -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.3.2</version>
</dependency>
<!-- oracle -->
<dependency>
<groupId>com.oracle.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<version>12.2.0.1</version>
</dependency>
<!-- mysql -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<!-- mariadb -->
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
</dependency>
<!-- postgresql -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<!-- Web -->
<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>
<!-- IPWorks -->
<dependency>
<groupId>ipworks</groupId>
<artifactId>ipworks-local</artifactId>
<version>1.0.0</version>
</dependency>
<!-- GMTC -->
<!-- <dependency>-->
<!-- <groupId>kr.gmtc</groupId>-->
<!-- <artifactId>EyeGW-Core</artifactId>-->
<!-- <version>1.0.0</version>-->
<!-- </dependency>-->
<!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.33</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>