-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
42 lines (35 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
group 'Klinton90'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'maven'
sourceCompatibility = 1.8
buildscript {
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:+")
}
}
configurations{
provided
}
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '+', force: true
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa', version: '+', force: true
compile group: 'org.hibernate', name: 'hibernate-core'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.4'
}
task wrapper(type: Wrapper) {
gradleVersion = project.gradleWrapperVersion
}