File tree 5 files changed +9
-14
lines changed
5 files changed +9
-14
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add this dependency to your project's POM:
22
22
<dependency >
23
23
<groupId >com.sendinblue</groupId >
24
24
<artifactId >sib-api-v3-sdk</artifactId >
25
- <version >5.2 .0</version >
25
+ <version >5.3 .0</version >
26
26
<scope >compile</scope >
27
27
</dependency >
28
28
```
@@ -32,7 +32,7 @@ Add this dependency to your project's POM:
32
32
Add this dependency to your project's build file:
33
33
34
34
``` groovy
35
- compile "com.sendinblue:sib-api-v3-sdk:5.2 .0"
35
+ compile "com.sendinblue:sib-api-v3-sdk:5.3 .0"
36
36
```
37
37
38
38
### Others
@@ -45,7 +45,7 @@ mvn package
45
45
46
46
Then manually install the following JARs:
47
47
48
- * ` target/sib-api-v3-sdk-5.2 .0.jar `
48
+ * ` target/sib-api-v3-sdk-5.3 .0.jar `
49
49
* ` target/lib/*.jar `
50
50
51
51
## Getting Started
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apply plugin: 'idea'
2
2
apply plugin : ' eclipse'
3
3
4
4
group = ' com.sendinblue'
5
- version = ' 5.2 .0'
5
+ version = ' 5.3 .0'
6
6
7
7
buildscript {
8
8
repositories {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
2
2
settings(
3
3
organization := " com.sendinblue" ,
4
4
name := " sib-api-v3-sdk" ,
5
- version := " 5.2 .0" ,
5
+ version := " 5.3 .0" ,
6
6
scalaVersion := " 2.11.4" ,
7
7
scalacOptions ++= Seq (" -feature" ),
8
8
javacOptions in compile ++= Seq (" -Xlint:deprecation" ),
Original file line number Diff line number Diff line change 5
5
<artifactId >sib-api-v3-sdk</artifactId >
6
6
<packaging >jar</packaging >
7
7
<name >sib-api-v3-sdk</name >
8
- <version >5.2 .0</version >
8
+ <version >5.3 .0</version >
9
9
<url >https://github.com/sendinblue/APIv3-java-library</url >
10
10
<description >SendinBlue' s API v3 Java Library</description >
11
11
<scm >
75
75
<plugin >
76
76
<groupId >org.apache.maven.plugins</groupId >
77
77
<artifactId >maven-surefire-plugin</artifactId >
78
- <version >2.12 </version >
78
+ <version >3.0.0-M5 </version >
79
79
<configuration >
80
- <systemProperties >
81
- <property >
82
- <name >loggerPath</name >
83
- <value >conf/log4j.properties</value >
84
- </property >
85
- </systemProperties >
86
80
<argLine >-Xms512m -Xmx1500m</argLine >
87
81
<parallel >methods</parallel >
82
+ <threadCount >30</threadCount >
88
83
<forkMode >pertest</forkMode >
89
84
</configuration >
90
85
</plugin >
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ public class ApiClient {
55
55
private boolean debugging = false ;
56
56
private Map <String , String > defaultHeaderMap = new HashMap <String , String >();
57
57
private String tempFolderPath = null ;
58
- private String defaultUserAgent = "sendinblue_clientAPI/v5.2 .0/java" ;
58
+ private String defaultUserAgent = "sendinblue_clientAPI/v5.3 .0/java" ;
59
59
60
60
private Map <String , Authentication > authentications ;
61
61
You can’t perform that action at this time.
0 commit comments