Skip to content

Commit cea3343

Browse files
authored
Merge pull request #34 from sendinblue/v5.3.0
AP-1851: maven surfire plugin version upgrade and removal of log4j for logging
2 parents c4f97c6 + 4ddfe59 commit cea3343

File tree

5 files changed

+9
-14
lines changed

5 files changed

+9
-14
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add this dependency to your project's POM:
2222
<dependency>
2323
<groupId>com.sendinblue</groupId>
2424
<artifactId>sib-api-v3-sdk</artifactId>
25-
<version>5.2.0</version>
25+
<version>5.3.0</version>
2626
<scope>compile</scope>
2727
</dependency>
2828
```
@@ -32,7 +32,7 @@ Add this dependency to your project's POM:
3232
Add this dependency to your project's build file:
3333

3434
```groovy
35-
compile "com.sendinblue:sib-api-v3-sdk:5.2.0"
35+
compile "com.sendinblue:sib-api-v3-sdk:5.3.0"
3636
```
3737

3838
### Others
@@ -45,7 +45,7 @@ mvn package
4545

4646
Then manually install the following JARs:
4747

48-
* `target/sib-api-v3-sdk-5.2.0.jar`
48+
* `target/sib-api-v3-sdk-5.3.0.jar`
4949
* `target/lib/*.jar`
5050

5151
## Getting Started

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'idea'
22
apply plugin: 'eclipse'
33

44
group = 'com.sendinblue'
5-
version = '5.2.0'
5+
version = '5.3.0'
66

77
buildscript {
88
repositories {

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.sendinblue",
44
name := "sib-api-v3-sdk",
5-
version := "5.2.0",
5+
version := "5.3.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

pom.xml

+3-8
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>sib-api-v3-sdk</artifactId>
66
<packaging>jar</packaging>
77
<name>sib-api-v3-sdk</name>
8-
<version>5.2.0</version>
8+
<version>5.3.0</version>
99
<url>https://github.com/sendinblue/APIv3-java-library</url>
1010
<description>SendinBlue&#39;s API v3 Java Library</description>
1111
<scm>
@@ -75,16 +75,11 @@
7575
<plugin>
7676
<groupId>org.apache.maven.plugins</groupId>
7777
<artifactId>maven-surefire-plugin</artifactId>
78-
<version>2.12</version>
78+
<version>3.0.0-M5</version>
7979
<configuration>
80-
<systemProperties>
81-
<property>
82-
<name>loggerPath</name>
83-
<value>conf/log4j.properties</value>
84-
</property>
85-
</systemProperties>
8680
<argLine>-Xms512m -Xmx1500m</argLine>
8781
<parallel>methods</parallel>
82+
<threadCount>30</threadCount>
8883
<forkMode>pertest</forkMode>
8984
</configuration>
9085
</plugin>

src/main/java/sendinblue/ApiClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public class ApiClient {
5555
private boolean debugging = false;
5656
private Map<String, String> defaultHeaderMap = new HashMap<String, String>();
5757
private String tempFolderPath = null;
58-
private String defaultUserAgent = "sendinblue_clientAPI/v5.2.0/java";
58+
private String defaultUserAgent = "sendinblue_clientAPI/v5.3.0/java";
5959

6060
private Map<String, Authentication> authentications;
6161

0 commit comments

Comments
 (0)