Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions agrirouter-sdk-java-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.agrirouter.api</groupId>
<artifactId>agrirouter-sdk-java</artifactId>
<version>3.2.0</version>
<version>3.2.1</version>
</parent>
<name>AGRIROUTER SDK JAVA - API</name>
<artifactId>agrirouter-sdk-java-api</artifactId>
Expand All @@ -24,10 +24,6 @@
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

/**
* Abstraction of the QA environment, currently no overrides because the default is QA already.
*
* @deprecated This class is deprecated and will be removed in future versions.
* The new agrirouter environment will be the default to use
*/
@Deprecated(since = "3.2.0", forRemoval = true)
public abstract class QA implements Environment {

private static final String ENV_BASE_URL = "https://agrirouter-qa.cfapps.eu10.hana.ondemand.com";
Expand Down
2 changes: 1 addition & 1 deletion agrirouter-sdk-java-convenience/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.agrirouter.api</groupId>
<artifactId>agrirouter-sdk-java</artifactId>
<version>3.2.0</version>
<version>3.2.1</version>
</parent>
<name>AGRIROUTER SDK JAVA - CONVENIENCE</name>
<artifactId>agrirouter-sdk-java-convenience</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agrirouter-sdk-java-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.agrirouter.api</groupId>
<artifactId>agrirouter-sdk-java</artifactId>
<version>3.2.0</version>
<version>3.2.1</version>
</parent>
<name>AGRIROUTER SDK JAVA - IMPL</name>
<artifactId>agrirouter-sdk-java-impl</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agrirouter-sdk-java-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>agrirouter-sdk-java</artifactId>
<groupId>com.agrirouter.api</groupId>
<version>3.2.0</version>
<version>3.2.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>AGRIROUTER SDK JAVA - TESTS</name>
Expand Down
7 changes: 1 addition & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.agrirouter.api</groupId>
<artifactId>agrirouter-sdk-java</artifactId>
<version>3.2.0</version>
<version>3.2.1</version>
<packaging>pom</packaging>

<name>AGRIROUTER SDK JAVA</name>
Expand Down Expand Up @@ -188,11 +188,6 @@
<artifactId>jersey-media-json-jackson</artifactId>
<version>3.1.3</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.16.0</version>
</dependency>

<!-- HTTP -->
<dependency>
Expand Down