Skip to content

Commit b976d18

Browse files
committed
Add request id to vat status
1 parent 8295e12 commit b976d18

24 files changed

+82
-53
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
### IntelliJ IDEA ###
2+
.idea
3+
*.iws
4+
*.iml
5+
*.ipr
6+
7+
### Local
8+
/target/

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

66
<groupId>pl.nip24</groupId>
77
<artifactId>nip24-client</artifactId>
8-
<version>1.3.6</version>
8+
<version>1.3.7</version>
99

1010
<name>nip24-java-client</name>
1111
<description>NIP24 Service Client for Java</description>
12-
<url>http://www.nip24.pl</url>
12+
<url>https://www.nip24.pl</url>
1313

1414
<organization>
1515
<name>NETCAT</name>
16-
<url>http://www.netcat.pl</url>
16+
<url>https://www.netcat.pl</url>
1717
</organization>
1818

1919
<licenses>
@@ -28,7 +28,7 @@
2828
<name>NETCAT</name>
2929
<email>firma@netcat.pl</email>
3030
<organization>NETCAT</organization>
31-
<organizationUrl>http://www.netcat.pl</organizationUrl>
31+
<organizationUrl>https://www.netcat.pl</organizationUrl>
3232
</developer>
3333
</developers>
3434

@@ -42,7 +42,7 @@
4242
<plugin>
4343
<groupId>org.apache.maven.plugins</groupId>
4444
<artifactId>maven-compiler-plugin</artifactId>
45-
<version>3.8.1</version>
45+
<version>3.10.1</version>
4646
<configuration>
4747
<source>${java.version}</source>
4848
<target>${java.version}</target>
@@ -51,7 +51,7 @@
5151
<plugin>
5252
<groupId>org.apache.maven.plugins</groupId>
5353
<artifactId>maven-source-plugin</artifactId>
54-
<version>3.2.0</version>
54+
<version>3.2.1</version>
5555
<executions>
5656
<execution>
5757
<id>attach-sources</id>
@@ -64,7 +64,7 @@
6464
<plugin>
6565
<groupId>org.apache.maven.plugins</groupId>
6666
<artifactId>maven-javadoc-plugin</artifactId>
67-
<version>3.1.1</version>
67+
<version>3.4.0</version>
6868
<executions>
6969
<execution>
7070
<id>attach-javadocs</id>

src/main/java/pl/nip24/client/AccountStatus.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015-2020 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2022 NETCAT (www.netcat.pl)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*
1616
* @author NETCAT <firma@netcat.pl>
17-
* @copyright 2015-2020 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2022 NETCAT (www.netcat.pl)
1818
* @license http://www.apache.org/licenses/LICENSE-2.0
1919
*/
2020

src/main/java/pl/nip24/client/AllData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015-2020 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2022 NETCAT (www.netcat.pl)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*
1616
* @author NETCAT <firma@netcat.pl>
17-
* @copyright 2015-2020 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2022 NETCAT (www.netcat.pl)
1818
* @license http://www.apache.org/licenses/LICENSE-2.0
1919
*/
2020

src/main/java/pl/nip24/client/EUVAT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015-2020 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2022 NETCAT (www.netcat.pl)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*
1616
* @author NETCAT <firma@netcat.pl>
17-
* @copyright 2015-2020 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2022 NETCAT (www.netcat.pl)
1818
* @license http://www.apache.org/licenses/LICENSE-2.0
1919
*/
2020

src/main/java/pl/nip24/client/Error.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015-2020 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2022 NETCAT (www.netcat.pl)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*
1616
* @author NETCAT <firma@netcat.pl>
17-
* @copyright 2015-2020 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2022 NETCAT (www.netcat.pl)
1818
* @license http://www.apache.org/licenses/LICENSE-2.0
1919
*/
2020

src/main/java/pl/nip24/client/IBAN.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015-2020 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2022 NETCAT (www.netcat.pl)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*
1616
* @author NETCAT <firma@netcat.pl>
17-
* @copyright 2015-2020 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2022 NETCAT (www.netcat.pl)
1818
* @license http://www.apache.org/licenses/LICENSE-2.0
1919
*/
2020

src/main/java/pl/nip24/client/IBANStatus.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015-2020 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2022 NETCAT (www.netcat.pl)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*
1616
* @author NETCAT <firma@netcat.pl>
17-
* @copyright 2015-2020 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2022 NETCAT (www.netcat.pl)
1818
* @license http://www.apache.org/licenses/LICENSE-2.0
1919
*/
2020

src/main/java/pl/nip24/client/InvoiceData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015-2020 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2022 NETCAT (www.netcat.pl)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*
1616
* @author NETCAT <firma@netcat.pl>
17-
* @copyright 2015-2020 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2022 NETCAT (www.netcat.pl)
1818
* @license http://www.apache.org/licenses/LICENSE-2.0
1919
*/
2020

src/main/java/pl/nip24/client/KRS.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015-2020 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2022 NETCAT (www.netcat.pl)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*
1616
* @author NETCAT <firma@netcat.pl>
17-
* @copyright 2015-2020 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2022 NETCAT (www.netcat.pl)
1818
* @license http://www.apache.org/licenses/LICENSE-2.0
1919
*/
2020

0 commit comments

Comments
 (0)