-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (32 loc) · 950 Bytes
/
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
buildscript {
repositories {
mavenLocal()
mavenCentral()
google()
}
dependencies {
classpath "com.android.tools.build:gradle:8.2.2"
}
}
allprojects {
group = System.getenv("OIS_PROJECT_GROUP") != null ? System.getenv("OIS_PROJECT_GROUP") :'org.ois'
version = "$projectVersion"
}
configure(subprojects - project('android-runner')) {
apply plugin: 'java-library'
compileJava {
options.incremental = true
}
dependencies {
implementation fileTree(dir: "$rootDir/../../../libs", include: ['*.jar'])
}
}
subprojects {
ext.oisProjectTitle = System.getenv("OIS_PROJECT_TITLE") != null ? System.getenv("OIS_PROJECT_TITLE") : "OIS-PROJECT"
ext.oisProjectVersion = System.getenv("OIS_PROJECT_VERSION") != null ? System.getenv("OIS_PROJECT_VERSION") : "$projectVersion"
repositories {
mavenLocal()
mavenCentral()
google()
}
}