111 lines
3.2 KiB
XML
111 lines
3.2 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>org.openrefine</groupId>
|
|
<artifactId>openrefine</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>3.0-SNAPSHOT</version>
|
|
|
|
<name>OpenRefine</name>
|
|
<description>OpenRefine is a free, open source power tool for working with messy data and improving it</description>
|
|
<url>http://openrefine.org/</url>
|
|
|
|
<modules>
|
|
<module>main</module>
|
|
<module>server</module>
|
|
<module>extensions</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<jee.path>/</jee.path>
|
|
<jee.port>3333</jee.port>
|
|
<refine.data>/tmp/refine</refine.data>
|
|
</properties>
|
|
|
|
<scm>
|
|
<connection>scm:git:http://github.com/OpenRefine/OpenRefine</connection>
|
|
<url>http://github.com/OpenRefine/OpenRefine</url>
|
|
</scm>
|
|
|
|
<build>
|
|
<finalName>openrefine</finalName>
|
|
<resources>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<version>1.8</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>add-source</goal>
|
|
</goals>
|
|
<configuration>
|
|
<sources>
|
|
<source>server/src</source>
|
|
</sources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<encoding>UTF-8</encoding>
|
|
<showDeprecation>false</showDeprecation>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>2.6</version>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.3</version>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
<mainClass>none</mainClass>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>3.1.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.22.0</version>
|
|
<configuration>
|
|
<suiteXmlFiles>
|
|
<suiteXmlFile>main/tests/server/conf/tests.xml</suiteXmlFile>
|
|
</suiteXmlFiles>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<pluginManagement>
|
|
<plugins>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<!-- dependencies are stored in the relevant submodules:
|
|
see main/pom.xml, server/pom.xml and each extension.
|
|
-->
|
|
</dependencies>
|
|
</project>
|
|
|