summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Grover <joeygrover@gmail.com>2019-03-18 18:42:11 -0400
committerJoey Grover <joeygrover@gmail.com>2019-03-18 18:42:11 -0400
commit6ce37bfb2ca71f055436141321ea619319e6080f (patch)
tree378e0d86a167f462fea53b17a0c2faefa12aa1da
parent33d092291b1cf00745b4019b1d19e02676193fdb (diff)
downloadsdl_android-feature/sample_java_apps.tar.gz
Update gradle filesfeature/sample_java_apps
-rw-r--r--hello_sdl_java_ee/settings.gradle2
-rw-r--r--javaEE/build.gradle10
-rw-r--r--javaEE/settings.gradle3
3 files changed, 10 insertions, 5 deletions
diff --git a/hello_sdl_java_ee/settings.gradle b/hello_sdl_java_ee/settings.gradle
index 349e839a3..8a8a05513 100644
--- a/hello_sdl_java_ee/settings.gradle
+++ b/hello_sdl_java_ee/settings.gradle
@@ -1,3 +1,3 @@
rootProject.name = 'hello_sdl_java_ee'
include ":sdl_java_ee"
-project (":sdl_java_ee").projectDir = new File("../javaEE/") \ No newline at end of file
+project (":sdl_java_ee").projectDir = new File(rootProject.projectDir, "../javaEE/") \ No newline at end of file
diff --git a/javaEE/build.gradle b/javaEE/build.gradle
index a1f825d88..bc0554c0e 100644
--- a/javaEE/build.gradle
+++ b/javaEE/build.gradle
@@ -27,12 +27,18 @@ configurations {
dependencies {
extraLibs fileTree(dir: 'libs', include: ['*.jar'])
- extraLibs project(path: ':javaSE')
+ extraLibs fileTree(dir: '../javaSE/libs', include: ['*.jar']) //BSON lib
+ extraLibs 'com.android.support:support-annotations:28.0.0'
+ extraLibs 'org.java-websocket:Java-WebSocket:1.3.9'
configurations.api.extendsFrom(configurations.extraLibs)
}
+sourceSets {
+ main.java.srcDirs += '../base/src/main/java'
+ main.java.srcDirs += '../javaSE/src/main/java'
+}
+
jar {
- dependsOn ':javaSE:jar'
from {
configurations.extraLibs.collect { it.isDirectory() ? it : zipTree(it) }
}
diff --git a/javaEE/settings.gradle b/javaEE/settings.gradle
index 8571d75ae..4da4ab327 100644
--- a/javaEE/settings.gradle
+++ b/javaEE/settings.gradle
@@ -1,2 +1 @@
-include ':javaEE' , ':javaSE'
-project (":javaSE").projectDir = new File("../javaSE") \ No newline at end of file
+rootProject.name = 'javaEE'