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.
231 lines
7.6 KiB
XML
231 lines
7.6 KiB
XML
<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>
|
|
|
|
<groupId>cokr.xit.base</groupId>
|
|
<artifactId>xit-menu</artifactId>
|
|
<version>23.04.01-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>xit-menu</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>
|
|
|
|
<spring.maven.artifact.version>5.3.20</spring.maven.artifact.version>
|
|
<org.egovframe.rte.version>4.1.0</org.egovframe.rte.version>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>mvn2s</id>
|
|
<url>https://repo1.maven.org/maven2/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>egovframe</id>
|
|
<url>http://maven.egovframe.kr:8080/maven/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>egovframe2</id>
|
|
<url>https://www.egovframe.go.kr/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>
|
|
<repository>
|
|
<id>maven-snapshots</id>
|
|
<url>http://xit.xit-nexus.com:8081/repository/maven-snapshots/</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
</repository>
|
|
-->
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cokr.xit.base</groupId>
|
|
<artifactId>xit-foundation</artifactId>
|
|
<version>23.04.01-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<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>
|
|
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.tomcat.maven</groupId>
|
|
<artifactId>tomcat7-maven-plugin</artifactId>
|
|
<version>2.2</version>
|
|
<configuration>
|
|
<port>80</port>
|
|
<path>/</path>
|
|
<systemProperties>
|
|
<JAVA_OPTS>-Xms256m -Xmx768m -XX:MaxPermSize=256m</JAVA_OPTS>
|
|
</systemProperties>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>hibernate3-maven-plugin</artifactId>
|
|
<version>2.1</version>
|
|
<configuration>
|
|
<components>
|
|
<component>
|
|
<name>hbm2ddl</name>
|
|
<implementation>annotationconfiguration</implementation>
|
|
</component>
|
|
</components>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.hsqldb</groupId>
|
|
<artifactId>hsqldb</artifactId>
|
|
<version>2.3.2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
<!-- EMMA -->
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>emma-maven-plugin</artifactId>
|
|
<version>1.0-alpha-3</version>
|
|
</plugin>
|
|
<!-- PMD manven plugin -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
<version>3.1</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.3.0</version>
|
|
<configuration>
|
|
<includes>
|
|
<include>**/*.class</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- EMMA -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>3.0.0</version>
|
|
<configuration>
|
|
<skipTests>true</skipTests>
|
|
<reportFormat>xml</reportFormat>
|
|
<excludes>
|
|
<exclude>**/Abstract*.java</exclude>
|
|
<exclude>**/*Suite.java</exclude>
|
|
</excludes>
|
|
<includes>
|
|
<include>**/*Test.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>emma-maven-plugin</artifactId>
|
|
<inherited>true</inherited>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.2</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<!-- Javadoc -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.9.1</version>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<!-- Nexus deploy -->
|
|
<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>
|
|
<!-- Nexus deploy -->
|
|
</project> |