-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (27 loc) · 1.08 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
// Core9 Framework: module-proxy
// Build with: ./gradlew clean test build
// Publish with ./gradlew clean test build publish publishBintray
apply from: 'http://www.core9.io/buildfiles/gradle/source.gradle'
apply from: 'http://www.core9.io/buildfiles/gradle/publish.gradle'
buildscript {
apply from: 'http://www.core9.io/buildfiles/gradle/publish-build.gradle'
}
/**
* @TODO Somehow cannot be moved to publish.gradle
*/
task publishBintray (type: org._10ne.gradle.rest.RestTask, dependsOn: bintrayUpload) {
httpMethod = 'post'
uri = 'https://bintray.com/api/v1/content/core9/core9/' + project.name + '/' + project.version + '/publish'
username = System.env.BINTRAY_USER
password = System.env.BINTRAY_KEY
}
dependencies {
apiCompile 'io.core9:module-database-api:+'
apiCompile 'io.core9:core-api:+'
apiCompile 'io.core9:module-rules-api:+'
apiCompile 'io.netty:netty-all:4.0.23.Final'
implCompile 'org.slf4j:slf4j-api:1.7.7'
implCompile 'com.barchart.udt:barchart-udt-bundle:2.3.0'
implCompile 'commons-io:commons-io:2.4'
implCompile 'commons-codec:commons-codec:1.9'
}