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>
|
2021-05-29 13:06:04 +02:00
|
|
|
<version>3.6-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>
|
|
|
|
</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>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${build-helper-maven-plugin.version}</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-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>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${maven-dependency-plugin.version}</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>
|
2020-06-21 15:36:17 +02:00
|
|
|
<includeScope>runtime</includeScope>
|
2018-09-16 16:34:47 +02:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${maven-jar-plugin.version}</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>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${maven-clean-plugin.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
<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>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${git-commit-id-plugin.version}</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>
|
|
|
|
<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>
|
2020-08-07 16:10:42 +02:00
|
|
|
<includeOnlyProperties>
|
|
|
|
<includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty>
|
|
|
|
<includeOnlyProperty>^git.branch</includeOnlyProperty>
|
|
|
|
<includeOnlyProperty>^git.commit.id.(abbrev|full|describe)$</includeOnlyProperty>
|
|
|
|
</includeOnlyProperties>
|
2018-11-21 20:54:09 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-09-16 16:34:47 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
2021-03-18 10:12:57 +01:00
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>${servlet-api.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
<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>
|
2021-03-18 10:12:57 +01:00
|
|
|
<version>${butterfly.version}</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>
|
2020-06-16 23:07:21 +02:00
|
|
|
<version>${slf4j.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2020-06-16 23:07:21 +02:00
|
|
|
<version>${slf4j.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${commons-lang3.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${commons-fileupload.version}</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>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${commons-collections.version}</version>
|
2018-11-19 17:20:08 +01:00
|
|
|
</dependency>
|
2020-02-25 06:51:41 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-text</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${commons-text.version}</version>
|
2020-02-25 06:51:41 +01:00
|
|
|
</dependency>
|
2018-11-19 17:20:08 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-validator</groupId>
|
|
|
|
<artifactId>commons-validator</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${commons-validator.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>velocity</groupId>
|
|
|
|
<artifactId>velocity</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${velocity.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-07-22 22:12:30 +02:00
|
|
|
<groupId>org.marc4j</groupId>
|
2018-09-16 16:34:47 +02:00
|
|
|
<artifactId>marc4j</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${marc4j.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-06-11 16:39:51 +02:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${commons-compress.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
<artifactId>jsoup</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${jsoup.version}</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>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${opencsv-multichar.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi</artifactId>
|
2021-11-07 13:13:56 +01:00
|
|
|
<version>${poi.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
2021-11-07 13:13:56 +01:00
|
|
|
<version>${poi.version}</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>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${odfdom-java.version}</version>
|
2021-11-28 07:36:12 +01:00
|
|
|
<!-- workaround for https://github.com/tdf/odftoolkit/issues/131,
|
|
|
|
which is unfortunately still not solved after
|
|
|
|
https://github.com/tdf/odftoolkit/pull/132
|
|
|
|
because xml-apis remains an indirect dependency of this library
|
|
|
|
through xercesImpl.
|
|
|
|
-->
|
2021-11-16 21:38:41 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
<artifactId>xml-apis</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
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>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${vicino.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.clojure</groupId>
|
|
|
|
<artifactId>clojure</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${clojure.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
2020-12-07 06:38:36 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
|
|
<artifactId>httpclient5</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${httpclient5.version}</version>
|
2020-12-07 06:38:36 +01:00
|
|
|
</dependency>
|
2018-09-16 16:34:47 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpcore</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${httpcore.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.sweble.wikitext</groupId>
|
|
|
|
<artifactId>swc-parser-lazy</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${swc-parser-lazy.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
2021-01-27 09:20:56 +01:00
|
|
|
|
2021-11-21 21:03:30 +01:00
|
|
|
<dependency> <!-- reported as unused by dependency:analyze, but tests fail without -->
|
2018-09-16 16:34:47 +02:00
|
|
|
<groupId>org.apache.jena</groupId>
|
|
|
|
<artifactId>jena-arq</artifactId>
|
2020-06-16 22:58:26 +02:00
|
|
|
<version>${jena.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jena</groupId>
|
|
|
|
<artifactId>jena-core</artifactId>
|
2020-06-16 22:58:26 +02:00
|
|
|
<version>${jena.version}</version>
|
2020-06-15 22:18:02 +02:00
|
|
|
</dependency>
|
2021-01-27 09:20:56 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${commons-codec.version}</version>
|
2021-01-27 09:20:56 +01:00
|
|
|
</dependency>
|
2020-06-15 22:18:02 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${commons-io.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
2018-11-19 17:20:08 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${guava.version}</version>
|
2018-11-19 17:20:08 +01:00
|
|
|
</dependency>
|
2020-06-21 20:56:33 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${jaxb-api.version}</version>
|
2020-06-21 20:56:33 +02:00
|
|
|
</dependency>
|
2020-06-22 06:04:51 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.albfernandez</groupId>
|
|
|
|
<artifactId>juniversalchardet</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${juniversalchardet.version}</version>
|
2020-06-22 06:04:51 +02:00
|
|
|
</dependency>
|
2021-11-21 21:03:30 +01:00
|
|
|
<dependency> <!-- reported as unused by dependency:analyze, but broken without it -->
|
2021-03-18 10:12:57 +01:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlets</artifactId>
|
|
|
|
<version>${jetty.version}</version>
|
|
|
|
</dependency>
|
2018-09-16 16:34:47 +02:00
|
|
|
|
|
|
|
<!-- test dependencies -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
<artifactId>testng</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${testng.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</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>
|
2020-07-03 21:42:44 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-08-27 20:52:21 +02:00
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-api-mockito2</artifactId>
|
|
|
|
<version>${powermock.version}</version>
|
|
|
|
<scope>test</scope>
|
2020-07-03 21:42:44 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-06-16 09:38:06 +02:00
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>mockwebserver</artifactId>
|
2020-08-23 14:04:59 +02:00
|
|
|
<version>${okhttp.version}</version>
|
2020-06-16 09:38:06 +02:00
|
|
|
<scope>test</scope>
|
2020-07-07 11:58:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpmime</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${httpmime.version}</version>
|
2020-07-07 11:58:47 +02:00
|
|
|
<scope>test</scope>
|
2020-07-03 21:42:44 +02:00
|
|
|
</dependency>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|