|
|
|
<?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 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>xit</groupId>
|
|
|
|
<artifactId>fims</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<name>fims</name>
|
|
|
|
<url>http://www.xit.co.kr</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<java-version>17</java-version>
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
|
|
|
|
|
|
|
|
</properties>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>maven-public</id>
|
|
|
|
<url>http://xit.xit-nexus.com:8081/repository/maven-public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>egovframe</id>
|
|
|
|
<url>https://maven.egovframe.go.kr/maven/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cokr.xit.base</groupId>
|
|
|
|
<artifactId>xit-base</artifactId>
|
|
|
|
<version>23.04.01-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<!--
|
|
|
|
<dependency>
|
|
|
|
<groupId>cokr.xit.base</groupId>
|
|
|
|
<artifactId>xit-security</artifactId>
|
|
|
|
<version>23.04.01-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cokr.xit.base</groupId>
|
|
|
|
<artifactId>xit-foundation</artifactId>
|
|
|
|
<version>23.04.01-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cokr.xit.base</groupId>
|
|
|
|
<artifactId>xit-user</artifactId>
|
|
|
|
<version>23.04.01-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cokr.xit.base</groupId>
|
|
|
|
<artifactId>xit-menu</artifactId>
|
|
|
|
<version>23.04.01-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
|
|
<artifactId>mariadb-java-client</artifactId>
|
|
|
|
<version>2.7.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>5.9.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- id제네레이터 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.egovframe.rte</groupId>
|
|
|
|
<artifactId>org.egovframe.rte.fdl.cmmn</artifactId>
|
|
|
|
<version>4.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.egovframe.rte</groupId>
|
|
|
|
<artifactId>org.egovframe.rte.fdl.idgnr</artifactId>
|
|
|
|
<version>4.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>fims</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>3.3.2</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Nexus deploy -->
|
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>maven-snapshot</id>
|
|
|
|
<!-- <url>https://xit.xit-nexus.com:8443/repository/maven-snapshots/</url>-->
|
|
|
|
<url>http://xit.xit-nexus.com:8081/repository/maven-snapshots/</url>
|
|
|
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
|
|
|
<repository>
|
|
|
|
<id>maven-release</id>
|
|
|
|
<url>http://xit.xit-nexus.com:8081/repository/maven-releases/</url>
|
|
|
|
<!-- <url>https://xit.xit-nexus.com:8443/repository/maven-releases/</url>-->
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
</distributionManagement>
|
|
|
|
<!-- Nexus deploy -->
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|
|
|
|
|