-
Notifications
You must be signed in to change notification settings - Fork 76
Download
Olivier Chafik edited this page Nov 8, 2022
·
7 revisions
It is advised to use Maven or sbt to manage dependencies automatically.
- Download from the Releases page
- For legacy versions, look at the old Maven repo or the old Downloads page
- Use with Maven :
<repositories>
<repository>
<id>nativelibs4java-repo</id>
<url>https://nativelibs4java.sourceforge.net/maven</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.nativelibs4java</groupId>
<artifactId>bridj</artifactId>
<version>0.7.0</version>
<!-- <version>0.8.0-SNAPSHOT</version> -->
<scope>compile</scope>
</dependency>
</dependencies>
- Use with sbt :
resolvers += Resolver.sonatypeRepo("snapshots")
libraryDependencies += "com.nativelibs4java" % "bridj" % "0.7.0"
// libraryDependencies += "com.nativelibs4java" % "bridj" % "0.8.0-SNAPSHOT"
You can try BridJ quickly through JNAerator (just select "BridJ" in the "Runtime" combobox).