forked from darylteo/rxjava-promises
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
56 lines (46 loc) · 1.23 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
45
46
47
48
49
50
51
52
53
54
55
56
subprojects {
apply plugin: 'vertx'
apply from: rootProject.file('gradle/sonatype.gradle')
group = 'com.darylteo.vertx'
version = '1.2.0-RC1'
vertx {
platform {
version '2.0.2-final'
tools '2.0.0-final'
}
config {
}
info {
name "RxJava Promises - Vertx Module - ${project.name}"
description "Promises module for Vert.x - ${project.name}"
inceptionYear '2013'
url 'http://github.com/darylteo/rxjava-promises'
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
developers {
developer {
id 'darylteo'
name 'Daryl Teo'
email '[email protected]'
}
}
scm { url 'http://github.com/darylteo/rxjava-promises' }
properties {
keywords 'promise,promises,handler,future,continuation,callback,async'
'project.build.sourceEncoding' 'UTF8'
}
}
}
artifacts { archives modZip }
[
uploadArchives.repositories.mavenDeployer.pom,
install.repositories.mavenInstaller.pom
]*.withXml {
asNode().children().addAll vertx.info
}
}