Skip to content

Commit

Permalink
Java 7 is no longer supported in Maven Central Repository
Browse files Browse the repository at this point in the history
  • Loading branch information
OndraFiedler committed Dec 20, 2024
1 parent ed7a1c1 commit 7c906c2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The client is available in the [Maven Central Repository](https://mvnrepository.
<dependency>
<groupId>com.recombee</groupId>
<artifactId>api-client</artifactId>
<version>4.1.1</version>
<version>4.1.2</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.recombee</groupId>
<artifactId>api-client</artifactId>
<version>4.1.0</version>
<version>4.1.2</version>
<name>Recombee API Client</name>
<description>A client library for easy use of the Recombee recommendation API</description>
<url>http://recombee.com</url>
Expand Down Expand Up @@ -85,8 +85,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/recombee/api_client/RecombeeClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public class RecombeeClient {

final int BATCH_MAX_SIZE = 10000; //Maximal number of requests within one batch request

final String USER_AGENT = "recombee-java-api-client/4.1.1";
final String USER_AGENT = "recombee-java-api-client/4.1.2";

private final OkHttpClient httpClient = new OkHttpClient();

Expand Down

0 comments on commit 7c906c2

Please sign in to comment.