| Group ID: |
com.testmonitor |
| Artifact ID: |
api-java-client |
| Version: |
2.0.4 |
| Last modified: |
06.12.2024 08:11 |
| Packaging: |
jar |
| Name: |
TestMonitorClient |
| Description: |
TestMonitor API client |
| URL: |
https://www.testmonitor.com/ |
|
|
| Size: |
46.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/com/testmonitor/api-java-client/2.0.4/api-java-client-2.0.4.jar |
| POM: |
Show
hide
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.testmonitor</groupId>
<artifactId>api-java-client</artifactId>
<packaging>jar</packaging>
<version>2.0.4</version>
<name>TestMonitorClient</name>
<description>TestMonitor API client</description>
<url>https://www.testmonitor.com/</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<scm>
<connection>scm:git:https://github.com/testmonitor/api-java-client.git</connection>
<developerConnection>scm:git:https://github.com/testmonitor/api-java-client.git</developerConnection>
<url>https://github.com/testmonitor/api-java-client/tree/main</url>
<tag>main</tag>
</scm>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<id>sgrootveld</id>
<name>Stephan Grootveld</name>
<email>sgrootveld@testmonitor.com</email>
<url>https://www.testmonitor.com</url>
<organization>TestMonitor</organization>
<organizationUrl>https://www.testmonitor.com/</organizationUrl>
<roles>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>tkok</id>
<name>Thijs Kok</name>
<email>tkok@testmonitor.com</email>
<url>https://www.testmonitor.com</url>
<organization>TestMonitor</organization>
<organizationUrl>https://www.testmonitor.com/</organizationUrl>
<roles>
<role>Lead Developer</role>
</roles>
</developer>
</developers>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5 -->
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.1.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20231013</version>
</dependency>
</dependencies>
<build>
<directory>${project.basedir}/target</directory>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
<finalName>${project.artifactId}-${project.version}</finalName>
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>21</source>
<target>21</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>standalone</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.1</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>1.5</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>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
<dependencies>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.15</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
|
| Maven: |
<dependency>
<groupId>com.testmonitor</groupId>
<artifactId>api-java-client</artifactId>
<version>2.0.4</version>
</dependency>
|
| Gradle: |
com.testmonitor:api-java-client:2.0.4 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
-
[JAR]
httpclient5-5.1.1.jar
in org/apache/httpcomponents/client5/httpclient5/5.1.1
-
[JAR]
json-20231013.jar
in org/json/json/20231013
|
| Dependency Graph: |
Show
Less
More
|