File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
src/main/java/com/recombee/api_client Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ The client is available in the [Maven Central Repository](https://mvnrepository.
1313 <dependency >
1414 <groupId >com.recombee</groupId >
1515 <artifactId >api-client</artifactId >
16- <version >2.2.1 </version >
16+ <version >2.2.2 </version >
1717 </dependency >
1818```
1919
@@ -38,7 +38,7 @@ import java.util.Random;
3838public class BasicExample {
3939 public static void main (String [] args ) {
4040
41- RecombeeClient client = new RecombeeClient (" --my-database-id--" , " --my-secret -token--" );
41+ RecombeeClient client = new RecombeeClient (" --my-database-id--" , " --db-private -token--" );
4242 try {
4343 client. send(new ResetDatabase ());
4444 final int NUM = 100 ;
@@ -90,7 +90,7 @@ import java.util.Random;
9090public class ItemPropertiesExample {
9191 public static void main (String [] args ) {
9292
93- RecombeeClient client = new RecombeeClient (" --my-database-id--" , " --my-secret -token--" );
93+ RecombeeClient client = new RecombeeClient (" --my-database-id--" , " --db-private -token--" );
9494
9595 try {
9696 client. send(new ResetDatabase ()); // Clear everything from the database
Original file line number Diff line number Diff line change 66
77 <groupId >com.recombee</groupId >
88 <artifactId >api-client</artifactId >
9- <version >2.2.1 </version >
9+ <version >2.2.2 </version >
1010 <name >Recombee API Client</name >
1111 <description >A client library for easy use of the Recombee recommendation API</description >
1212 <url >http://recombee.com</url >
4545 <dependency >
4646 <groupId >com.fasterxml.jackson.core</groupId >
4747 <artifactId >jackson-core</artifactId >
48- <version >2.9.7 </version >
48+ <version >2.9.8 </version >
4949 </dependency >
5050 <dependency >
5151 <groupId >com.fasterxml.jackson.core</groupId >
5252 <artifactId >jackson-databind</artifactId >
53- <version >2.9.7 </version >
53+ <version >2.9.8 </version >
5454 </dependency >
5555 <dependency >
5656 <groupId >junit</groupId >
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ public class RecombeeClient {
8585
8686 final int BATCH_MAX_SIZE = 10000 ; //Maximal number of requests within one batch request
8787
88- final String USER_AGENT = "recombee-java-api-client/2.2.1 " ;
88+ final String USER_AGENT = "recombee-java-api-client/2.2.2 " ;
8989
9090 private final OkHttpClient httpClient = new OkHttpClient ();
9191
You can’t perform that action at this time.
0 commit comments