Skip to content

Commit c42045b

Browse files
committed
Add function for KRS registry
1 parent 78320ef commit c42045b

File tree

123 files changed

+16663
-69
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+16663
-69
lines changed

pom.xml

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

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

1010
<name>nip24-java-client</name>
1111
<description>NIP24 Service Client for Java</description>
@@ -31,10 +31,24 @@
3131
<organizationUrl>https://www.netcat.pl</organizationUrl>
3232
</developer>
3333
</developers>
34+
35+
<distributionManagement>
36+
<repository>
37+
<id>nip24</id>
38+
<url>https://www.nip24.pl/maven/releases</url>
39+
</repository>
40+
<snapshotRepository>
41+
<id>nip24</id>
42+
<url>https://www.nip24.pl/maven/snapshots</url>
43+
</snapshotRepository>
44+
</distributionManagement>
3445

3546
<properties>
36-
<java.version>1.8</java.version>
47+
<java.version>11</java.version>
3748
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
49+
50+
<swagger.version>2.2.8</swagger.version>
51+
<jackson.version>2.14.2</jackson.version>
3852
</properties>
3953

4054
<build>
@@ -87,5 +101,26 @@
87101
<artifactId>jaxb-api</artifactId>
88102
<version>2.3.1</version>
89103
</dependency>
104+
105+
<!-- https://mvnrepository.com/artifact/io.swagger.core.v3/swagger-annotations -->
106+
<dependency>
107+
<groupId>io.swagger.core.v3</groupId>
108+
<artifactId>swagger-annotations</artifactId>
109+
<version>${swagger.version}</version>
110+
</dependency>
111+
112+
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
113+
<dependency>
114+
<groupId>com.fasterxml.jackson.core</groupId>
115+
<artifactId>jackson-databind</artifactId>
116+
<version>${jackson.version}</version>
117+
</dependency>
118+
119+
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310 -->
120+
<dependency>
121+
<groupId>com.fasterxml.jackson.datatype</groupId>
122+
<artifactId>jackson-datatype-jsr310</artifactId>
123+
<version>${jackson.version}</version>
124+
</dependency>
90125
</dependencies>
91126
</project>

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-2022 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2023 NETCAT (www.netcat.pl)
1818
* @license http://www.apache.org/licenses/LICENSE-2.0
1919
*/
2020

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2015-2022 NETCAT (www.netcat.pl)
2+
* Copyright 2015-2023 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-2022 NETCAT (www.netcat.pl)
17+
* @copyright 2015-2023 NETCAT (www.netcat.pl)
1818
* @license http://www.apache.org/licenses/LICENSE-2.0
1919
*/
2020

0 commit comments

Comments
 (0)