JSON-Taglib library not working with SDK 1.6?

I am currently working on a project that uses the json-taglib-0.4.1.jar library to perform some json communication between the front and back end.

This library works well until we ported it to Java 1.6 recently, we compiled it to 1.5.

Instead of no longer working, I read that it is not available in public repositories, which means that we cannot allow Maven2 dependencies to be managed, which would be ideal.

I really have 2 questions, has anyone successfully used this library in a Java 1.6 project? Does anyone know of a good replacement library that is really accessible through Maven repositories? That would be my favorite decision.

Thanks.

+3
source share
1 answer

I cannot answer your other questions, but you can get json-taglib 0.4.1 from the mvnsearch.org repository .

The repository URL is http://www.mvnsearch.org/maven2 , and the credentials

<groupId>json-taglib</groupId>
<artifactId>json-taglib</artifactId>
<version>0.4.1</version>
+1
source

Source: https://habr.com/ru/post/1720939/


All Articles