File tree Expand file tree Collapse file tree
src/main/java/com/onesignal/client Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ Building the API client library requires:
1919<dependency >
2020 <groupId >com.onesignal</groupId >
2121 <artifactId >onesignal-java-client</artifactId >
22- <version >5.8.0 </version >
22+ <version >5.8.1 </version >
2323</dependency >
2424```
2525
2626### Gradle
2727
2828``` groovy
29- implementation "com.onesignal:onesignal-java-client:5.8.0 "
29+ implementation "com.onesignal:onesignal-java-client:5.8.1 "
3030```
3131
3232## Configuration
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ apply plugin: 'com.diffplug.spotless'
55apply plugin : ' com.vanniktech.maven.publish'
66
77group = ' com.onesignal'
8- version = ' 5.8.0 '
8+ version = ' 5.8.1 '
99
1010buildscript {
1111 repositories {
@@ -109,7 +109,7 @@ dependencies {
109109 implementation ' javax.ws.rs:jsr311-api:1.1.1'
110110 implementation ' javax.ws.rs:javax.ws.rs-api:2.1.1'
111111 implementation ' org.openapitools:jackson-databind-nullable:0.2.2'
112- implementation group : ' org.apache.commons' , name : ' commons-lang3' , version : ' 3.12 .0'
112+ implementation group : ' org.apache.commons' , name : ' commons-lang3' , version : ' 3.18 .0'
113113 implementation " jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version "
114114 testImplementation ' org.junit.jupiter:junit-jupiter-api:5.8.2'
115115 testImplementation ' org.mockito:mockito-core:3.12.4'
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22 settings(
33 organization := " com.onesignal" ,
44 name := " onesignal-java-client" ,
5- version := " 5.8.0 " ,
5+ version := " 5.8.1 " ,
66 scalaVersion := " 2.11.4" ,
77 scalacOptions ++= Seq (" -feature" ),
88 javacOptions in compile ++= Seq (" -Xlint:deprecation" ),
@@ -13,7 +13,7 @@ lazy val root = (project in file(".")).
1313 " com.squareup.okhttp3" % " okhttp" % " 4.9.3" ,
1414 " com.squareup.okhttp3" % " logging-interceptor" % " 4.9.3" ,
1515 " com.google.code.gson" % " gson" % " 2.9.0" ,
16- " org.apache.commons" % " commons-lang3" % " 3.12 .0" ,
16+ " org.apache.commons" % " commons-lang3" % " 3.18 .0" ,
1717 " javax.ws.rs" % " jsr311-api" % " 1.1.1" ,
1818 " javax.ws.rs" % " javax.ws.rs-api" % " 2.1.1" ,
1919 " org.openapitools" % " jackson-databind-nullable" % " 0.2.2" ,
Original file line number Diff line number Diff line change @@ -1949,6 +1949,7 @@ View the details of all of your current OneSignal apps
19491949### Example
19501950``` java
19511951// Import classes:
1952+ import java.util.List ;
19521953import com.onesignal.client.ApiClient ;
19531954import com.onesignal.client.ApiException ;
19541955import com.onesignal.client.Configuration ;
Original file line number Diff line number Diff line change 55 <artifactId >onesignal-java-client</artifactId >
66 <packaging >jar</packaging >
77 <name >onesignal-java-client</name >
8- <version >5.8.0 </version >
8+ <version >5.8.1 </version >
99 <url >https://github.com/OneSignal/onesignal-java-api</url >
1010 <description >OneSignal Java API Client</description >
1111 <scm >
328328 <swagger-core-version >1.6.5</swagger-core-version >
329329 <okhttp-version >4.9.3</okhttp-version >
330330 <gson-version >2.9.0</gson-version >
331- <commons-lang3-version >3.12 .0</commons-lang3-version >
331+ <commons-lang3-version >3.18 .0</commons-lang3-version >
332332 <jackson-databind-nullable-version >0.2.2</jackson-databind-nullable-version >
333333 <jakarta-annotation-version >1.3.5</jakarta-annotation-version >
334334 <junit-version >5.8.2</junit-version >
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ private void init() {
133133 json = new JSON ();
134134
135135 // Set default User-Agent.
136- setUserAgent ("OpenAPI-Generator/5.8.0 /java" );
136+ setUserAgent ("OpenAPI-Generator/5.8.1 /java" );
137137
138138 authentications = new HashMap <String , Authentication >();
139139 }
You can’t perform that action at this time.
0 commit comments