Skip to content

Commit

Permalink
Release 7.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wallee-deployment-user committed Jan 23, 2024
1 parent f195697 commit 5e04af2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.wallee</groupId>
<artifactId>wallee-java-sdk</artifactId>
<version>7.1.0</version>
<version>7.2.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -33,7 +33,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "com.wallee:wallee-java-sdk:7.1.0"
compile "com.wallee:wallee-java-sdk:7.2.0"
```

### Others
Expand All @@ -46,7 +46,7 @@ mvn clean package

Then manually install the following JARs:

* `target/wallee-java-sdk-7.1.0.jar`
* `target/wallee-java-sdk-7.2.0.jar`
* `target/lib/*.jar`

## Usage
Expand Down
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'com.wallee'
version = '7.1.0'
version = '7.2.0'

buildscript {
repositories {
Expand Down Expand Up @@ -98,9 +98,9 @@ ext {
jackson_version = "2.14.1"
google_api_client_version = "2.2.0"
guava_version = "32.1.2-jre"
jodatime_version = "2.9.9"
junit_version = "4.13.2"
httpclient_version = "4.5.14"
bouncycastle_version = "1.77"
}

dependencies {
Expand All @@ -117,5 +117,6 @@ dependencies {
exclude group: 'commons-codec', module: 'commons-codec'
}
compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
compile "org.bouncycastle:bcprov-jdk18on:$bouncycastle_version"
testCompile "junit:junit:$junit_version"
}
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "com.wallee",
name := "wallee-java-sdk",
version := "7.1.0",
version := "7.2.0",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>wallee-java-sdk</artifactId>
<packaging>jar</packaging>
<name>wallee-java-sdk</name>
<version>7.1.0</version>
<version>7.2.0</version>
<url>https://www.wallee.com</url>
<description>The SDK for simplifying the integration with wallee API.</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/wallee/sdk/DefaultHeaders.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void intercept(HttpRequest request) throws IOException {

private HttpHeaders getDefaultHeaders() {
HttpHeaders headers = new HttpHeaders();
headers.put("x-meta-sdk-version", "7.1.0");
headers.put("x-meta-sdk-version", "7.2.0");
headers.put("x-meta-sdk-language", "java");
headers.put("x-meta-sdk-provider", "wallee");
headers.put("x-meta-sdk-language-version", System.getProperty("java.version"));
Expand Down

0 comments on commit 5e04af2

Please sign in to comment.