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>database</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>OpenRefine - Database extension</name>
|
|
|
|
<description>Connections to SQL databases for import and export</description>
|
|
|
|
<url>http://openrefine.org/</url>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.openrefine</groupId>
|
|
|
|
<artifactId>extensions</artifactId>
|
2020-05-13 22:56:33 +02:00
|
|
|
<version>3.5-SNAPSHOT</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>openrefine-database</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<testSourceDirectory>tests/src</testSourceDirectory>
|
|
|
|
<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>
|
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>
|
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>2.22.2</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-clean-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>module/MOD-INF/lib</directory>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<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>module/MOD-INF/lib</outputDirectory>
|
|
|
|
<includeScope>runtime</includeScope>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</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>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
2021-02-19 07:16:53 +01:00
|
|
|
<version>42.2.19</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
2020-10-07 10:18:38 +02:00
|
|
|
<version>4.5.13</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.http-client</groupId>
|
|
|
|
<artifactId>google-http-client-jackson2</artifactId>
|
2021-04-14 22:07:50 +02:00
|
|
|
<version>1.39.2</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
2021-01-18 08:46:46 +01:00
|
|
|
<version>8.0.23</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jasypt</groupId>
|
|
|
|
<artifactId>jasypt</artifactId>
|
2020-06-04 10:50:36 +02:00
|
|
|
<version>1.9.3</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
|
|
<artifactId>mariadb-java-client</artifactId>
|
2021-02-01 11:08:27 +01:00
|
|
|
<version>2.7.2</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
2020-02-21 05:27:11 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
2020-12-11 15:39:43 +01:00
|
|
|
<version>3.34.0</version>
|
2020-02-21 05:27:11 +01:00
|
|
|
</dependency>
|
2018-09-22 19:04:02 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
2019-10-10 17:55:56 +02:00
|
|
|
<version>${jackson.version}</version>
|
2018-09-22 19:04:02 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-09-16 16:34:47 +02:00
|
|
|
<dependency>
|
2018-11-22 20:16:23 +01:00
|
|
|
<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.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2021-04-04 03:38:16 +02:00
|
|
|
<version>3.12.0</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
2019-09-09 06:22:22 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.owasp.encoder</groupId>
|
|
|
|
<artifactId>encoder</artifactId>
|
2020-11-09 08:36:08 +01:00
|
|
|
<version>1.2.3</version>
|
2019-09-09 06:22:22 +02:00
|
|
|
</dependency>
|
|
|
|
|
2018-09-16 16:34:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
<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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2021-02-24 15:56:07 +01:00
|
|
|
<version>3.8.0</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|
|
|
|
|