-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
44 lines (36 loc) · 1010 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
group = 'org.jumbodb'
allprojects {
apply plugin: 'idea'
}
subprojects {
apply plugin: 'java'
apply plugin: 'project-reports'
apply plugin: 'eclipse'
apply plugin: 'info'
group = 'org.jumbodb'
version = '0.1.0'
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
// mavenCentral()
maven{ url "http://repo2.maven.org/maven2/" }
maven{ url "http://repository-comsysto.forge.cloudbees.com/release" }
maven{ url "http://repository-comsysto.forge.cloudbees.com/snapshot/" }
maven{ url "http://maven.springframework.org/release" }
maven{ url "http://maven.springframework.org/milestone" }
}
}
buildscript {
repositories { jcenter() }
dependencies { classpath 'com.netflix.nebula:gradle-info-plugin:1.9.+' }
}
idea {
module {
downloadSources = true
}
}
// generate gradle bootstrapping
// run gradle createWrapper
task createWrapper(type: Wrapper) {
gradleVersion = '2.1'
}