-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (33 loc) · 1.01 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
buildscript {
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
classpath group: 'com.jfrog.bintray.gradle', name: 'gradle-bintray-plugin', version: '1.7.1'
}
}
apply from: "$rootDir/gradle/distribution.gradle"
subprojects {
apply from: "$rootDir/gradle/repositories.gradle"
apply from: "$rootDir/gradle/dependencies.gradle"
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'idea'
apply plugin: 'java'
group = 'co.degraph'
version = "${distribution.versions.get(project.name)}.${project.releaseType}"
targetCompatibility = 1.8
sourceCompatibility = 1.8
dependencies {
compile group: "commons-lang", name: "commons-lang", version: "2.6"
testCompile libraries.unitTesting
testCompile project(':test-codebases')
testCompile files('../test-codebases/src/test/resources')
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.4'
}
defaultTasks 'clean', 'build'