Created
October 16, 2016 19:12
-
-
Save dherges/49ad558fe66ef8a5f07c7ab754b1ede8 to your computer and use it in GitHub Desktop.
spring-cucumber
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
repositories { | |
mavenCentral() | |
maven { | |
url "http://repo.spring.io/release" | |
} | |
} | |
buildscript { | |
repositories { | |
mavenCentral() | |
maven { | |
url "http://repo.spring.io/release" | |
} | |
} | |
dependencies { | |
classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.4.1.RELEASE' | |
} | |
} | |
apply plugin: 'java' | |
apply plugin: 'spring-boot' | |
sourceCompatibility = 1.8 | |
targetCompatibility = 1.8 | |
dependencies { | |
compile 'org.springframework.boot:spring-boot-starter-web' | |
compile 'org.springframework.data:spring-data-commons:1.12.4.RELEASE' | |
testCompile 'org.springframework.boot:spring-boot-starter-test' | |
testCompile 'info.cukes:cucumber-java8:1.+' | |
testCompile 'info.cukes:cucumber-junit:1.+' | |
testCompile 'info.cukes:cucumber-spring:1.+' | |
testCompile 'com.squareup.okhttp3:okhttp:3.+' | |
} | |
jar { | |
baseName = 'spring-cucumber' | |
version = '0.1.0' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment