Skip to content

Commit d022074

Browse files
Release 2.2.28
1 parent cd0cae6 commit d022074

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Add this dependency to your project's POM:
2323
<dependency>
2424
<groupId>com.postfinancecheckout</groupId>
2525
<artifactId>postfinancecheckout-java-sdk</artifactId>
26-
<version>2.2.27</version>
26+
<version>2.2.28</version>
2727
<scope>compile</scope>
2828
</dependency>
2929
```
@@ -33,7 +33,7 @@ Add this dependency to your project's POM:
3333
Add this dependency to your project's build file:
3434

3535
```groovy
36-
compile "com.postfinancecheckout:postfinancecheckout-java-sdk:2.2.27"
36+
compile "com.postfinancecheckout:postfinancecheckout-java-sdk:2.2.28"
3737
```
3838

3939
### Others
@@ -46,7 +46,7 @@ mvn clean package
4646

4747
Then manually install the following JARs:
4848

49-
* `target/postfinancecheckout-java-sdk-2.2.27.jar`
49+
* `target/postfinancecheckout-java-sdk-2.2.28.jar`
5050
* `target/lib/*.jar`
5151

5252
## Usage

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'idea'
22
apply plugin: 'eclipse'
33

44
group = 'com.postfinancecheckout'
5-
version = '2.2.27'
5+
version = '2.2.28'
66

77
buildscript {
88
repositories {
@@ -95,11 +95,11 @@ if(hasProperty('target') && target == 'android') {
9595

9696
ext {
9797
swagger_annotations_version = "1.5.17"
98-
jackson_version = "2.10.1"
98+
jackson_version = "2.12.2"
9999
google_api_client_version = "1.23.0"
100100
jersey_common_version = "2.29.1"
101101
jodatime_version = "2.9.9"
102-
junit_version = "4.13.1"
102+
junit_version = "4.13.2"
103103
}
104104

105105
dependencies {

build.sbt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.postfinancecheckout",
44
name := "postfinancecheckout-java-sdk",
5-
version := "2.2.27",
5+
version := "2.2.28",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),
@@ -12,11 +12,11 @@ lazy val root = (project in file(".")).
1212
"io.swagger" % "swagger-annotations" % "1.5.17",
1313
"com.google.api-client" % "google-api-client" % "1.23.0",
1414
"org.glassfish.jersey.core" % "jersey-common" % "2.29.1",
15-
"com.fasterxml.jackson.core" % "jackson-core" % "2.10.1" % "compile",
16-
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.1" % "compile",
17-
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.1" % "compile",
18-
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.10.1" % "compile",
19-
"junit" % "junit" % "4.13.1" % "test",
15+
"com.fasterxml.jackson.core" % "jackson-core" % "2.12.2" % "compile",
16+
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.12.2" % "compile",
17+
"com.fasterxml.jackson.core" % "jackson-databind" % "2.12.2" % "compile",
18+
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.12.2" % "compile",
19+
"junit" % "junit" % "4.13.2" % "test",
2020
"com.novocode" % "junit-interface" % "0.10" % "test"
2121
)
2222
)

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>postfinancecheckout-java-sdk</artifactId>
66
<packaging>jar</packaging>
77
<name>postfinancecheckout-java-sdk</name>
8-
<version>2.2.27</version>
8+
<version>2.2.28</version>
99
<url>https://www.postfinance.ch/checkout</url>
1010
<description>The SDK for simplifying the integration with PostFinance Checkout API.</description>
1111
<scm>
@@ -306,8 +306,8 @@
306306
<swagger-annotations-version>1.5.17</swagger-annotations-version>
307307
<google-api-client-version>1.23.0</google-api-client-version>
308308
<jersey-common-version>2.29.1</jersey-common-version>
309-
<jackson-version>2.10.1</jackson-version>
309+
<jackson-version>2.12.2</jackson-version>
310310
<maven-plugin-version>1.0.0</maven-plugin-version>
311-
<junit-version>4.13.1</junit-version>
311+
<junit-version>4.13.2</junit-version>
312312
</properties>
313313
</project>

0 commit comments

Comments
 (0)