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>
|
|
|
|
|
|
|
|
<artifactId>main</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>OpenRefine - main</name>
|
|
|
|
<description>OpenRefine is a free, open source power tool for working with messy data and improving it</description>
|
|
|
|
<url>http://openrefine.org/</url>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.openrefine</groupId>
|
|
|
|
<artifactId>openrefine</artifactId>
|
2020-05-13 22:56:33 +02:00
|
|
|
<version>3.5-SNAPSHOT</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<jee.path>/</jee.path>
|
|
|
|
<jee.port>3333</jee.port>
|
|
|
|
<refine.data>/tmp/refine</refine.data>
|
2020-06-11 10:23:05 +02:00
|
|
|
<powermock.version>2.0.7</powermock.version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:http://github.com/OpenRefine/OpenRefine</connection>
|
|
|
|
<url>http://github.com/OpenRefine/OpenRefine</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>openrefine-main</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<testSourceDirectory>tests/server/src</testSourceDirectory>
|
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<directory>tests/data</directory>
|
|
|
|
</testResource>
|
|
|
|
</testResources>
|
|
|
|
<outputDirectory>webapp/WEB-INF/classes</outputDirectory>
|
|
|
|
<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>src</source>
|
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2020-06-15 11:20:38 +02:00
|
|
|
<version>3.8.1</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
<configuration>
|
2020-04-17 17:45:28 +02:00
|
|
|
<!--release>11</release-->
|
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.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>
|
|
|
|
<suiteXmlFiles>
|
|
|
|
<suiteXmlFile>tests/server/conf/tests.xml</suiteXmlFile>
|
|
|
|
</suiteXmlFiles>
|
|
|
|
</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
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>webapp/WEB-INF/lib</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2020-06-01 11:06:36 +02:00
|
|
|
<version>3.2.0</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>webapp/WEB-INF/lib</directory>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-11-21 20:54:09 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>pl.project13.maven</groupId>
|
|
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
2020-06-11 04:08:41 +02:00
|
|
|
<version>4.0.0</version>
|
2018-11-21 20:54:09 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>get-the-git-infos</id>
|
|
|
|
<goals>
|
|
|
|
<goal>revision</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
|
|
|
|
<prefix>git</prefix>
|
|
|
|
<verbose>false</verbose>
|
|
|
|
<generateGitPropertiesFile>true</generateGitPropertiesFile>
|
|
|
|
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
|
2019-05-31 09:24:06 +02:00
|
|
|
<failOnNoGitDirectory>false</failOnNoGitDirectory>
|
2019-07-19 14:25:37 +02:00
|
|
|
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
|
2018-11-21 20:54:09 +01:00
|
|
|
<format>json</format>
|
|
|
|
<gitDescribe>
|
|
|
|
<skip>false</skip>
|
|
|
|
<always>false</always>
|
|
|
|
<dirty>-dirty</dirty>
|
|
|
|
</gitDescribe>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-09-16 16:34:47 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-03-07 22:35:31 +01:00
|
|
|
<groupId>org.openrefine.dependencies</groupId>
|
2018-09-16 16:34:47 +02:00
|
|
|
<artifactId>butterfly</artifactId>
|
2020-06-11 10:23:39 +02:00
|
|
|
<version>1.0.3</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mozilla</groupId>
|
2020-06-11 02:43:01 +02:00
|
|
|
<artifactId>rhino-runtime</artifactId>
|
2020-05-28 10:36:44 +02:00
|
|
|
<version>1.7.12</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2019-10-10 17:55:56 +02:00
|
|
|
<version>${jackson.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
2019-10-10 17:55:56 +02:00
|
|
|
<version>${jackson.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>1.7.18</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2020-06-12 03:33:00 +02:00
|
|
|
<version>1.7.30</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2020-06-03 08:03:01 +02:00
|
|
|
<version>3.10</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-digester</groupId>
|
|
|
|
<artifactId>commons-digester</artifactId>
|
|
|
|
<version>1.8.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
2018-12-31 15:40:09 +01:00
|
|
|
<version>1.4</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-11-19 17:20:08 +01:00
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
<version>3.2.2</version>
|
|
|
|
</dependency>
|
2020-02-25 06:51:41 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-text</artifactId>
|
|
|
|
<version>1.8</version>
|
|
|
|
</dependency>
|
2018-11-19 17:20:08 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-validator</groupId>
|
|
|
|
<artifactId>commons-validator</artifactId>
|
2020-06-12 10:19:45 +02:00
|
|
|
<version>1.6</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>velocity</groupId>
|
|
|
|
<artifactId>velocity</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-03-07 22:35:31 +01:00
|
|
|
<groupId>org.openrefine.dependencies</groupId>
|
2018-09-16 16:34:47 +02:00
|
|
|
<artifactId>marc4j</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-06-11 16:39:51 +02:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
|
|
|
<version>1.20</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
<artifactId>jsoup</artifactId>
|
2020-05-30 11:46:39 +02:00
|
|
|
<version>1.13.1</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-03-07 22:35:31 +01:00
|
|
|
<groupId>org.openrefine.dependencies</groupId>
|
|
|
|
<artifactId>opencsv-multichar</artifactId>
|
|
|
|
<version>2.4</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi</artifactId>
|
2020-04-26 12:26:05 +02:00
|
|
|
<version>4.1.2</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
2020-04-26 12:26:05 +02:00
|
|
|
<version>4.1.2</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-12-13 11:10:10 +01:00
|
|
|
<groupId>org.odftoolkit</groupId>
|
2018-09-16 16:34:47 +02:00
|
|
|
<artifactId>odfdom-java</artifactId>
|
2019-12-13 11:10:10 +01:00
|
|
|
<version>0.9.0-RC1</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-03-07 22:35:31 +01:00
|
|
|
<groupId>org.openrefine.dependencies</groupId>
|
2018-09-16 16:34:47 +02:00
|
|
|
<artifactId>vicino</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>oauth.signpost</groupId>
|
|
|
|
<artifactId>signpost-core</artifactId>
|
2020-05-30 11:45:07 +02:00
|
|
|
<version>2.0.0</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>oauth.signpost</groupId>
|
|
|
|
<artifactId>signpost-commonshttp4</artifactId>
|
2020-06-14 09:58:33 +02:00
|
|
|
<version>2.0.0</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.clojure</groupId>
|
|
|
|
<artifactId>clojure</artifactId>
|
2020-05-03 17:59:56 +02:00
|
|
|
<version>1.10.1</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
2020-06-11 10:22:37 +02:00
|
|
|
<version>4.5.12</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpcore</artifactId>
|
|
|
|
<version>4.4.9</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.sweble.wikitext</groupId>
|
|
|
|
<artifactId>swc-parser-lazy</artifactId>
|
|
|
|
<version>3.1.7</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
<version>2.9.9</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jena</groupId>
|
|
|
|
<artifactId>jena-arq</artifactId>
|
|
|
|
<version>3.6.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jena</groupId>
|
|
|
|
<artifactId>jena-base</artifactId>
|
|
|
|
<version>3.6.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jena</groupId>
|
|
|
|
<artifactId>jena-cmds</artifactId>
|
|
|
|
<version>3.6.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jena</groupId>
|
|
|
|
<artifactId>jena-core</artifactId>
|
|
|
|
<version>3.6.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.metaweb</groupId>
|
|
|
|
<artifactId>lessen</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2018-09-16 21:56:44 +02:00
|
|
|
<dependency>
|
2020-03-07 22:35:31 +01:00
|
|
|
<groupId>org.openrefine.dependencies</groupId>
|
2018-09-16 21:56:44 +02:00
|
|
|
<artifactId>secondstring</artifactId>
|
|
|
|
<version>20100303</version>
|
|
|
|
</dependency>
|
2018-09-16 22:11:11 +02:00
|
|
|
<dependency>
|
2020-03-07 22:35:31 +01:00
|
|
|
<groupId>org.openrefine.dependencies</groupId>
|
2018-09-16 22:11:11 +02:00
|
|
|
<artifactId>arithcode</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
</dependency>
|
2018-11-19 17:20:08 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2020-06-03 18:40:16 +02:00
|
|
|
<version>23.6.1-jre</version>
|
2018-11-19 17:20:08 +01:00
|
|
|
</dependency>
|
2018-09-16 22:11:11 +02:00
|
|
|
|
2018-09-16 16:34:47 +02:00
|
|
|
|
|
|
|
<!-- test dependencies -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
<artifactId>testng</artifactId>
|
2020-06-03 10:49:47 +02:00
|
|
|
<version>7.1.0</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2020-06-03 08:01:22 +02:00
|
|
|
<version>3.3.3</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-12-08 21:31:01 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
<version>2.3.0</version>
|
|
|
|
</dependency>
|
2019-08-27 20:52:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-module-testng</artifactId>
|
|
|
|
<version>${powermock.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-api-mockito2</artifactId>
|
|
|
|
<version>${powermock.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|