Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidb/jme3_lib2repo
install jme3 (jmonkeyengine 3.0) into local maven repository
https://github.com/davidb/jme3_lib2repo
Last synced: about 2 months ago
JSON representation
install jme3 (jmonkeyengine 3.0) into local maven repository
- Host: GitHub
- URL: https://github.com/davidb/jme3_lib2repo
- Owner: davidB
- Created: 2014-05-18T19:17:56.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-25T23:16:33.000Z (over 10 years ago)
- Last Synced: 2024-05-01T22:10:00.695Z (8 months ago)
- Language: Groovy
- Size: 258 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A project to download (http) and install in local maven repository jme3 (java monkey engine 3.0) and some jme3 contributions (lemur).
Then the libs can be used by project using maven, gradle, ivy, sbt, ... to manage dependencies.
Contributions (PR) are welcomes (it's my first gradle project).
# Instructions
## to install jme3
```
# require java available in PATH
cd jme3 && ../gradlew downloadJme unzipJme publishToMavenLocal && cd ..
```Then artifact (jar) is available :
```
group : com.jme3
version: 3.0.10
```
Change `jmeRev` (and `jmeVersion`) in jme3/build.gradle to use an other download than 2014-06-12 from http://updates.jmonkeyengine.org/stable/3.0/engine/ .## to install lemur, zay-es
```
cd zay-es && ../gradlew install && cd ..
cd lemur && ../gradlew install && cd ..
```# Limitations
* I didn't port every libs.
* *-sources.jar and *-javadoc.jar are not installed.
* not battle testedPull Request welcome.