File tree 5 files changed +17
-7
lines changed
src/main/java/ch/postfinance/sdk
5 files changed +17
-7
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ Add this dependency to your project's POM:
23
23
<dependency >
24
24
<groupId >ch.postfinance</groupId >
25
25
<artifactId >postfinancecheckout-java-sdk</artifactId >
26
- <version >6.1 .0</version >
26
+ <version >6.2 .0</version >
27
27
<scope >compile</scope >
28
28
</dependency >
29
29
```
@@ -33,7 +33,7 @@ Add this dependency to your project's POM:
33
33
Add this dependency to your project's build file:
34
34
35
35
``` groovy
36
- compile "ch.postfinance:postfinancecheckout-java-sdk:6.1 .0"
36
+ compile "ch.postfinance:postfinancecheckout-java-sdk:6.2 .0"
37
37
```
38
38
39
39
### Others
@@ -46,7 +46,7 @@ mvn clean package
46
46
47
47
Then manually install the following JARs:
48
48
49
- * ` target/postfinancecheckout-java-sdk-6.1 .0.jar `
49
+ * ` target/postfinancecheckout-java-sdk-6.2 .0.jar `
50
50
* ` target/lib/*.jar `
51
51
52
52
## Usage
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 = ' ch.postfinance'
5
- version = ' 6.1 .0'
5
+ version = ' 6.2 .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 := " ch.postfinance" ,
4
4
name := " postfinancecheckout-java-sdk" ,
5
- version := " 6.1 .0" ,
5
+ version := " 6.2 .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 >postfinancecheckout-java-sdk</artifactId >
6
6
<packaging >jar</packaging >
7
7
<name >postfinancecheckout-java-sdk</name >
8
- <version >6.1 .0</version >
8
+ <version >6.2 .0</version >
9
9
<url >https://postfinance.ch/en/business/products/e-commerce/postfinance-checkout-all-in-one.html</url >
10
10
<description >The SDK for simplifying the integration with PostFinance Checkout API.</description >
11
11
<scm >
22
22
</license >
23
23
</licenses >
24
24
25
+ <developers >
26
+ <developer >
27
+ <id >wallee</id >
28
+ <name >Wallee Ecosystem Team</name >
29
+
30
+ <organization >Wallee Group</organization >
31
+ <organizationUrl >https://en.wallee.com</organizationUrl >
32
+ </developer >
33
+ </developers >
34
+
25
35
<distributionManagement >
26
36
<snapshotRepository >
27
37
<id >ossrh</id >
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public void intercept(HttpRequest request) throws IOException {
34
34
35
35
private HttpHeaders getDefaultHeaders () {
36
36
HttpHeaders headers = new HttpHeaders ();
37
- headers .put ("x-meta-sdk-version" , "6.1 .0" );
37
+ headers .put ("x-meta-sdk-version" , "6.2 .0" );
38
38
headers .put ("x-meta-sdk-language" , "java" );
39
39
headers .put ("x-meta-sdk-provider" , "PostFinance Checkout" );
40
40
headers .put ("x-meta-sdk-language-version" , System .getProperty ("java.version" ));
You can’t perform that action at this time.
0 commit comments