Direct download for JAR file from Maven central
Currently broadjradical:instinct is released as a maven artifact, but is not updated with every fix so it is recommended to download latest distribution from this page. For users not working with Maven downloadable zip archive is available for latest version.
The downloadable distribution archive contains binary and javadoc jars, and also contains dependencies required by broadjradical:instinct. As the framework has been developed as a maven artifact it is recommended for users working with maven artifacts to use below mentioned maven configuration:
Current both SNAPSHOT and Beta release are available so user will have to include below mentioned settings if want to use SNAPSHOT version:
<repositories>
<repository>
<id>oss-repos</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependency>
<groupId>in.net.broadjradical</groupId>
<artifactId>instinct</artifactId>
<version>0.0.5-BETA</version>
</dependency>
JavaDoc jar file available in distribution and maven repository currently does not hold complete documentation but can be used to get basic information of all classes and methods available.
Note: If user has Mirror configured in maven settings.xml then the user will have to add "!oss-repos
" filter in "mirror-of" tag.
** Now the lib is available via maven central only and will not be provided as distribution on this page or else where.