-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (35 loc) · 1001 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
37
38
39
40
41
42
43
44
45
// Declare the dependencies of the gradle build scripts
// themselves.
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
mavenCentral()
maven { url "https://nexus.bedatadriven.com/content/groups/public" }
}
dependencies {
classpath "gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.14.0"
classpath "org.owasp:dependency-check-gradle:4.0.2"
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.4.1'
}
}
allprojects {
repositories {
mavenCentral()
maven {
url "https://nexus.bedatadriven.com/content/groups/public"
}
}
}
allprojects {
group = 'org.renjin.ci'
}
subprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
testCompile 'junit:junit:4.7'
testCompile 'org.hamcrest:hamcrest-library:1.1'
testCompile 'org.easymock:easymock:2.5.2'
}
}