Skip to content

Commit 00ff690

Browse files
authored
Merge pull request #1 from Governikus/identification-report-impl-java-2.0.0
Release 2.0.0
2 parents ab9db97 + 338b4d9 commit 00ff690

15 files changed

Lines changed: 604 additions & 559 deletions

File tree

.gitattributes

Lines changed: 0 additions & 4 deletions
This file was deleted.

.gitignore

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
1-
.hg
2-
.hgtags
1+
target/
2+
*Jenkinsfile*
3+
.hg/
34
.hgignore
4-
target
5-
.classpath
6-
.settings
7-
.project
5+
.hgtags
6+
/helm/
7+
commitToGit.py
8+
9+
10+
# IntelliJ project files
811
*.iml
9-
.idea
10-
.cache
12+
*.iws
13+
*.ipr
14+
.idea/
1115

12-
Jenkinsfile
13-
Jenkinsfile-rb
14-
Jenkinsfile-release
16+
*/_build
1517

18+
# direnv for linux users
19+
.envrc

README.MD

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,18 @@ The supported `subjectRef`-types can be manually extended without changing the A
2525

2626
---
2727

28-
**This project requires JDK 8 or higher**
28+
**This project requires JDK 17 or higher**
2929

3030
Please note that some Elliptic Curve algorithms will require at least JDK 11.
3131

32-
```xml
32+
The library is available on maven central, just include it in your project like so:
3333

34-
<repositories>
35-
<repository>
36-
<id>nexus-ext-governikus</id>
37-
<url>https://nexus-ext.governikus.de/nexus/content/groups/public/</url>
38-
</repository>
39-
</repositories>
34+
```xml
4035

4136
<dependency>
42-
<groupId>de.governikus</groupId>
43-
<artifactId>identification-report-impl-java</artifactId>
44-
<version>${project.version}</version>
37+
<groupId>de.governikus</groupId>
38+
<artifactId>identification-report-impl-java</artifactId>
39+
<version>2.0.0</version>
4540
</dependency>
4641
```
4742

@@ -157,7 +152,6 @@ IdentificationReport<EidCardPersonRef> identificationReport =
157152
.documentReferences(documentReferenceList)
158153
.build();
159154
boolean isValid = identificationReport.validate();
160-
OutputUnit outputUnit = identificationReport.getValidationResult();
161155
```
162156

163157
### Parse from String

0 commit comments

Comments
 (0)