forked from zeroc-ice/ice-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (38 loc) · 1.15 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// **********************************************************************
//
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
//
// **********************************************************************
subprojects {
project.version = iceVersion
project.group = "com.zeroc"
apply plugin: 'java'
apply from: "$rootProject.projectDir/gradle/ice.gradle"
repositories {
if (distJarDir != null) {
flatDir {
name "local"
dirs distJarDir
}
}
if (!useLocalOnly) {
maven {
url "https://${iceMavenRepo}/nexus/content/repositories/thirdparty"
}
maven {
url "https://${iceMavenRepo}/nexus/content/repositories/releases"
}
}
}
}
apply from: "$rootProject.projectDir/Ice/build.gradle"
apply from: "$rootProject.projectDir/IceDiscovery/build.gradle"
apply from: "$rootProject.projectDir/Glacier2/build.gradle"
apply from: "$rootProject.projectDir/IceGrid/build.gradle"
apply from: "$rootProject.projectDir/Manual/build.gradle"
//
// Used to build the gradle wrapper to automatically download and install gradle.
//
task wrapper(type: Wrapper) {
gradleVersion = "2.6"
}