363 lines
12 KiB
XML
363 lines
12 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 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>egovframework.com.mtdata</groupId>
|
|
<artifactId>isd_demo</artifactId>
|
|
<packaging>war</packaging>
|
|
<version>1.0.0</version>
|
|
<name>isd_demo</name>
|
|
<url>http://www.egovframe.go.kr</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<properties>
|
|
<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>https://maven.egovframe.go.kr/maven/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<!-- 표준프레임워크 실행환경 -->
|
|
<dependency>
|
|
<groupId>org.egovframe.rte</groupId>
|
|
<artifactId>org.egovframe.rte.ptl.mvc</artifactId>
|
|
<version>${org.egovframe.rte.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>commons-logging</artifactId>
|
|
<groupId>commons-logging</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.egovframe.rte</groupId>
|
|
<artifactId>org.egovframe.rte.psl.dataaccess</artifactId>
|
|
<version>${org.egovframe.rte.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.egovframe.rte</groupId>
|
|
<artifactId>org.egovframe.rte.fdl.idgnr</artifactId>
|
|
<version>${org.egovframe.rte.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.egovframe.rte</groupId>
|
|
<artifactId>org.egovframe.rte.fdl.property</artifactId>
|
|
<version>${org.egovframe.rte.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<scope>provided</scope>
|
|
<version>3.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet.jsp.jstl</groupId>
|
|
<artifactId>jstl-api</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>taglibs</groupId>
|
|
<artifactId>standard</artifactId>
|
|
<version>1.1.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>antlr</artifactId>
|
|
<version>3.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hsqldb</groupId>
|
|
<artifactId>hsqldb</artifactId>
|
|
<version>2.5.2</version>
|
|
</dependency>
|
|
|
|
<!-- 가연 log4j 추가-->
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.17</version>
|
|
</dependency>
|
|
|
|
<!-- lombok 추가-->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.30</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- yaml파일 -->
|
|
<dependency>
|
|
<groupId>org.yaml</groupId>
|
|
<artifactId>snakeyaml</artifactId>
|
|
<version>2.2</version>
|
|
</dependency>
|
|
|
|
<!-- mysql이나 oracle DB 사용시 아래 설정 추가 -->
|
|
<dependency>
|
|
<groupId>com.googlecode.log4jdbc</groupId>
|
|
<artifactId>log4jdbc</artifactId>
|
|
<version>1.2</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<groupId>org.slf4j</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-dbcp2</artifactId>
|
|
<version>2.9.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>42.7.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>8.0.29</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
<artifactId>json-simple</artifactId>
|
|
<version>1.1.1</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- <dependency>
|
|
<groupId>ojdbc</groupId>
|
|
<artifactId>ojdbc</artifactId>
|
|
<version>14</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/ojdbc-14.jar</systemPath>
|
|
</dependency>
|
|
-->
|
|
<!-- <dependency>
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
<artifactId>json-simple</artifactId>
|
|
<version>1.1</version>
|
|
</dependency>
|
|
-->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>2.16.0</version>
|
|
</dependency>
|
|
|
|
<!-- <dependency>
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
<version>1.9.13</version>
|
|
</dependency>
|
|
-->
|
|
</dependencies>
|
|
|
|
<build>
|
|
<defaultGoal>install</defaultGoal>
|
|
<directory>${basedir}/target</directory>
|
|
<finalName>${artifactId}-${version}</finalName>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.cargo</groupId>
|
|
<artifactId>cargo-maven3-plugin</artifactId>
|
|
<version>1.9.13</version>
|
|
<configuration>
|
|
<container>
|
|
<containerId>tomcat8x</containerId>
|
|
<type>embedded</type>
|
|
</container>
|
|
<configuration>
|
|
<properties>
|
|
<cargo.servlet.port>8080</cargo.servlet.port>
|
|
</properties>
|
|
</configuration>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.10.1</version>
|
|
<configuration>
|
|
<source>11</source>
|
|
<target>11</target>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>3.3.2</version>
|
|
<configuration>
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>hibernate3-maven-plugin</artifactId>
|
|
<version>3.0</version>
|
|
<configuration>
|
|
<components>
|
|
<component>
|
|
<name>hbm2ddl</name>
|
|
<implementation>annotationconfiguration</implementation>
|
|
</component>
|
|
</components>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.hsqldb</groupId>
|
|
<artifactId>hsqldb</artifactId>
|
|
<version>2.5.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.17.0</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<!-- EMMA -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.22.2</version>
|
|
<configuration>
|
|
<skipTests>true</skipTests>
|
|
<forkMode>once</forkMode>
|
|
<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>
|
|
<!-- JavaDoc -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.4.0</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<reporting>
|
|
<outputDirectory>${basedir}/target/site</outputDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
<version>3.3.0</version>
|
|
<reportSets>
|
|
<reportSet>
|
|
<id>sunlink</id>
|
|
<reports>
|
|
<report>javadoc</report>
|
|
</reports>
|
|
<inherited>true</inherited>
|
|
<configuration>
|
|
<links>
|
|
<link>https://docs.oracle.com/javase/8/docs/api/</link>
|
|
</links>
|
|
</configuration>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
<!-- JUnit Test Results & EMMA Coverage Reporting -->
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>emma-maven-plugin</artifactId>
|
|
<inherited>true</inherited>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>surefire-report-maven-plugin</artifactId>
|
|
<inherited>true</inherited>
|
|
<reportSets>
|
|
<reportSet>
|
|
<reports>
|
|
<report>report-only</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
<!-- Generating JavaDoc Report -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<configuration>
|
|
<minmemory>128m</minmemory>
|
|
<maxmemory>512m</maxmemory>
|
|
<encoding>${encoding}</encoding>
|
|
<docencoding>${encoding}</docencoding>
|
|
<charset>${encoding}</charset>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- Generating Java Source in HTML -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
<configuration>
|
|
<inputEncoding>${encoding}</inputEncoding>
|
|
<outputEncoding>${encoding}</outputEncoding>
|
|
<linkJavadoc>true</linkJavadoc>
|
|
<javadocDir>apidocs</javadocDir>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
</project>
|