opencpu-java-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.vsthost.rnd</groupId>
<artifactId>opencpu-java-client</artifactId>
<version>0.0.1</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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.vsthost.rnd</groupId>
<artifactId>opencpu-java-client</artifactId>
<version>0.0.1</version>
<packaging>jar</packaging>
<name>OpenCPU Java Client</name>
<description>Provides convenient functionality for reaching, consuming and interpreting OpenCPU HTTP API
endpoints.
</description>
<url>https://github.com/vst/opencpu-java-client</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Vehbi Sinan Tunalioglu</name>
<email>vst@vsthost.com</email>
<organization>The Negation</organization>
<organizationUrl>http://www.thenegation.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:vst/opencpu-java-client.git</connection>
<developerConnection>scm:git:git@github.com:vst/opencpu-java-client.git</developerConnection>
<url>git@github.com:vst/opencpu-java-client.git</url>
</scm>
<properties>
<!-- Define the source encoding for the build -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Define target and source compiler versions -->
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<!-- Define plugin versions -->
<version.maven-gpg-plugin>1.6</version.maven-gpg-plugin>
<version.nexus-staging-maven-plugin>1.6.3</version.nexus-staging-maven-plugin>
<version.maven-javadoc-plugin>2.10.3</version.maven-javadoc-plugin>
<version.maven-source-plugin>2.4</version.maven-source-plugin>
<!-- Define versions of dependencies -->
<version.jpsolver>0.0.1</version.jpsolver>
<version.junit>4.12</version.junit>
<version.httpclient>4.3.4</version.httpclient>
<version.gson>2.2.4</version.gson>
<version.commons-lang3>3.3.2</version.commons-lang3>
</properties>
<dependencies>
<dependency>
<groupId>com.vsthost.rnd</groupId>
<artifactId>jpsolver</artifactId>
<version>${version.jpsolver}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${version.gson}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${version.commons-lang3}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${version.httpclient}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${version.maven-source-plugin}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${version.maven-javadoc-plugin}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${version.maven-gpg-plugin}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${version.nexus-staging-maven-plugin}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>