The jsapar.tigris.org site seems to be very different; I just cannot find a way to download the jsapar jar; is also not available in any of the maven repositories. any help for the download link will help. Thanks!
Asked
Active
Viewed 163 times
1
-
Thank you for pointing that out. I added a link to the front page to make it more obvious. Any day I will add it to a maven repository as well, but for the time beeing you have to install it your self in your local repository. There is a maven pom file within the project so you should be able to build it with maven locally. – stenix May 09 '14 at 13:56
2 Answers
1
It looks to me like they are posting releases in the "Documents and Files" section of the project. See here:
http://jsapar.tigris.org/servlets/ProjectDocumentList?folderID=11435
Looks like they offer a zip with the JAR and JavaDoc included and another with the source code.
Update 2019: binaries are found in the Maven repository automatically. For code, you can visit their website at GitHub at the following address:

user504342
- 945
- 2
- 16
- 36

Mark Phippard
- 10,329
- 2
- 32
- 42
0
As of 1.5.0 version of the library has now finally been published to the maven central repository. http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.tigris.jsapar%22%20AND%20a%3A%22jsapar%22
<dependency>
<groupId>org.tigris.jsapar</groupId>
<artifactId>jsapar</artifactId>
<version>1.5.0</version>
</dependency>
EDIT: The project has moved from tigris.org to github.com, see their website here: https://github.com/org-tigris-jsapar/jsapar

user504342
- 945
- 2
- 16
- 36

stenix
- 3,068
- 2
- 19
- 30