You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
324 lines
8.7 KiB
324 lines
8.7 KiB
|
|
<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"> |
|
<parent> |
|
<artifactId>moumi5-neis</artifactId> |
|
<groupId>kr.co.kihyun</groupId> |
|
<version>5.3.7-SNAPSHOT</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
<artifactId>moumi5-war-neis</artifactId> |
|
<packaging>war</packaging> |
|
<name>moumi5-war-neis</name> |
|
<issueManagement> |
|
</issueManagement> |
|
<ciManagement> |
|
</ciManagement> |
|
<organization> |
|
</organization> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.axis2</groupId> |
|
<artifactId>axis2.eclipse.codegen.plugin</artifactId> |
|
<version>1.5.1</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.axis2</groupId> |
|
<artifactId>axis2.eclipse.service.plugin</artifactId> |
|
<version>1.5.1</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>selenium-maven-plugin</artifactId> |
|
<version>1.0.1</version> |
|
<executions> |
|
<execution> |
|
<id>start</id> |
|
<phase>pre-integration-test</phase> |
|
<goals> |
|
<goal>start-server</goal> |
|
</goals> |
|
<configuration> |
|
<background>true</background> |
|
<logOutput>true</logOutput> |
|
<multiWindow>true</multiWindow> |
|
</configuration> |
|
</execution> |
|
<execution> |
|
<id>stop</id> |
|
<phase>post-integration-test</phase> |
|
<goals> |
|
<goal>stop-server</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.mortbay.jetty</groupId> |
|
<artifactId>maven-jetty-plugin</artifactId> |
|
<version>${jetty.version}</version> |
|
<configuration> |
|
<connectors> |
|
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> |
|
<port>${jetty.port}</port> |
|
<maxIdleTime>60000</maxIdleTime> |
|
</connector> |
|
</connectors> |
|
<scanIntervalSeconds>10</scanIntervalSeconds> |
|
<webAppConfig> |
|
<contextPath>/</contextPath> |
|
</webAppConfig> |
|
<stopPort>9966</stopPort> |
|
<stopKey>foo</stopKey> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>start-jetty</id> |
|
<phase>pre-integration-test</phase> |
|
<goals> |
|
<goal>run</goal> |
|
</goals> |
|
<configuration> |
|
<scanIntervalSeconds>0</scanIntervalSeconds> |
|
<daemon>true</daemon> |
|
</configuration> |
|
</execution> |
|
<execution> |
|
<id>stop-jetty</id> |
|
<phase>post-integration-test</phase> |
|
<goals> |
|
<goal>stop</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
<dependencies> |
|
<!-- DEPENDENCIES FOR INTEGRATION TESTING --> |
|
<dependency> |
|
<groupId>org.seleniumhq.selenium.client-drivers</groupId> |
|
<artifactId>selenium-java-client-driver</artifactId> |
|
<version>1.0.2</version> |
|
<type>jar</type> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mortbay.jetty</groupId> |
|
<artifactId>jetty</artifactId> |
|
<version>${jetty.version}</version> |
|
<type>jar</type> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mortbay.jetty</groupId> |
|
<artifactId>jetty-util</artifactId> |
|
<version>${jetty.version}</version> |
|
<type>jar</type> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mortbay.jetty</groupId> |
|
<artifactId>jetty-management</artifactId> |
|
<version>${jetty.version}</version> |
|
<type>jar</type> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mortbay.jetty</groupId> |
|
<artifactId>jetty-plus</artifactId> |
|
<version>${jetty.version}</version> |
|
<type>jar</type> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<!-- DEPENDENCIES FOR SERVLET --> |
|
<dependency> |
|
<groupId>javax.servlet.jsp</groupId> |
|
<artifactId>jsp-api</artifactId> |
|
<version>2.1</version> |
|
<type>jar</type> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>servlet-api</artifactId> |
|
<version>2.5</version> |
|
<type>jar</type> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>jstl</artifactId> |
|
<version>1.1.2</version> |
|
<type>jar</type> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>taglibs</groupId> |
|
<artifactId>standard</artifactId> |
|
<version>1.1.2</version> |
|
<type>jar</type> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-el</groupId> |
|
<artifactId>commons-el</artifactId> |
|
<version>1.0</version> |
|
<type>jar</type> |
|
<scope>compile</scope> |
|
</dependency> |
|
|
|
<!-- OTHER DEPENDENCIES --> |
|
<dependency> |
|
<groupId>commons-fileupload</groupId> |
|
<artifactId>commons-fileupload</artifactId> |
|
<version>1.2</version> |
|
<type>jar</type> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>ch.qos.logback</groupId> |
|
<artifactId>logback-classic</artifactId> |
|
<version>0.9.22</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.mail</groupId> |
|
<artifactId>mail</artifactId> |
|
<version>1.4</version> |
|
<type>jar</type> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.ant</groupId> |
|
<artifactId>ant</artifactId> |
|
<version>1.8.1</version> |
|
<type>jar</type> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.jasypt</groupId> |
|
<artifactId>jasypt</artifactId> |
|
<version>1.6</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.htmlparser.jericho</groupId> |
|
<artifactId>jericho-html</artifactId> |
|
<version>3.1</version> |
|
</dependency> |
|
<dependency> |
|
<!-- <groupId>net.sf.jtidy</groupId> |
|
<artifactId>jtidy</artifactId> |
|
<version>r938</version> |
|
<version>r8-20050104</version>--> |
|
<groupId>jtidy</groupId> |
|
<artifactId>jtidy</artifactId> |
|
<version>r938</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi</artifactId> |
|
<version>3.7-beta1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml</artifactId> |
|
<version>3.7-beta1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-scratchpad</artifactId> |
|
<version>3.7-beta1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.tika</groupId> |
|
<artifactId>tika-core</artifactId> |
|
<version>0.7</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.tika</groupId> |
|
<artifactId>tika-parsers</artifactId> |
|
<version>0.7</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>kr.co.kihyun.jslibs</groupId> |
|
<artifactId>jquery</artifactId> |
|
<version>0.1.4</version> |
|
<type>jar</type> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>kr.co.kihyun.jslibs</groupId> |
|
<artifactId>tinymce</artifactId> |
|
<version>0.1.4</version> |
|
<type>jar</type> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.truetech</groupId> |
|
<artifactId>truetech-exchange</artifactId> |
|
<version>20090701</version> |
|
<type>jar</type> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.commons</groupId> |
|
<artifactId>commons-compress</artifactId> |
|
<version>1.0</version> |
|
<type>pom</type> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.ibm.icu</groupId> |
|
<artifactId>icu4j</artifactId> |
|
<version>3.4.4</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>kr.co.iniline</groupId> |
|
<artifactId>swift-common</artifactId> |
|
<version>1.1.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>kr.co.iniline</groupId> |
|
<artifactId>swift-sp</artifactId> |
|
<version>nx-1.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>neis</groupId> |
|
<artifactId>esb</artifactId> |
|
<version>1.0</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>neis</groupId> |
|
<artifactId>eCrossClient</artifactId> |
|
<version>20110224</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>${project.groupId}</groupId> |
|
<artifactId>moumi5-commons-neis</artifactId> |
|
<!-- <version>[5.3.2, 6.0.0)</version>--> |
|
<version>5.3.7-SNAPSHOT</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>${project.groupId}</groupId> |
|
<artifactId>moumi5-persistence-neis</artifactId> |
|
<!-- <version>[5.3.2, 6.0.0)</version>--> |
|
<version>5.3.7-SNAPSHOT</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache</groupId> |
|
<artifactId>xmlsec</artifactId> |
|
<version>1.4.2</version> |
|
</dependency> |
|
</dependencies> |
|
<properties> |
|
<jetty.version>6.1.24</jetty.version> |
|
<jetty.port>8989</jetty.port> |
|
<test.browser>firefox</test.browser> |
|
<netbeans.hint.deploy.server>Tomcat60</netbeans.hint.deploy.server> |
|
</properties> |
|
</project>
|
|
|