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.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
2020-06-23 10:45:07 +02:00
|
|
|
<version>3.2.0</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>
|
2021-11-07 11:43:12 +01:00
|
|
|
<source>${java.minversion}</source>
|
|
|
|
<target>${java.minversion}</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>
|
2020-08-12 10:15:08 +02:00
|
|
|
<version>3.2.0</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
<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/conf/tests.xml</suiteXmlFile>
|
|
|
|
</suiteXmlFiles>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
2021-06-14 09:22:30 +02:00
|
|
|
<version>3.2.0</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>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>module/MOD-INF/lib</directory>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</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>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<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-07-20 21:43:48 +02:00
|
|
|
<version>1.7.32</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-03-03 16:50:28 +01:00
|
|
|
<version>7.4.0</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-10-03 09:01:27 +02:00
|
|
|
<version>4.9.2</version>
|
2020-08-22 17:58:56 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|
|
|
|
|