gate-cloud-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>uk.ac.gate.plugins</groupId>
<artifactId>gate-cloud-plugin</artifactId>
<version>1.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>uk.ac.gate</groupId>
<artifactId>gate-plugin-base</artifactId>
<version>8.6.1</version>
<relativePath></relativePath>
</parent>
<properties>
<gate-core.version>8.6.1</gate-core.version>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>uk.ac.gate.plugins</groupId>
<artifactId>gate-cloud-plugin</artifactId>
<version>1.2</version>
<packaging>jar</packaging>
<name>GATE Cloud Client</name>
<description>GATE plugin containing a PR to call the GATE Cloud API</description>
<url>https://cloud.gate.ac.uk</url>
<developers>
<developer>
<id>gate-team</id>
<name>GATE Team</name>
<email>gate-developers@lists.sourceforge.net</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>GATE</name>
<url>http://gate.ac.uk</url>
</organization>
<scm>
<connection>scm:git:git://github.com/GateNLP/cloud-client.git</connection>
<developerConnection>scm:git:git@github.com:GateNLP/cloud-client.git</developerConnection>
<url>https://github.com/GateNLP/cloud-client</url>
</scm>
<dependencies>
<dependency>
<groupId>uk.ac.gate</groupId>
<artifactId>gate-cloud-client</artifactId>
<version>1.2</version>
<exclusions>
<!-- exclude those dependencies that are "provided" as transitives of gate-core -->
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.sun.xml.fastinfoset</groupId>
<artifactId>FastInfoset</artifactId>
<version>1.2.13</version>
</dependency>
</dependencies>
</project>