-
Notifications
You must be signed in to change notification settings - Fork 28
/
build.gradle
39 lines (31 loc) · 974 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
buildscript {
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/libs-release" }
maven { url "https://oss.sonatype.org/content/repositories/releases"}
maven { url "https://oss.sonatype.org/content/repositories/snapshots"}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.6.RELEASE")
classpath group: 'org.cloudfoundry', name: 'cf-gradle-plugin', version: '1.0.4'
classpath("net.thucydides:thucydides-core:0.9.273")
}
}
allprojects {
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'maven'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/libs-release" }
}
task wrapper(type: Wrapper) {
gradleVersion = '1.11'
}
}