2077d3f094
use maven to build the eclipse scripts instead of committing them in svn which makes them less portable (do './gridworks eclipse' at the beginning to regenerate your eclipse project files, then reload in eclipse) git-svn-id: http://google-refine.googlecode.com/svn/trunk@59 7d457c2a-affb-35e4-300a-418c747d4874
99 lines
2.9 KiB
XML
99 lines
2.9 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>${jetty.port}</port>
|
|
<maxIdleTime>60000</maxIdleTime>
|
|
</connector>
|
|
</connectors>
|
|
<scanIntervalSeconds>5</scanIntervalSeconds>
|
|
<contextPath>/</contextPath>
|
|
<webAppSourceDirectory>src/main/webapp</webAppSourceDirectory>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<inherited>true</inherited>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
<configuration>
|
|
<downloadSources>true</downloadSources>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<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>
|
|
|
|
<!-- For reading XLS files -->
|
|
<dependency>
|
|
<groupId>poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
<version>2.5.1-final-20040804</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |