You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Andres @aalmiray , the introduction of the latest json-lib in readme is as follows:
in gradle:
dependencies {
compile 'org.kordamp.json:json-lib:3.0.1' // should change to: json-lib-core
}
in maven:
<dependency>
<groupId>org.kordamp.json</groupId>
<artifactId>json-lib</artifactId> // also should change to: json-lib-core
<version>3.0.1</version>
</dependency>
Actually, the real name of the json-lib jar file you uploaded to maven2 repo is json-lib-core : http://repo.maven.apache.org/maven2/org/kordamp/json/json-lib-core/3.0.1/
Only by changing the artifactId to json-lib-core can we download the jar file successfully. Or change the name of jar file to json-lib.
The text was updated successfully, but these errors were encountered:
Hi Andres @aalmiray , the introduction of the latest json-lib in readme is as follows:
in gradle:
in maven:
Actually, the real name of the json-lib jar file you uploaded to maven2 repo is
json-lib-core
: http://repo.maven.apache.org/maven2/org/kordamp/json/json-lib-core/3.0.1/Only by changing the artifactId to
json-lib-core
can we download the jar file successfully. Or change the name of jar file tojson-lib
.The text was updated successfully, but these errors were encountered: