2018-09-16 16:34:47 +02:00
|
|
|
<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>
|
2020-05-13 22:56:33 +02:00
|
|
|
<version>3.5-SNAPSHOT</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
|
|
|
|
<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>
|
2020-04-16 09:59:44 +02:00
|
|
|
<organization>
|
|
|
|
<name>Code for Science & Society Inc.</name>
|
|
|
|
<url>https://codeforscience.org/</url>
|
|
|
|
</organization>
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>BSD 3-Clause "New" or "Revised" License</name>
|
|
|
|
<url>https://github.com/OpenRefine/OpenRefine/blob/master/LICENSE.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
<mailingLists>
|
|
|
|
<mailingList>
|
|
|
|
<name>Dev</name>
|
|
|
|
<post>openrefine-dev@googlegroups.com</post>
|
|
|
|
<archive>https://groups.google.com/group/openrefine-dev/</archive>
|
|
|
|
</mailingList>
|
|
|
|
<mailingList>
|
|
|
|
<name>Users</name>
|
|
|
|
<post>openrefine@googlegroups.com</post>
|
|
|
|
<archive>https://groups.google.com/group/openrefine/</archive>
|
|
|
|
</mailingList>
|
|
|
|
</mailingLists>
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git://github.com//OpenRefine/OpenRefine.git</connection>
|
|
|
|
<developerConnection>scm:git:https://github.com/OpenRefine/OpenRefine</developerConnection>
|
|
|
|
<url>https://github.com/OpenRefine/OpenRefine.git</url>
|
|
|
|
<tag>HEAD</tag>
|
|
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub Issues</system>
|
|
|
|
<url>https://github.com/openrefine/openrefine/issues</url>
|
|
|
|
</issueManagement>
|
2018-09-16 16:34:47 +02:00
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>main</module>
|
|
|
|
<module>server</module>
|
|
|
|
<module>extensions</module>
|
2018-09-20 15:35:54 +02:00
|
|
|
<module>packaging</module>
|
2018-09-16 16:34:47 +02:00
|
|
|
</modules>
|
|
|
|
|
2020-04-16 09:59:44 +02:00
|
|
|
|
2018-09-16 16:34:47 +02:00
|
|
|
<properties>
|
|
|
|
<jee.path>/</jee.path>
|
|
|
|
<jee.port>3333</jee.port>
|
|
|
|
<refine.data>/tmp/refine</refine.data>
|
2019-08-28 11:08:22 +02:00
|
|
|
<surefire.version>2.22.2</surefire.version>
|
2018-09-18 15:51:27 +02:00
|
|
|
<surefireArgs></surefireArgs>
|
2019-05-15 12:27:32 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2020-05-28 10:35:22 +02:00
|
|
|
<jackson.version>2.11.0</jackson.version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
2020-03-24 21:41:14 +01:00
|
|
|
<!-- It is nice for "mvn" with no arguments to do a reasonable default. -->
|
|
|
|
<defaultGoal>install</defaultGoal>
|
|
|
|
|
2018-09-16 16:34:47 +02:00
|
|
|
<finalName>openrefine</finalName>
|
|
|
|
<resources>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
2020-04-17 17:45:28 +02:00
|
|
|
<version>1.8</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
<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>
|
2020-04-17 17:45:28 +02:00
|
|
|
<version>3.1</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
<configuration>
|
2020-04-17 17:45:28 +02:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2018-09-16 16:34:47 +02:00
|
|
|
<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>
|
2020-05-30 11:49:21 +02:00
|
|
|
<version>3.1.2</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2019-08-28 11:08:22 +02:00
|
|
|
<version>${surefire.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
<configuration>
|
2018-09-16 13:53:54 +02:00
|
|
|
<argLine>${surefireArgs}</argLine>
|
2018-09-16 16:34:47 +02:00
|
|
|
<suiteXmlFiles>
|
|
|
|
<suiteXmlFile>main/tests/server/conf/tests.xml</suiteXmlFile>
|
|
|
|
</suiteXmlFiles>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-09-16 13:53:54 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
2020-05-30 12:09:13 +02:00
|
|
|
<version>0.8.5</version>
|
2018-09-16 13:53:54 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>prepare-agent</id>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>process-test-resources</phase>
|
|
|
|
<configuration>
|
2018-09-16 21:31:02 +02:00
|
|
|
<destFile>${project.build.directory}/report/jacoco.exec</destFile>
|
2018-09-16 13:53:54 +02:00
|
|
|
<propertyName>surefireArgs</propertyName>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2019-05-15 14:44:39 +02:00
|
|
|
<dataFile>${project.build.directory}/jacoco.exec</dataFile>
|
2018-09-16 13:53:54 +02:00
|
|
|
<outputDirectory>${project.reporting.outputDirectory}/jacoco</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2018-09-16 21:31:02 +02:00
|
|
|
<execution>
|
|
|
|
<id>merge</id>
|
|
|
|
<goals>
|
|
|
|
<goal>merge</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<configuration>
|
|
|
|
<destFile>${project.build.directory}/report/jacoco-merged.exec</destFile>
|
|
|
|
<fileSets>
|
|
|
|
<fileSet>
|
|
|
|
<directory>${project.build.directory}/report</directory>
|
|
|
|
<includes>
|
|
|
|
<include>jacoco.exec</include>
|
2019-05-15 14:44:39 +02:00
|
|
|
<include>jacoco-merged.exec</include>
|
2018-09-16 21:31:02 +02:00
|
|
|
</includes>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>extensions/target/report</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*.exec</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
|
|
|
</fileSets>
|
|
|
|
</configuration>
|
2019-05-15 14:44:39 +02:00
|
|
|
</execution>
|
|
|
|
</executions>
|
2018-09-16 13:53:54 +02:00
|
|
|
</plugin>
|
2019-05-15 12:07:23 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.eluder.coveralls</groupId>
|
|
|
|
<artifactId>coveralls-maven-plugin</artifactId>
|
|
|
|
<version>4.3.0</version>
|
2019-12-27 17:27:49 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
<version>2.2.3</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-05-15 14:44:39 +02:00
|
|
|
<configuration>
|
|
|
|
<sourceDirectories>
|
|
|
|
<sourceDirectory>main/src</sourceDirectory>
|
|
|
|
<sourceDirectory>extensions/jython/src</sourceDirectory>
|
|
|
|
<sourceDirectory>extensions/wikidata/src</sourceDirectory>
|
|
|
|
<sourceDirectory>extensions/database/src</sourceDirectory>
|
|
|
|
<sourceDirectory>extensions/phonetic/src</sourceDirectory>
|
|
|
|
</sourceDirectories>
|
|
|
|
</configuration>
|
2019-05-15 12:07:23 +02:00
|
|
|
</plugin>
|
2018-09-16 16:34:47 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
2020-03-24 21:41:14 +01:00
|
|
|
<!-- dependencies are stored in the relevant submodules:
|
2018-09-16 16:34:47 +02:00
|
|
|
see main/pom.xml, server/pom.xml and each extension.
|
2020-03-24 21:41:14 +01:00
|
|
|
-->
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependencies>
|
2020-03-24 21:41:14 +01:00
|
|
|
|
2018-09-16 16:34:47 +02:00
|
|
|
</project>
|
|
|
|
|