Skip to content

Instantly share code, notes, and snippets.

@tarla
Created September 1, 2022 06:46
Show Gist options
  • Save tarla/385d09a1efe6be0bd8e6bce62613a87d to your computer and use it in GitHub Desktop.
Save tarla/385d09a1efe6be0bd8e6bce62613a87d to your computer and use it in GitHub Desktop.
micronaut minimal build
plugins {
id 'io.micronaut.library' version '3.5.1'
}
version "0.1"
group "com.example"
repositories {
mavenCentral()
}
micronaut {
version = "3.5.1"
}
dependencies {
testImplementation("io.micronaut.test:micronaut-test-junit5")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment