Migrate to jlibloader loadable jni libraries

This commit is contained in:
2014-11-29 14:10:39 +00:00
parent ff805575c9
commit f90056701c
4 changed files with 41 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<projectDescription> <projectDescription>
<name>java.base</name> <name>base</name>
<comment></comment> <comment></comment>
<projects> <projects>
</projects> </projects>

View File

@@ -1,29 +1,59 @@
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
task wrapper(type: Wrapper) {
gradleVersion = '2.2'
}
repositories { repositories {
maven {
url 'https://github.com/Boukefalos/mimis/raw/mvn-repo/'
}
maven { maven {
url 'https://github.com/Boukefalos/wiigee/raw/mvn-repo/' url 'https://github.com/Boukefalos/wiigee/raw/mvn-repo/'
} }
maven {
url 'https://github.com/Boukefalos/jlibcom/raw/mvn-repo/'
}
maven { maven {
url 'https://github.com/Boukefalos/jlibitunes/raw/mvn-repo/' url 'https://github.com/Boukefalos/jlibitunes/raw/mvn-repo/'
} }
maven {
url 'https://github.com/Boukefalos/jlibloader/raw/mvn-repo/'
}
maven {
url 'https://github.com/Boukefalos/jlibwiiuse/raw/mvn-repo/'
}
maven {
url 'https://github.com/Boukefalos/libwiiuse/raw/mvn-repo/'
}
maven {
url 'https://github.com/Boukefalos/jlibintellitype/raw/mvn-repo/'
}
maven {
url 'https://github.com/Boukefalos/jlibxinput/raw/mvn-repo/'
}
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
compile project(':base') compile project(':base')
compile 'org.wiigee:wiigee:1.5.6' compile 'com.github.boukefalos:jlibmimis:0.1'
compile 'com.dt:jlibitunes:0.3' compile 'com.github.boukefalos:jlibitunes:0.3'
compile 'com.github.boukefalos:jlibwiiuse:0.12'
compile files('lib/jxinput.jar') compile 'com.github.boukefalos:jlibintellitype:1.3.9'
compile fileTree(dir: 'lib', include: '*.jar') compile 'com.github.boukefalos:jlibxinput:1.0'
compile 'commons-collections:commons-collections:3.+' compile 'commons-collections:commons-collections:3.+'
compile 'org.slf4j:slf4j-api:1.+' compile 'org.slf4j:slf4j-api:1.+'
compile 'org.slf4j:slf4j-log4j12:1.+' compile 'org.slf4j:slf4j-log4j12:1.+'
compile 'com.melloware:jintellitype:1.+' compile 'org.wiigee:wiigee:1.5.6'
} }
jar { jar {
from sourceSets.main.allSource
manifest { manifest {
attributes 'Main-Class': 'mimis.Main' attributes 'Main-Class': 'mimis.Main'
} }

View File

@@ -1 +1 @@
include 'base', 'mimis', 'wiiusej', 'sound' include 'base', 'mimis', 'test'

3
java/test/build.gradle Normal file
View File

@@ -0,0 +1,3 @@
dependencies {
}