jsi
jsi copied to clipboard
Add JSI to Maven Central
The JSI project already has a pom.xml file, but it's not available in Maven Central. Adding an extra maven repository is clunky, unreliable (if the server goes does our build is broken) and not always allowed in some company's.
Would you consider uploading the latest release to Maven Central. It's not that hard (especially because you already have a pom.xml file), just follow this guide: http://central.sonatype.org/pages/ossrh-guide.html
I have started the process of adding the JSI library to maven central; version 1.1.0 is currently available in the Sonatype snapshot repository, which should be reliable enough (see here for an example of using it: https://github.com/aled/jsi-examples/blob/master/pom.xml).
Are you able to test your application against version 1.1.0-SNAPSHOT? I could make a release of that version to maven central quite quickly.
Is JSI available on Maven central? I tried to add the following
<dependency>
<groupId>net.sourceforge.jsi</groupId>
<artifactId>jsi</artifactId>
<version>1.1.0-SNAPSHOT</version>
</dependency>
Also, I was unable to find any artifacts when I search for "jsi" using http://search.maven.org
No, there is nothing in maven central yet, only in the snapshot repository. Again, here is an example of how to include it in your project: https://github.com/aled/jsi-examples/blob/master/pom.xml
Aled.