1804291631
git-svn-id: http://google-refine.googlecode.com/svn/trunk@39 7d457c2a-affb-35e4-300a-418c747d4874
68 lines
2.0 KiB
XML
68 lines
2.0 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>com.metaweb</groupId>
|
|
<artifactId>gridworks</artifactId>
|
|
<version>1.0.0</version>
|
|
|
|
<name>Gridworks</name>
|
|
<description>Gridworks description here.</description>
|
|
<url>http://www.metaweb.com/gridworks/</url>
|
|
<inceptionYear>2010</inceptionYear>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.5</source>
|
|
<target>1.5</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
<artifactId>maven-jetty-plugin</artifactId>
|
|
<version>6.1.22</version>
|
|
<configuration>
|
|
<connectors>
|
|
<connector implementation="org.mortbay.jetty.bio.SocketConnector">
|
|
<port>3333</port>
|
|
<maxIdleTime>60000</maxIdleTime>
|
|
</connector>
|
|
</connectors>
|
|
<scanIntervalSeconds>5</scanIntervalSeconds>
|
|
<contextPath>/</contextPath>
|
|
<webAppSourceDirectory>src/main/webapp</webAppSourceDirectory>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>servlets.com</groupId>
|
|
<artifactId>cos</artifactId>
|
|
<version>05Nov2002</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>2.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |