forked from mttkay/ignition
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (28 loc) · 752 Bytes
/
Copy pathbuild.gradle
File metadata and controls
40 lines (28 loc) · 752 Bytes
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
dependsOnChildren()
def androidProjects = [ project(':ignition-core'), project(':ignition-location') ]
def javaProjects = subprojects - androidProjects
allprojects {
group = 'com.github.ignition'
version = '0.1'
defaultTasks 'clean', 'build', 'install'
apply plugin: 'maven'
repositories {
mavenCentral()
mavenLocal()
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = 1.6
uploadArchives {
repositories.mavenDeployer {
repository(url: "file://localhost/Users/matthias/Projects/maven2/")
}
}
}
configure(javaProjects) {
dependencies {
compile "com.google.android:android:1.5_r4"
}
}