diff options
author | Thibault Gagnaux <tgagnaux@gmail.com> | 2021-07-14 13:57:09 +0200 |
---|---|---|
committer | Thibault Gagnaux <tgagnaux@gmail.com> | 2021-07-14 13:57:09 +0200 |
commit | fae0e640c7143d2c090e5f510a7c3e6d6f382e5f (patch) | |
tree | 143b4d2044b6f91fabb2e8f75849019f2ed2808b /build.gradle | |
parent | ce39d8f5cdfae2788c4664e08d895afead76c682 (diff) | |
download | frege-gradle-plugin-f-simple-javaExec-task-alternative.tar.gz frege-gradle-plugin-f-simple-javaExec-task-alternative.tar.bz2 frege-gradle-plugin-f-simple-javaExec-task-alternative.zip |
chore: adds `maven-publish` plugin to publish to `mavenLocal` repof-simple-javaExec-task-alternative
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle index 9d7ac13..a30daed 100644 --- a/build.gradle +++ b/build.gradle @@ -1,14 +1,12 @@ plugins { id 'java-gradle-plugin' + id 'maven-publish' } repositories { mavenCentral() } -group = 'ch.fhnw.thga' -version = '0.0.1-SNAPSHOT' - sourceSets { functionalTest { compileClasspath += sourceSets.main.output + sourceSets.test.output @@ -46,6 +44,8 @@ tasks.withType(Test).configureEach { } dependencies { - testImplementation('org.junit.jupiter:junit-jupiter-api:5.7.2') - testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.7.2') + def junit5Group = 'org.junit.jupiter' + def junit5Version = '5.7.2' + testImplementation group: junit5Group, name: 'junit-jupiter-api', version: junit5Version + testRuntimeOnly group: junit5Group, name: 'junit-jupiter-engine', version: junit5Version } |