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>wikidata</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>OpenRefine - Wikidata extension</name>
|
|
|
|
<description>Schema alignment and data upload for Wikidata</description>
|
|
|
|
<url>https://www.wikidata.org/wiki/Wikidata:Tools/OpenRefine</url>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.openrefine</groupId>
|
|
|
|
<artifactId>extensions</artifactId>
|
2021-05-29 13:06:04 +02:00
|
|
|
<version>3.6-SNAPSHOT</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</parent>
|
|
|
|
|
2019-08-27 21:01:04 +02:00
|
|
|
<properties>
|
2020-11-02 11:11:20 +01:00
|
|
|
<powermock.version>2.0.9</powermock.version>
|
2021-10-20 10:20:42 +02:00
|
|
|
<wdtk.version>0.12.1</wdtk.version>
|
2019-08-27 21:01:04 +02:00
|
|
|
</properties>
|
|
|
|
|
2018-09-16 16:34:47 +02:00
|
|
|
<build>
|
|
|
|
<finalName>openrefine-wikidata</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<testSourceDirectory>tests/src</testSourceDirectory>
|
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<directory>tests/data</directory>
|
|
|
|
</testResource>
|
|
|
|
</testResources>
|
|
|
|
<outputDirectory>module/MOD-INF/classes</outputDirectory>
|
|
|
|
<plugins>
|
|
|
|
<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/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>module/MOD-INF/lib</outputDirectory>
|
|
|
|
<includeScope>runtime</includeScope>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>main</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
2021-12-06 15:50:54 +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>
|
2021-10-20 10:20:42 +02:00
|
|
|
<groupId>org.wikidata.wdtk</groupId>
|
2018-09-16 16:34:47 +02:00
|
|
|
<artifactId>wdtk-wikibaseapi</artifactId>
|
2020-04-08 17:23:03 +02:00
|
|
|
<version>${wdtk.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
2021-03-03 12:17:18 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
2018-09-16 16:34:47 +02:00
|
|
|
<dependency>
|
2021-10-20 10:20:42 +02:00
|
|
|
<groupId>org.wikidata.wdtk</groupId>
|
2018-09-16 16:34:47 +02:00
|
|
|
<artifactId>wdtk-datamodel</artifactId>
|
2020-04-08 17:23:03 +02:00
|
|
|
<version>${wdtk.version}</version>
|
2019-11-21 21:47:49 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-10-20 10:20:42 +02:00
|
|
|
<groupId>org.wikidata.wdtk</groupId>
|
2019-11-21 21:47:49 +01:00
|
|
|
<artifactId>wdtk-util</artifactId>
|
2020-04-08 17:23:03 +02:00
|
|
|
<version>${wdtk.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
2018-11-01 23:07:02 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2021-12-06 15:50:54 +01:00
|
|
|
<version>${slf4j.version}</version>
|
2018-11-01 23:07:02 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-09-16 16:34:47 +02:00
|
|
|
|
|
|
|
<!-- testing dependencies -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>main</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>tests</classifier>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<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 21:01:04 +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>
|
2020-08-22 17:58:56 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>mockwebserver</artifactId>
|
2021-11-23 08:44:13 +01:00
|
|
|
<version>${okhttp.version}</version>
|
2020-08-22 17:58:56 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|
|
|
|
|