|
|
@ -18,8 +18,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<properties>
|
|
|
|
<java.version>17</java.version>
|
|
|
|
<java.version>17</java.version>
|
|
|
|
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
|
|
|
<repository>
|
|
|
|
|
|
|
|
<id>mvn2</id>
|
|
|
|
|
|
|
|
<url>http://repo1.maven.org/maven2/</url>
|
|
|
|
|
|
|
|
<releases>
|
|
|
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
|
|
|
</releases>
|
|
|
|
|
|
|
|
<snapshots>
|
|
|
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
|
|
|
</snapshots>
|
|
|
|
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
<repository>
|
|
|
|
|
|
|
|
<id>egovframe</id>
|
|
|
|
|
|
|
|
<url>http://www.egovframe.go.kr/maven/</url>
|
|
|
|
|
|
|
|
<releases>
|
|
|
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
|
|
|
</releases>
|
|
|
|
|
|
|
|
<snapshots>
|
|
|
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
|
|
|
</snapshots>
|
|
|
|
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
<repository>
|
|
|
|
|
|
|
|
<id>egovframe2</id>
|
|
|
|
|
|
|
|
<url>http://maven.egovframe.kr:8080/maven/</url>
|
|
|
|
|
|
|
|
<releases>
|
|
|
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
|
|
|
</releases>
|
|
|
|
|
|
|
|
<snapshots>
|
|
|
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
|
|
|
</snapshots>
|
|
|
|
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
<repository>
|
|
|
|
|
|
|
|
<id>maven-public</id>
|
|
|
|
|
|
|
|
<url>http://xit.xit-nexus.com:8081/repository/maven-public/</url>
|
|
|
|
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
|
|
|
<repository>
|
|
|
|
|
|
|
|
<id>maven-releases</id>
|
|
|
|
|
|
|
|
<url>http://xit.xit-nexus.com:8081/repository/maven-releases/</url>
|
|
|
|
|
|
|
|
<snapshots>
|
|
|
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
|
|
|
</snapshots>
|
|
|
|
|
|
|
|
<releases>
|
|
|
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
|
|
|
</releases>
|
|
|
|
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cokr.xit.boot</groupId>
|
|
|
|
<groupId>cokr.xit.boot</groupId>
|
|
|
@ -36,6 +88,19 @@
|
|
|
|
</dependencies>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<build>
|
|
|
|
|
|
|
|
<defaultGoal>install</defaultGoal>
|
|
|
|
|
|
|
|
<directory>${basedir}/target</directory>
|
|
|
|
|
|
|
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<resources>
|
|
|
|
|
|
|
|
<resource><directory>${basedir}/src/main/resources</directory></resource>
|
|
|
|
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<testResources>
|
|
|
|
|
|
|
|
<testResource><directory>${basedir}/src/test/resources</directory></testResource>
|
|
|
|
|
|
|
|
<testResource><directory>${basedir}/src/main/resources</directory></testResource>
|
|
|
|
|
|
|
|
</testResources>
|
|
|
|
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
@ -49,7 +114,31 @@
|
|
|
|
</excludes>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
|
|
<id>attach-sources</id>
|
|
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
|
|
|
<id>maven-snapshot</id>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|
|
|
|
</project>
|