| 1234567891011121314151617181920212223242526272829303132333435363738 |
- buildscript {
- repositories {
- maven { url "http://repo.springsource.org/libs-snapshot" }
- mavenLocal()
- }
- dependencies {
- classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.BUILD-SNAPSHOT")
- }
- }
-
- apply plugin: 'java'
- apply plugin: 'eclipse'
- apply plugin: 'idea'
- apply plugin: 'spring-boot'
-
- jar {
- baseName = 'gs-spring-boot'
- version = '0.1.0'
- }
-
- repositories {
- mavenCentral()
- maven { url "http://repo.springsource.org/libs-snapshot" }
- }
-
- dependencies {
- compile("org.springframework.boot:spring-boot-starter-web:0.5.0.BUILD-SNAPSHOT") {
- exclude module: "spring-boot-starter-tomcat"
- }
- compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.BUILD-SNAPSHOT")
- compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.BUILD-SNAPSHOT")
- testCompile("junit:junit:4.11")
- }
-
- task wrapper(type: Wrapper) {
- gradleVersion = '1.7'
- }
|