Skip to content

Commit e06bfad

Browse files
committed
Bump version number to 1.0.3
Upgrade jackson-databind version to 2.10.1 Upgrade to compile with Java 11
1 parent 5180d4b commit e06bfad

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ There is also an example provided in Python. It can be found in [this repo](http
1010
Environment
1111
-----------
1212

13-
Language: [JDK 1.8](http://www.oracle.com/technetwork/java/javase/downloads/index.html) or later
13+
Language: [Java 11](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
1414

15-
Build Tool: [Maven 3.2+](https://maven.apache.org/download.cgi)
15+
Build Tool: [Maven 3.6+](https://maven.apache.org/download.cgi)
1616

1717
Configurations
1818
--------------
@@ -97,15 +97,15 @@ Run
9797
Release
9898
-------
9999
100-
The `org.icann.czd:czds-client` library has been published in [Maven Central Repository](https://mvnrepository.com/).
100+
The `org.icann.czd:czds-client` library has been published in [Maven Central Repository](https://mvnrepository.com/artifact/org.icann.czds/czds-client).
101101
You can include the following artifact in your project:
102102
103103
```
104104
<!-- https://mvnrepository.com/artifact/org.icann.czds/czds-client -->
105105
<dependency>
106106
<groupId>org.icann.czds</groupId>
107107
<artifactId>czds-client</artifactId>
108-
<version>1.0</version>
108+
<version>1.x.x</version>
109109
</dependency>
110110

111111
```
@@ -126,6 +126,6 @@ Other
126126
127127
Reference Implementation in Python: https://github.com/icann/czds-api-client-python
128128
129-
Java 8: http://www.oracle.com/technetwork/java/javase/downloads/index.html
129+
Java: http://www.oracle.com/technetwork/java/javase/downloads/index.html
130130
131-
Apache Maven 3: https://maven.apache.org/download.cgi
131+
Apache Maven 3: https://maven.apache.org/download.cgi

pom.xml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

77
<groupId>org.icann.czds</groupId>
88
<artifactId>czds-client</artifactId>
9-
<version>1.0.2</version>
9+
<version>1.0.3</version>
1010
<packaging>jar</packaging>
1111

1212
<name>${project.groupId}:${project.artifactId}</name>
@@ -99,8 +99,7 @@
9999
<artifactId>maven-compiler-plugin</artifactId>
100100
<version>3.8.1</version>
101101
<configuration>
102-
<source>1.8</source>
103-
<target>1.8</target>
102+
<release>11</release>
104103
</configuration>
105104
</plugin>
106105

@@ -197,4 +196,4 @@
197196
</build>
198197
</profile>
199198
</profiles>
200-
</project>
199+
</project>

0 commit comments

Comments
 (0)