This repository has been archived on 2022-07-05. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-03-22 21:52:00 +00:00
|
|
|
buildscript {
|
|
|
|
ext {
|
|
|
|
springBootVersion = '1.5.2.RELEASE'
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'eclipse'
|
|
|
|
apply plugin: 'org.springframework.boot'
|
|
|
|
|
|
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2017-03-23 21:25:18 +00:00
|
|
|
compile("users")
|
2017-03-23 02:50:16 +00:00
|
|
|
compile("org.springframework.boot:spring-boot-starter-data-rest")
|
2017-03-22 21:52:00 +00:00
|
|
|
compile('org.springframework.boot:spring-boot-starter-data-jpa')
|
2017-03-23 02:50:16 +00:00
|
|
|
runtime('com.h2database:h2')
|
2017-03-22 21:52:00 +00:00
|
|
|
}
|