added wildfly plugin

This commit is contained in:
2021-06-13 20:30:49 +01:00
parent 2ff8c958c1
commit 02771601d3
7 changed files with 147 additions and 5 deletions

View File

@@ -1,7 +1,10 @@
allprojects {
subprojects {
apply plugin: 'java-library'
apply plugin: 'maven-publish'
repositories {
mavenLocal()
maven {
url = woggioniMavenRepositoryUrl
}
mavenCentral()
jcenter()
}
@@ -20,10 +23,23 @@ allprojects {
tasks.named("test", Test) {
useJUnitPlatform()
}
publishing {
repositories {
maven {
url = woggioniMavenRepositoryUrl
}
}
publications {
maven(MavenPublication) {
from(components["java"])
}
}
}
}
wrapper {
gradleVersion = "6.8"
gradleVersion = "7.0.2"
distributionType = Wrapper.DistributionType.ALL
}