summaryrefslogtreecommitdiff
path: root/java/android/src
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2017-06-06 15:51:30 -0700
committerMark Spruiell <mes@zeroc.com>2017-06-06 15:51:30 -0700
commite99e1388d3b45e2e93888bca29ed540f245e2166 (patch)
tree8685d4a3a0ca84f257e2b326965609da554a60ba /java/android/src
parentFixed Ice/operations build failure with ARC target of iOS controller project (diff)
downloadice-e99e1388d3b45e2e93888bca29ed540f245e2166.tar.bz2
ice-e99e1388d3b45e2e93888bca29ed540f245e2166.tar.xz
ice-e99e1388d3b45e2e93888bca29ed540f245e2166.zip
ICE-7903 - move android tests
Diffstat (limited to 'java/android/src')
-rw-r--r--java/android/src/Ice/build.gradle23
-rw-r--r--java/android/src/IceDiscovery/build.gradle23
-rw-r--r--java/android/src/IceSSL/build.gradle23
3 files changed, 69 insertions, 0 deletions
diff --git a/java/android/src/Ice/build.gradle b/java/android/src/Ice/build.gradle
new file mode 100644
index 00000000000..3cfab2b3f4f
--- /dev/null
+++ b/java/android/src/Ice/build.gradle
@@ -0,0 +1,23 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+apply plugin: 'java'
+apply from: "$project.ext.topSrcDir/java/gradle/ice.gradle"
+apply from: "$project.ext.topSrcDir/java/src/Ice/build.gradle"
+
+sourceCompatibility = iceSourceCompatibility
+targetCompatibility = iceTargetCompatibility
+
+sourceSets {
+ main {
+ java {
+ srcDir "$project.ext.topSrcDir/java/src/Ice/src/main/java"
+ }
+ }
+}
diff --git a/java/android/src/IceDiscovery/build.gradle b/java/android/src/IceDiscovery/build.gradle
new file mode 100644
index 00000000000..ff8fab0df63
--- /dev/null
+++ b/java/android/src/IceDiscovery/build.gradle
@@ -0,0 +1,23 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+apply plugin: 'java'
+apply from: "$project.ext.topSrcDir/java/gradle/ice.gradle"
+apply from: "$project.ext.topSrcDir/java/src/IceDiscovery/build.gradle"
+
+sourceCompatibility = iceSourceCompatibility
+targetCompatibility = iceTargetCompatibility
+
+sourceSets {
+ main {
+ java {
+ srcDir "$project.ext.topSrcDir/java/src/IceDiscovery/src/main/java"
+ }
+ }
+}
diff --git a/java/android/src/IceSSL/build.gradle b/java/android/src/IceSSL/build.gradle
new file mode 100644
index 00000000000..549a96eaea3
--- /dev/null
+++ b/java/android/src/IceSSL/build.gradle
@@ -0,0 +1,23 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+apply plugin: 'java'
+apply from: "$project.ext.topSrcDir/java/gradle/ice.gradle"
+apply from: "$project.ext.topSrcDir/java/src/IceSSL/build.gradle"
+
+sourceCompatibility = iceSourceCompatibility
+targetCompatibility = iceTargetCompatibility
+
+sourceSets {
+ main {
+ java {
+ srcDir "$project.ext.topSrcDir/java/src/IceSSL/src/main/java"
+ }
+ }
+}