-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (46 loc) · 1.73 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
apply plugin: "java"
apply plugin: "groovy"
apply plugin: "maven"
apply plugin: "checkstyle"
apply plugin: "idea"
group = "com.playground"
version = "0.0.1"
description = """spock-tests"""
sourceCompatibility = 1.8
targetCompatibility = 1.8
buildscript {
ext {
springBootVersion = "2.0.0.RELEASE"
}
repositories {
maven { url "https://artifacts.mastercard.int/artifactory/maven-all" }
maven { url "https://artifacts.mastercard.int/artifactory/releases" }
maven { url "https://artifacts.mastercard.int/artifactory/snapshots-all" }
maven { url "https://artifacts.mastercard.int/artifactory/maven-external-reslease" }
}
dependencies {
}
}
repositories {
mavenLocal()
maven { url "https://artifacts.mastercard.int/artifactory/maven-all" }
maven { url "https://artifacts.mastercard.int/artifactory/releases" }
maven { url "https://artifacts.mastercard.int/artifactory/snapshots-all" }
maven { url "https://artifacts.mastercard.int/artifactory/maven-external-reslease" }
maven { url "https://globalrepository.mclocal.int/artifactory/releases" }
maven { url "https://globalrepository.mclocal.int/artifactory/public-snapshots" }
maven { url "https://globalrepository.mclocal.int/artifactory/public" }
maven { url "https://globalrepository.mclocal.int/artifactory/dante-remote" }
}
dependencies {
compile group: "org.codehaus.groovy", name: "groovy-all", version: "2.4.11"
compile group: "org.spockframework", name: "spock-core", version: "1.1-groovy-2.4"
}
//apply from: "$projectDir/integration.gradle"
//
//sourceSets {
// integrationTest {
// groovy.srcDir "src/integration/groovy"
// resources.srcDir "src/integration/resources"
// }
//}