| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Java JNI binding for mujoco physics system
This library supports
An example of loading a MuJoCo model and display in JavaFX 3d:
https://github.com/madhephaestus/MuJoCoTest/releases
Examples are designed to run in Bowler Studio
MuJoCo-Java is published on Maven Central via Sonatype.
Hosting is in:
https://oss.sonatype.org/content/repositories/staging/com/neuronrobotics/mujoco-java/
Maven:
<dependency> <groupId>com.neuronrobotics</groupId> <artifactId>mujoco-java</artifactId> <version>3.1.1-pre.1</version> <type>module</type> </dependency>
Gradle
repositories {
maven { url 'https://oss.sonatype.org/content/repositories/staging/' }
}
dependencies {
implementation group: 'com.neuronrobotics', name: 'mujoco-java', version: '3.1.1-pre.1'
}
installing VC++ redist from:
https://www.microsoft.com/en-gb/download/details.aspx?id=48145
Windows bash buiild-windows.sh
Linux bash build-linux.sh
Mac x86 bash build-mac.sh
Mac arm64 bash build-mac-m1.sh
Export your gpg private key from the system that you have created it.
Set up GitHub Actions secrets
Add Maven Credentials
Create a GitHub Actions step to install the gpg secret key
- id: install-secret-key
name: Install gpg secret key
run: |
cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | gpg --batch --import
gpg --list-secret-keys --keyid-format LONG| Back | FazBrowse Home | New Git URL |