123456789101112131415161718192021222324252627282930313233343536 |
- buildscript {
- repositories {
- maven { url "http://repo.spring.io/libs-release" }
- mavenLocal()
- mavenCentral()
- }
- dependencies {
- classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.2.RELEASE")
- }
- }
-
- apply plugin: 'java'
- apply plugin: 'eclipse'
- apply plugin: 'idea'
- apply plugin: 'spring-boot'
-
- jar {
- baseName = 'gs-rest-service'
- version = '0.1.0'
- }
-
- repositories {
- mavenLocal()
- mavenCentral()
- maven { url "http://repo.spring.io/libs-release" }
- }
-
- dependencies {
- compile("org.springframework.boot:spring-boot-starter-web")
- testCompile("junit:junit")
- }
-
- task wrapper(type: Wrapper) {
- gradleVersion = '1.11'
- }
|