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