File tree Expand file tree Collapse file tree 5 files changed +17
-7
lines changed
src/main/java/ch/postfinance/sdk Expand file tree Collapse file tree 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:
2323<dependency >
2424 <groupId >ch.postfinance</groupId >
2525 <artifactId >postfinancecheckout-java-sdk</artifactId >
26- <version >6.1 .0</version >
26+ <version >6.2 .0</version >
2727 <scope >compile</scope >
2828</dependency >
2929```
@@ -33,7 +33,7 @@ Add this dependency to your project's POM:
3333Add this dependency to your project's build file:
3434
3535``` groovy
36- compile "ch.postfinance:postfinancecheckout-java-sdk:6.1 .0"
36+ compile "ch.postfinance:postfinancecheckout-java-sdk:6.2 .0"
3737```
3838
3939### Others
@@ -46,7 +46,7 @@ mvn clean package
4646
4747Then manually install the following JARs:
4848
49- * ` target/postfinancecheckout-java-sdk-6.1 .0.jar `
49+ * ` target/postfinancecheckout-java-sdk-6.2 .0.jar `
5050* ` target/lib/*.jar `
5151
5252## Usage
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apply plugin: 'idea'
22apply plugin : ' eclipse'
33
44group = ' ch.postfinance'
5- version = ' 6.1 .0'
5+ version = ' 6.2 .0'
66
77buildscript {
88 repositories {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22 settings(
33 organization := " ch.postfinance" ,
44 name := " postfinancecheckout-java-sdk" ,
5- version := " 6.1 .0" ,
5+ version := " 6.2 .0" ,
66 scalaVersion := " 2.11.4" ,
77 scalacOptions ++= Seq (" -feature" ),
88 javacOptions in compile ++= Seq (" -Xlint:deprecation" ),
Original file line number Diff line number Diff line change 55 <artifactId >postfinancecheckout-java-sdk</artifactId >
66 <packaging >jar</packaging >
77 <name >postfinancecheckout-java-sdk</name >
8- <version >6.1 .0</version >
8+ <version >6.2 .0</version >
99 <url >https://postfinance.ch/en/business/products/e-commerce/postfinance-checkout-all-in-one.html</url >
1010 <description >The SDK for simplifying the integration with PostFinance Checkout API.</description >
1111 <scm >
2222 </license >
2323 </licenses >
2424
25+ <developers >
26+ <developer >
27+ <id >wallee</id >
28+ <name >Wallee Ecosystem Team</name >
29+ <email >ecosystem-team@wallee.com</email >
30+ <organization >Wallee Group</organization >
31+ <organizationUrl >https://en.wallee.com</organizationUrl >
32+ </developer >
33+ </developers >
34+
2535 <distributionManagement >
2636 <snapshotRepository >
2737 <id >ossrh</id >
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public void intercept(HttpRequest request) throws IOException {
3434
3535 private HttpHeaders getDefaultHeaders () {
3636 HttpHeaders headers = new HttpHeaders ();
37- headers .put ("x-meta-sdk-version" , "6.1 .0" );
37+ headers .put ("x-meta-sdk-version" , "6.2 .0" );
3838 headers .put ("x-meta-sdk-language" , "java" );
3939 headers .put ("x-meta-sdk-provider" , "PostFinance Checkout" );
4040 headers .put ("x-meta-sdk-language-version" , System .getProperty ("java.version" ));
You can’t perform that action at this time.
0 commit comments