trakt-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.uwetrottmann.trakt5</groupId>
<artifactId>trakt-java</artifactId>
<version>6.20.0</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.uwetrottmann.trakt5</groupId>
<artifactId>trakt-java</artifactId>
<packaging>jar</packaging>
<version>6.20.0</version>
<name>trakt-java</name>
<description>trakt-java is a retrofit2 based wrapper around the Trakt API v2.</description>
<url>https://github.com/UweTrottmann/trakt-java/</url>
<inceptionYear>2013</inceptionYear>
<properties>
<versions.okhttp>4.12.0</versions.okhttp>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<licenses>
<license>
<name>Apache 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Uwe Trottmann</name>
<url>https://www.uwetrottmann.com</url>
</developer>
</developers>
<scm>
<url>https://github.com/UweTrottmann/trakt-java</url>
<connection>scm:git:git://github.com/UweTrottmann/trakt-java.git</connection>
<developerConnection>scm:git:git@github.com:UweTrottmann/trakt-java.git</developerConnection>
<tag>v6.20.0</tag>
</scm>
<dependencies>
<!-- https://github.com/square/retrofit/blob/master/CHANGELOG.md -->
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>retrofit</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>converter-gson</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${versions.okhttp}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.11.0</version>
</dependency>
<!-- https://www.threeten.org/threetenbp/changes-report.html -->
<dependency>
<groupId>org.threeten</groupId>
<artifactId>threetenbp</artifactId>
<version>1.6.9</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<!-- https://assertj.github.io/doc/#assertj-core-release-notes -->
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.27.7</version>
<scope>test</scope>
</dependency>
<!-- logging-interceptor version should match okhttp dependency -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
<version>${versions.okhttp}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- https://github.com/apache/maven-wrapper/releases -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-wrapper-plugin</artifactId>
<version>3.3.4</version>
</plugin>
<!-- https://github.com/apache/maven-enforcer/releases -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.6.2</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.8.0</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<!-- https://github.com/apache/maven-compiler-plugin/releases -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version>
<configuration>
<release>8</release>
</configuration>
</plugin>
<!-- Also build javadoc to catch errors early -->
<!-- https://github.com/apache/maven-javadoc-plugin/releases -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.12.0</version>
<configuration>
<source>8</source>
<!-- Disable checks for missing Javadoc comments -->
<doclint>all,-missing</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Also install sources for non-release builds (to get API docs in IDEs) -->
<!-- https://github.com/apache/maven-source-plugin/releases -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- https://github.com/apache/maven-release/releases -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<arguments>-Dmaven.test.skip=true</arguments>
<localCheckout>true</localCheckout>
<pushChanges>false</pushChanges>
<preparationProfiles>release,heyuwe-sign</preparationProfiles>
<releaseProfiles>release,heyuwe-sign</releaseProfiles>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
<!-- https://github.com/apache/maven-surefire/releases -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.4</version>
</plugin>
<!-- https://github.com/mojohaus/versions/releases -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.21.0</version>
</plugin>
<!-- https://central.sonatype.org/publish/publish-portal-maven/#release-notes -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>uwe-central</publishingServerId>
<autoPublish>true</autoPublish>
<!-- Waiting until "published" takes minutes, just wait for validation -->
<waitUntil>validated</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- https://github.com/apache/maven-gpg-plugin/releases -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>