Created
September 1, 2022 06:46
-
-
Save tarla/385d09a1efe6be0bd8e6bce62613a87d to your computer and use it in GitHub Desktop.
micronaut minimal build
This file contains 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
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