440 lines
12 KiB
XML
440 lines
12 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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>kcg</groupId>
|
|
<artifactId>imis</artifactId>
|
|
<packaging>war</packaging>
|
|
<version>1.0.0</version>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<properties>
|
|
<spring.maven.artifact.version>4.0.9.RELEASE</spring.maven.artifact.version>
|
|
<egovframework.rte.version>3.5.0</egovframework.rte.version>
|
|
<org.apache.tiles.version>3.0.5</org.apache.tiles.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
</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>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<!-- egovframework.rte -->
|
|
<dependency>
|
|
<groupId>egovframework.rte</groupId>
|
|
<artifactId>egovframework.rte.psl.dataaccess</artifactId>
|
|
<version>${egovframework.rte.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>egovframework.rte</groupId>
|
|
<artifactId>egovframework.rte.ptl.mvc</artifactId>
|
|
<version>${egovframework.rte.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>egovframework.rte</groupId>
|
|
<artifactId>egovframework.rte.fdl.property</artifactId>
|
|
<version>${egovframework.rte.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>egovframework.rte</groupId>
|
|
<artifactId>egovframework.rte.fdl.excel</artifactId>
|
|
<version>${egovframework.rte.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>egovframework.rte</groupId>
|
|
<artifactId>egovframework.rte.fdl.crypto</artifactId>
|
|
<version>${egovframework.rte.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>egovframework.rte</groupId>
|
|
<artifactId>egovframework.rte.fdl.string</artifactId>
|
|
<version>${egovframework.rte.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<groupId>org.slf4j</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>egovframework.rte</groupId>
|
|
<artifactId>egovframework.rte.fdl.security</artifactId>
|
|
<version>${egovframework.rte.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<groupId>org.slf4j</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- 기능사용하는 곳 없음. 최종 결과물이 나올 때 까지 해당기능을 사용하지 않으면 삭제 <dependency> <groupId>egovframework.rte</groupId>
|
|
<artifactId>egovframework.rte.fdl.idgnr</artifactId> <version>${egovframework.rte.version}</version>
|
|
</dependency> -->
|
|
|
|
<dependency>
|
|
<groupId>commons-dbcp</groupId>
|
|
<artifactId>commons-dbcp</artifactId>
|
|
<version>1.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>aspectjrt</artifactId>
|
|
<version>1.8.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>aspectjweaver</artifactId>
|
|
<version>1.8.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>aspectjtools</artifactId>
|
|
<version>1.8.0</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>javax.validation</groupId>
|
|
<artifactId>validation-api</artifactId>
|
|
<version>1.0.0.GA</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.sf</groupId>
|
|
<artifactId>log4jdbc3</artifactId>
|
|
<version>1.1</version>
|
|
</dependency>
|
|
|
|
<!-- validation -->
|
|
<dependency>
|
|
<groupId>org.springmodules</groupId>
|
|
<artifactId>spring-modules-validation</artifactId>
|
|
<version>0.9</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-validator</groupId>
|
|
<artifactId>commons-validator</artifactId>
|
|
<version>1.3.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>antlr</artifactId>
|
|
<version>3.0.1</version>
|
|
</dependency>
|
|
<!-- /validation -->
|
|
|
|
|
|
<!-- database driver -->
|
|
<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>
|
|
<!-- Spring-jdbc -->
|
|
<!-- /database driver -->
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-jdbc</artifactId>
|
|
<version>${spring.maven.artifact.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>5.0.2</version>
|
|
<!-- <version>8.0.11</version> -->
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>jstl</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>taglibs</groupId>
|
|
<artifactId>standard</artifactId>
|
|
<version>1.1.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.5</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
|
|
<!-- tiles -->
|
|
<dependency>
|
|
<groupId>org.apache.tiles</groupId>
|
|
<artifactId>tiles-extras</artifactId>
|
|
<version>${org.apache.tiles.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tiles</groupId>
|
|
<artifactId>tiles-jsp</artifactId>
|
|
<version>${org.apache.tiles.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tiles</groupId>
|
|
<artifactId>tiles-servlet</artifactId>
|
|
<version>${org.apache.tiles.version}</version>
|
|
</dependency>
|
|
<!-- /tiles -->
|
|
|
|
<!-- json -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>2.8.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.sf.json-lib</groupId>
|
|
<artifactId>json-lib</artifactId>
|
|
<version>2.4</version>
|
|
<classifier>jdk15</classifier>
|
|
</dependency>
|
|
<!-- /json -->
|
|
|
|
<!-- ckeditor -->
|
|
<dependency>
|
|
<groupId>com.ckeditor</groupId>
|
|
<artifactId>ckeditor-java-core</artifactId>
|
|
<version>3.5.3</version>
|
|
</dependency>
|
|
|
|
<!-- file upload -->
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>1.3.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.11</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
<version>${spring.maven.artifact.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- Lucy xss servlet filter -->
|
|
<dependency>
|
|
<groupId>com.navercorp.lucy</groupId>
|
|
<artifactId>lucy-xss-servlet</artifactId>
|
|
<version>2.0.0</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
<build>
|
|
<defaultGoal>install</defaultGoal>
|
|
<directory>${basedir}/target</directory>
|
|
<finalName>imis</finalName>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</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>hsqldb</groupId>
|
|
<artifactId>hsqldb</artifactId>
|
|
<version>1.8.0.7</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
<!-- EMMA -->
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>emma-maven-plugin</artifactId>
|
|
<version>1.0-alpha-1</version>
|
|
</plugin>
|
|
<!-- PMD manven plugin -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
<version>2.4</version>
|
|
</plugin>
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
|
<plugin>
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
<version>1.0.0</version>
|
|
<configuration>
|
|
<lifecycleMappingMetadata>
|
|
<pluginExecutions>
|
|
<pluginExecution>
|
|
<pluginExecutionFilter>
|
|
<groupId>
|
|
org.apache.maven.plugins
|
|
</groupId>
|
|
<artifactId>
|
|
maven-compiler-plugin
|
|
</artifactId>
|
|
<versionRange>
|
|
[2.5.1,)
|
|
</versionRange>
|
|
<goals>
|
|
<goal>testCompile</goal>
|
|
<goal>compile</goal>
|
|
</goals>
|
|
</pluginExecutionFilter>
|
|
<action>
|
|
<ignore/>
|
|
</action>
|
|
</pluginExecution>
|
|
</pluginExecutions>
|
|
</lifecycleMappingMetadata>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<!-- EMMA -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<skipTests>false</skipTests>
|
|
<testFailureIgnore>true</testFailureIgnore>
|
|
<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>
|
|
|
|
<!-- CheckStyle 리포트 생성 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>2.17</version>
|
|
<configuration>
|
|
<configLocation>${basedir}\src\main\resources\config\KGI_Checks.xml</configLocation>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>7</source>
|
|
<target>7</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<reporting>
|
|
<outputDirectory>${basedir}/target/site</outputDirectory>
|
|
<plugins>
|
|
<!-- FindBugs 리포트 생성 -->
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
<version>3.0.4</version>
|
|
</plugin>
|
|
<!-- javadoc 생성 -->
|
|
<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>
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- Generating Java Source in HTML -->
|
|
<plugin>
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
<configuration>
|
|
<inputEncoding>${encoding}</inputEncoding>
|
|
<outputEncoding>${encoding}</outputEncoding>
|
|
<linkJavadoc>true</linkJavadoc>
|
|
<javadocDir>apidocs</javadocDir>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
</project> |