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.

116 lines
2.9 KiB
XML

<?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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.18</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
4 months ago
<groupId>xit-app</groupId>
<artifactId>fims</artifactId>
4 months ago
<version>1.0.0-SNAPSHOT</version>
<name>fims</name>
7 months ago
<description>과태료통합관리시스템</description>
1 year ago
<packaging>war</packaging>
4 months ago
<properties>
7 months ago
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
</properties>
<repositories>
<repository>
<id>maven-public</id>
<url>https://nas.xit.co.kr:8888/repository/maven-public/</url>
</repository>
</repositories>
4 months ago
7 months ago
<pluginRepositories>
<pluginRepository>
<id>maven-public</id>
7 months ago
<url>https://nas.xit.co.kr:8888/repository/maven-public/</url>
7 months ago
<snapshots>
<enabled>true</enabled>
</snapshots>
7 months ago
<releases>
<enabled>false</enabled>
</releases>
7 months ago
</pluginRepository>
4 months ago
</pluginRepositories>
6 months ago
<dependencyManagement>
<dependencies>
4 months ago
4 months ago
<dependency>
<groupId>cokr.xit.app</groupId>
<artifactId>fims-java</artifactId>
<exclusions>
<exclusion>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
</exclusion>
</exclusions>
</dependency>
4 months ago
6 months ago
<dependency>
<groupId>org.egovframe.rte</groupId>
<artifactId>org.egovframe.rte.fdl.crypto</artifactId>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
4 months ago
<dependency>
<groupId>3rd-party</groupId>
<artifactId>echelon</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>3rd-party</groupId>
<artifactId>dguard</artifactId>
<scope>compile</scope>
</dependency>
4 months ago
6 months ago
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>cokr.xit.app</groupId>
4 months ago
<artifactId>fims-java</artifactId>
2 months ago
<version>1.0.0-SNAPSHOT</version>
5 months ago
</dependency>
4 months ago
4 months ago
<dependency>
4 months ago
<groupId>cokr.xit.app</groupId>
<artifactId>sgg-setting</artifactId>
<version>${sgg}</version>
</dependency>
4 months ago
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>