You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

126 lines
3.2 KiB
XML

2 years ago
<?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>
2 years ago
<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>
2 years ago
</properties>
<repositories>
<repository>
<id>maven-public</id>
<url>http://xit.xit-nexus.com:8081/repository/maven-public/</url>
</repository>
2 years ago
<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>
2 years ago
<dependency>
<groupId>cokr.xit.base</groupId>
<artifactId>xit-base</artifactId>
2 years ago
<version>23.04.01-SNAPSHOT</version>
</dependency>
<!--
2 years ago
<dependency>
<groupId>cokr.xit.base</groupId>
<artifactId>xit-security</artifactId>
<version>23.04.01-SNAPSHOT</version>
2 years ago
</dependency>
<dependency>
<groupId>cokr.xit.base</groupId>
<artifactId>xit-foundation</artifactId>
<version>23.04.01-SNAPSHOT</version>
2 years ago
</dependency>
<dependency>
<groupId>cokr.xit.base</groupId>
<artifactId>xit-user</artifactId>
<version>23.04.01-SNAPSHOT</version>
2 years ago
</dependency>
<dependency>
<groupId>cokr.xit.base</groupId>
<artifactId>xit-menu</artifactId>
<version>23.04.01-SNAPSHOT</version>
2 years ago
</dependency>
-->
2 years ago
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>2.7.2</version>
2 years ago
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.9.2</version>
<scope>provided</scope>
2 years ago
</dependency>
<!-- id제네레이터 -->
2 years ago
<dependency>
<groupId>org.egovframe.rte</groupId>
<artifactId>org.egovframe.rte.fdl.cmmn</artifactId>
<version>4.1.0</version>
2 years ago
</dependency>
2 years ago
<dependency>
<groupId>org.egovframe.rte</groupId>
<artifactId>org.egovframe.rte.fdl.idgnr</artifactId>
<version>4.1.0</version>
2 years ago
</dependency>
2 years ago
</dependencies>
<build>
1 year ago
<finalName>secured-base</finalName>
<plugins>
2 years ago
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
2 years ago
</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 -->
2 years ago
</project>