Skip to content

Commit e2dfa10

Browse files
authored
Merge pull request #288 from XeroAPI/add_budgets_fix_reports_and_add_new_docs
Budgets / reports / new docs
2 parents c724692 + 506dbb3 commit e2dfa10

30 files changed

+68757
-786
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,4 @@ dist/
139139
nbdist/
140140
.nb-gradle/
141141
*.log
142+
.build_notes.md

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ class TryCatchExample {
654654
try {
655655
// Create contact with the same name as an existing contact will generate a validation error.
656656
Contact contact = new Contact();
657-
contact.setName("Sidney Maestre");
657+
contact.setName("Test user");
658658
Contacts createContact1 = accountingApi.createContact(accessToken, xeroTenantId, contact);
659659
Contacts createContact2 = accountingApi.createContact(accessToken, xeroTenantId, contact);
660660
} catch (XeroBadRequestException e) {

docs/v4/accounting/index.html

+874-485
Large diffs are not rendered by default.

docs/v4/assets/index.html

+4,002
Large diffs are not rendered by default.

docs/v4/files/index.html

+5,442
Large diffs are not rendered by default.

docs/v4/payroll-au/index.html

+9,568
Large diffs are not rendered by default.

docs/v4/payroll-nz/index.html

+15,925
Large diffs are not rendered by default.

docs/v4/payroll-uk/index.html

+15,827
Large diffs are not rendered by default.

docs/v4/projects/index.html

+15,925
Large diffs are not rendered by default.

pom.xml

+12-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>xero-java</artifactId>
66
<packaging>jar</packaging>
77
<name>xero-java</name>
8-
<version>4.10.0</version>
8+
<version>4.11.0</version>
99
<url>https://github.com/XeroAPI/Xero-Java</url>
1010
<description>This is the official Java SDK for Xero API</description>
1111
<licenses>
@@ -248,14 +248,20 @@
248248
<plugin>
249249
<groupId>org.apache.maven.plugins</groupId>
250250
<artifactId>maven-gpg-plugin</artifactId>
251-
<version>1.5</version>
251+
<version>1.6</version>
252252
<executions>
253253
<execution>
254-
<id>sign-artifacts</id>
255-
<phase>verify</phase>
256-
<goals>
254+
<id>sign-artifacts</id>
255+
<phase>verify</phase>
256+
<goals>
257257
<goal>sign</goal>
258-
</goals>
258+
</goals>
259+
<configuration>
260+
<gpgArguments>
261+
<arg>--pinentry-mode</arg>
262+
<arg>loopback</arg>
263+
</gpgArguments>
264+
</configuration>
259265
</execution>
260266
</executions>
261267
</plugin>

0 commit comments

Comments
 (0)