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.

93 lines
2.9 KiB
XML

1 year ago
<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/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>
1 year ago
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>cokr.xit.interfaces.lntris</groupId>
<artifactId>xit-lntris-interface</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>xit-lntris-interface</name>
<url>http://maven.apache.org</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>
<dependencies>
<dependency>
<groupId>cokr.xit.boot</groupId>
<artifactId>xit-foundation-starter</artifactId>
<version>23.04.01-SNAPSHOT</version>
</dependency>
<dependency> <!-- 세외수입 개별 연계 -->
<groupId>cokr.xit.interfaces.lntris</groupId>
<artifactId>xit-lntris-basic</artifactId>
<version>23.04.01-SNAPSHOT</version>
</dependency>
<dependency> <!-- 세외수입 특화 연계 -->
<groupId>cokr.xit.interfaces.lntris</groupId>
<artifactId>xit-lntris-special</artifactId>
<version>23.04.01-SNAPSHOT</version>
</dependency>
1 year ago
</dependencies>
1 year ago
<build>
<finalName>xit-lntris-interface</finalName>
11 months ago
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<excludes>
<exclude>intf-conf/*.*</exclude>
<exclude>spring/*.*</exclude>
11 months ago
<exclude>ssl/*.*</exclude>
<exclude>application.yml</exclude>
11 months ago
</excludes>
</resource>
</resources>
1 year ago
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>com.github.therapi</groupId>
<artifactId>therapi-runtime-javadoc-scribe</artifactId>
<version>0.15.0</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<outputDirectory>deploy</outputDirectory>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>