Skip to content

Commit

Permalink
Feature/prepare release 3 1 0 (#218)
Browse files Browse the repository at this point in the history
* Update version of agrirouter SDK Java packages to 3.1.0

This update changes the version number of the agrirouter SDK Java packages in the pom.xml files. It affects the primary package agrirouter-sdk-java and its sub-packages: agrirouter-sdk-java-api, agrirouter-sdk-java-convenience, agrirouter-sdk-java-impl, and agrirouter-sdk-java-tests.

* Update dependency versions in pom.xml

In this commit, the version numbers for Gson, Protobuf, and Guava dependencies in the pom.xml file have been updated to their latest versions. This is in line with the commitment to ensure that the project uses the most recent and supported versions of these libraries.

* Remove redundant source folders in pom.xml

These changes remove 'src/main/java' and 'src/main/kotlin' from the list of sources inside pom.xml. It appears they were unneeded and potentially caused confusion or inefficiencies, hence their removal is beneficial.
  • Loading branch information
saschadoemer authored May 16, 2024
1 parent 2a0e152 commit f781eaa
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion 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.0.0</version>
<version>3.1.0</version>
</parent>
<name>AGRIROUTER SDK JAVA - API</name>
<artifactId>agrirouter-sdk-java-api</artifactId>
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.0.0</version>
<version>3.1.0</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.0.0</version>
<version>3.1.0</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.0.0</version>
<version>3.1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>AGRIROUTER SDK JAVA - TESTS</name>
Expand Down
10 changes: 4 additions & 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.0.0</version>
<version>3.1.0</version>
<packaging>pom</packaging>

<name>AGRIROUTER SDK JAVA</name>
Expand Down Expand Up @@ -174,7 +174,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
<version>2.10.1</version>
</dependency>

<!-- JERSEY -->
Expand Down Expand Up @@ -224,7 +224,7 @@
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.16.1</version>
<version>3.16.3</version>
</dependency>

<!-- KOTLIN -->
Expand All @@ -250,7 +250,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.1.1-jre</version>
<version>33.2.0-jre</version>
</dependency>

</dependencies>
Expand Down Expand Up @@ -285,8 +285,6 @@
</goals>
<configuration>
<sources>
<source>src/main/java</source>
<source>src/main/kotlin</source>
<source>src/main/generated</source>
</sources>
</configuration>
Expand Down

0 comments on commit f781eaa

Please sign in to comment.