Skip to content

Instantly share code, notes, and snippets.

@recursivecodes
Last active February 24, 2020 14:05
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 recursivecodes/20ccc0e6d25571a3a77f35aa75b15fa0 to your computer and use it in GitHub Desktop.
Save recursivecodes/20ccc0e6d25571a3a77f35aa75b15fa0 to your computer and use it in GitHub Desktop.
dependencies {
compile 'io.micronaut.configuration:micronaut-hibernate-gorm'
compile group: 'com.oracle.ojdbc', name: 'ojdbc8', version: '19.3.0.0'
compile "io.micronaut:micronaut-http-client"
compile "io.micronaut:micronaut-http-server-netty"
compile "io.micronaut:micronaut-runtime-groovy"
compile "io.micronaut:micronaut-validation"
compileOnly "io.micronaut:micronaut-inject-groovy"
runtime "ch.qos.logback:logback-classic:1.2.3"
testAnnotationProcessor "io.micronaut:micronaut-inject-java"
testCompile "org.junit.jupiter:junit-jupiter-api"
testCompile "io.micronaut.test:micronaut-test-junit5"
testCompile("org.spockframework:spock-core") {
exclude group: "org.codehaus.groovy", module: "groovy-all"
}
testCompile "io.micronaut:micronaut-inject-groovy"
testCompile "io.micronaut.test:micronaut-test-spock:1.0.1"
testRuntime "org.junit.jupiter:junit-jupiter-engine"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment