File tree Expand file tree Collapse file tree 2 files changed +11
-12
lines changed
Expand file tree Collapse file tree 2 files changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ There is also an example provided in Python. It can be found in [this repo](http
1010Environment
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
1717Configurations
1818--------------
9797Release
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 ).
101101You 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
127127Reference 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
Original file line number Diff line number Diff line change 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 >
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
197196 </build >
198197 </profile >
199198 </profiles >
200- </project >
199+ </project >
You can’t perform that action at this time.
0 commit comments