Sha256: 10533425121755e8f3081772a3f23c1fa5547145f39cb816ea8893b7ec3b975b
Contents?: true
Size: 1.62 KB
Versions: 2
Compression:
Stored size: 1.62 KB
Contents
<%=@licence%> buildscript { repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.3.RELEASE") } } repositories { mavenCentral() maven { url 'http://repo.spring.io/libs-snapshot-continuous-local' } maven { url 'http://maven.springframework.org/milestone/' } maven { url 'http://repo.spring.io/libs-snapshot' } } apply plugin: 'java' apply plugin: 'idea' apply plugin: 'spring-boot' apply plugin: "checkstyle" checkstyle{ checkstyle { toolVersion = "6.6" } } task checkstyle(type: Checkstyle) { configFile file("config/checkstyle/checkstyle.xml") source './' include '**/*.java' classpath = files() } sourceCompatibility = 1.8 targetCompatibility = 1.8 dependencies { compile("org.springframework.boot:spring-boot-starter-web") compile("org.springframework.boot:spring-boot-starter-tomcat") compile("org.springframework.boot:spring-boot-starter-data-rest") compile("org.springframework.boot:spring-boot-starter-data-mongodb") compile("org.springframework.amqp:spring-rabbit") compile 'org.springframework.cloud:spring-cloud-starter-eureka:1.0.1.RELEASE' compile 'org.springframework.hateoas:spring-hateoas' compile 'org.apache.commons:commons-lang3:3.4' testCompile 'com.github.fakemongo:fongo:1.6.2' testCompile "org.springframework:spring-test:4.1.6.RELEASE" testCompile "org.mockito:mockito-core:1.9.5" testCompile "org.hamcrest:hamcrest-all:1.3" testCompile "com.jayway.jsonpath:json-path-assert:2.0.0" testCompile("junit:junit") } task wrapper(type: Wrapper) { gradleVersion = '2.3' }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spring-gen-0.2.3 | lib/templates/gradle/mongodb_build.gradle.erb |
spring-gen-0.2.2 | lib/templates/gradle/mongodb_build.gradle.erb |