Skip to content

Instantly share code, notes, and snippets.

@BatuhanKucukali
Created June 19, 2018 17:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BatuhanKucukali/e68a5063c18fcbea3f04c4d07675252b to your computer and use it in GitHub Desktop.
Save BatuhanKucukali/e68a5063c18fcbea3f04c4d07675252b to your computer and use it in GitHub Desktop.
buildscript {
ext {
springBootVersion = '1.5.10.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
group = 'com.translate'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter')
compile('com.amazonaws:aws-java-sdk-translate:1.11.303')
compile('org.projectlombok:lombok')
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile "org.codehaus.groovy:groovy-all"
testCompile "org.spockframework:spock-core:1.1-groovy-2.4-rc-4"
testCompile "org.spockframework:spock-spring:1.1-groovy-2.4-rc-4"
testCompile "cglib:cglib-nodep:2.2"
testCompile "org.objenesis:objenesis:2.6"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment