Skip to content

Commit 8abedb0

Browse files
committed
bump version to 2.3.18
1 parent ca68c06 commit 8abedb0

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Xero-Java
22

3-
[![Maven Central](https://img.shields.io/badge/Maven%20Central-2.3.17-green.svg)](https://search.maven.org/artifact/com.github.xeroapi/xero-java/2.3.17/jar)
3+
[![Maven Central](https://img.shields.io/badge/Maven%20Central-2.3.18-green.svg)](https://search.maven.org/artifact/com.github.xeroapi/xero-java/2.3.18/jar)
44

55
This is the official Java SDK for Xero's API. It supports accounting, fixed asset and bank feed API endpoints. All third party libraries dependencies managed with Maven.
66

@@ -219,7 +219,7 @@ try (FileInputStream privateKeyStream = new FileInputStream(config.getPathToPriv
219219
```
220220

221221
## Logging
222-
The SDK uses log4j2. To configure, add a log4j.properties file to the Resources directory.
222+
The SDK uses [SLF4J](http://www.slf4j.org/index.html) that allows you to plug in the logging library of your choice at deployment time. This[blog post explains how to add log4j2](https://www.baeldung.com/slf4j-with-log4j2-logback) for logging. To configure, add a log4j.properties file to the Resources directory.
223223

224224

225225
## How to use the Xero-Java SDK
@@ -658,7 +658,6 @@ Example config.json with optional keystore attributes
658658
```
659659

660660

661-
662661
## Acknowledgement
663662

664663
Special thanks to [Connectifier](https://github.com/connectifier) and [Ben Mccann](https://github.com/benmccann). Marshalling and Unmarshalling in XeroClient was derived and extended from [Xero-Java-Client](https://github.com/connectifier/xero-java-client)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.xeroapi</groupId>
55
<artifactId>xero-java</artifactId>
66
<packaging>jar</packaging>
7-
<version>2.3.17</version>
7+
<version>2.3.18</version>
88
<name>Xero-Java SDK</name>
99
<description>This is the official Java SDK for Xero API</description>
1010
<url>https://github.com/XeroAPI/Xero-Java</url>

src/main/java/com/xero/api/JsonConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
public class JsonConfig implements Config {
1717

18-
private String SDK_VERSION = "2.3.17";
18+
private String SDK_VERSION = "2.3.18";
1919
private String APP_TYPE = "Public";
2020
private String USER_AGENT = "Xero-Java-SDK";
2121
private String ACCEPT = "application/xml";

0 commit comments

Comments
 (0)