| Title: |
VersionOne.SDK.Java.APIClient |
| Group ID: |
com.versionone |
| Artifact ID: |
VersionOne.SDK.Java.APIClient |
| Version: |
21.3.0 |
| Last modified: |
01.08.2026 02:00 |
| Packaging: |
jar |
| Name: |
VersionOne.SDK.Java.APIClient |
| Description: |
A library for custom Java development against the VersionOne Development Platform's REST API. |
| URL: |
https://github.com/versionone/VersionOne.SDK.Java.APIClient |
| Vendor: |
VersionOne, Inc. |
|
|
| Size: |
184.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/com/versionone/VersionOne.SDK.Java.APIClient/21.3.0/VersionOne.SDK.Java.APIClient-21.3.0.jar |
| POM: |
Show
hide
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.versionone</groupId>
<artifactId>VersionOne.SDK.Java.APIClient</artifactId>
<version>21.3.0</version>
<packaging>jar</packaging>
<name>VersionOne.SDK.Java.APIClient</name>
<description>A library for custom Java development against the VersionOne Development Platform's REST API.</description>
<url>https://github.com/versionone/VersionOne.SDK.Java.APIClient</url>
<organization>
<name>VersionOne, Inc.</name>
<url>http://www.versionone.com/</url>
</organization>
<licenses>
<license>
<name>Modified BSD (3-clause)</name>
<url>https://raw.github.com/versionone/VersionOne.SDK.Java.APIClient/master/LICENSE.md</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/versionone/VersionOne.SDK.Java.APIClient/issues</url>
</issueManagement>
<scm>
<url>https://github.com/versionone/VersionOne.SDK.Java.APIClient</url>
<connection>scm:git:git@github.com:versionone/VersionOne.SDK.Java.APIClient.git</connection>
<developerConnection>scm:git:git@github.com:versionone/VersionOne.SDK.Java.APIClient.git</developerConnection>
</scm>
<developers>
<developer>
<name>Ian Buchanan</name>
<email>ian.buchanan@versionone.com</email>
<organization>VersionOne</organization>
<organizationUrl>http://www.versionone.com/</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<name>Greg Johnson</name>
<email>greg.johnson@versionone.com</email>
<organization>VersionOne</organization>
<organizationUrl>http://www.versionone.com/</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<name>Acey Bunch</name>
<email>acey.bunch@versionone.com</email>
<organization>VersionOne</organization>
<organizationUrl>http://www.versionone.com/</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<name>Valentin Plechuc</name>
<email>vplechuc@velocitypartners.net</email>
<organization>Velocity Partners</organization>
<organizationUrl>http://www.velocitypartners.net/</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<github.global.server>github</github.global.server>
<VERSION_NUMBER>${project.version}</VERSION_NUMBER>
<httpclient4.version>4.5.14</httpclient4.version>
<httpcore4.version>4.4.16</httpcore4.version>
<commons.io.version>2.21.0</commons.io.version>
<commons.lang3.version>3.20.0</commons.lang3.version>
<org.json.version>20250517</org.json.version>
<server>central</server>
</properties>
<build>
<plugins>
<!-- Write manifest properties -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.1</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<!-- generate javadoc
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>javadoc</id>
<phase>package</phase>
<goals>
<goal>javadoc</goal>
</goals>
</execution>
</executions>
</plugin>
-->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<!-- Add javadoc jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- create zip file using assembly.xml -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>VersionOne.JavaSDK-${project.version}</finalName>
<descriptors>
<descriptor>${basedir}/assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Add sources jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- adding dependencies -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>dependencies</outputDirectory>
<includeScope>runtime</includeScope>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>
</plugin>
<!-- Unit test suite -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18</version>
<configuration>
<skipTests>false</skipTests>
<includes>
<include>**/*TestSuite.java</include>
</includes>
</configuration>
</plugin>
<!-- integration test suite -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.17</version>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Cobertura test coverage -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
<configuration>
<formats>
<format>xml</format>
</formats>
<check />
</configuration>
</plugin>
<!-- Write out maven properties so they can be used by Jenkins -->
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0-alpha-2</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>write-project-properties</goal>
</goals>
<configuration>
<outputFile>
${project.build.directory}/maven.properties
</outputFile>
</configuration>
</execution>
</executions>
</plugin>
-->
<!--GPG plug in for maven -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>deploy</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.11.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>${server}</publishingServerId>
<autoPublish>false</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpclient4.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-win</artifactId>
<version>${httpclient4.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>${httpclient4.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>${httpcore4.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons.lang3.version}</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${org.json.version}</version>
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock</artifactId>
<version>1.58</version>
<scope>test</scope>
<!-- Include everything below here if you have dependency conflicts -->
<classifier>standalone</classifier>
<exclusions>
<exclusion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</exclusion>
<exclusion>
<groupId>org.skyscreamer</groupId>
<artifactId>jsonassert</artifactId>
</exclusion>
<exclusion>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
</exclusion>
<exclusion>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
</exclusion>
<exclusion>
<groupId>net.sf.jopt-simple</groupId>
<artifactId>jopt-simple</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>${server}</id>
<name>Maven Central Snapshot Repository</name>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>
|
| Maven: |
<dependency>
<groupId>com.versionone</groupId>
<artifactId>VersionOne.SDK.Java.APIClient</artifactId>
<version>21.3.0</version>
</dependency>
|
| Gradle: |
com.versionone:VersionOne.SDK.Java.APIClient:21.3.0 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
-
[JAR]
commons-io-${commons.io.version}.jar
in commons-io/commons-io/${commons.io.version}
-
[JAR]
commons-lang3-${commons.lang3.version}.jar
in org/apache/commons/commons-lang3/${commons.lang3.version}
-
[JAR]
httpclient-${httpclient4.version}.jar
in org/apache/httpcomponents/httpclient/${httpclient4.version}
-
[JAR]
httpclient-win-${httpclient4.version}.jar
in org/apache/httpcomponents/httpclient-win/${httpclient4.version}
-
[JAR]
httpcore-${httpcore4.version}.jar
in org/apache/httpcomponents/httpcore/${httpcore4.version}
-
[JAR]
httpmime-${httpclient4.version}.jar
in org/apache/httpcomponents/httpmime/${httpclient4.version}
-
[JAR]
json-${org.json.version}.jar
in org/json/json/${org.json.version}
-
[JAR]
junit-4.13.2.jar
in junit/junit/4.13.2
-
[JAR]
wiremock-1.58.jar
in com/github/tomakehurst/wiremock/1.58
|
| Dependency Graph: |
Show
Less
More
|