interaction
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>uk.ac.gate</groupId>
<artifactId>interaction</artifactId>
<version>4.0</version>
</dependency><?xml version="1.0"?>
<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">
<groupId>uk.ac.gate</groupId>
<artifactId>interaction</artifactId>
<version>4.0</version>
<name>gatelib-interaction</name>
<description>
A library that implements a number of different ways for running a program
in a different process and communicating with that process by sending
data back and forth over standard input/output in various formats
(JSON, ObjectStream ... ).
</description>
<developers>
<developer>
<name>GATE Team</name>
<email>gate-developers@lists.sourceforge.net</email>
<organization>GATE Team</organization>
<organizationUrl>https://gate.ac.uk</organizationUrl>
</developer>
<developer>
<name>Johann Petrak</name>
<email>johann.petrak@gmail.com</email>
<organization>GATE Team</organization>
<organizationUrl>https://gate.ac.uk</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/GateNLP/gatelib-interaction.git</connection>
<developerConnection>scm:git:git@github.com:GateNLP/gatelib-interaction.git</developerConnection>
<url>https://github.com/GateNLP/gatelib-interaction</url>
</scm>
<licenses>
<license>
<name>Apache License, Version 2</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<url>https://github.com/GateNLP/gatelib-interaction</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<!-- this is just needed for the site goal -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
<compilerArgs>
<arg>-Xlint:all</arg>
<arg>-Xdoclint:all/public</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>run-javadoc</id>
<goals>
<goal>javadoc</goal>
</goals>
<phase>test</phase>
<configuration>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>before-integration-tests</id>
<goals>
<goal>copy-dependencies</goal>
</goals>
<phase>integration-test</phase>
<configuration>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
<configuration>
<skip>true</skip>
</configuration>
<executions>
<execution>
<id>unit-tests</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<skip>false</skip>
<excludes>
<exclude>**/integration/*.java</exclude>
</excludes>
</configuration>
</execution>
<execution>
<id>integration-tests</id>
<goals>
<goal>test</goal>
</goals>
<phase>integration-test</phase>
<configuration>
<skip>false</skip>
<excludes>
<exclude>none</exclude>
</excludes>
<includes>
<include>**/integration/*.java</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>[2.9.9,)</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>gate-oss</id>
<name>Sonatype OSS staging</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
<layout>default</layout>
</repository>
<snapshotRepository>
<id>gate.snapshots</id>
<name>GATE Snapshots Repository</name>
<url>https://repo.gate.ac.uk/content/repositories/snapshots</url>
<layout>default</layout>
</snapshotRepository>
</distributionManagement>
<packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion>
</project>