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>gdata</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>OpenRefine - Gdata extension</name>
|
|
|
|
<description>Connects with Google services for data import and export</description>
|
|
|
|
<url>http://openrefine.org/</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>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>openrefine-gdata</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>${surefire.version}</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
<configuration>
|
2019-10-17 10:54:53 +02:00
|
|
|
<suiteXmlFiles>
|
|
|
|
<suiteXmlFile>tests/conf/tests.xml</suiteXmlFile>
|
|
|
|
</suiteXmlFiles>
|
2018-09-16 16:34:47 +02:00
|
|
|
</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>
|
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>
|
|
|
|
<excludeGroupIds>org.mortbay.jetty</excludeGroupIds>
|
|
|
|
</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.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.apis</groupId>
|
|
|
|
<artifactId>google-api-services-drive</artifactId>
|
2021-04-16 18:02:18 +02:00
|
|
|
<version>v3-rev20210315-1.31.0</version>
|
2018-09-16 16:34:47 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.apis</groupId>
|
|
|
|
<artifactId>google-api-services-sheets</artifactId>
|
2021-07-12 08:07:14 +02:00
|
|
|
<version>v4-rev20210629-1.32.1</version>
|
2018-09-16 16:34:47 +02: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>
|
|
|
|
<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-10-17 10:54:53 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2021-06-22 14:12:43 +02:00
|
|
|
<version>3.11.2</version>
|
2019-10-17 10:54:53 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-09-16 16:34:47 +02:00
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|
|
|
|
|