bump Gradle version to 7

This commit is contained in:
2021-05-01 23:47:51 +01:00
parent c6aede665e
commit cffa781cf8
3 changed files with 16 additions and 7 deletions

View File

@@ -1,10 +1,15 @@
plugins {
id 'maven-publish'
}
allprojects {
apply plugin: 'java-library'
group = "net.woggioni"
version = jwoVersion
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
['', 'test'].each {sourceSetName ->
@@ -19,7 +24,6 @@ allprojects {
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: junitJupiterVersion
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: junitJupiterVersion
}
}
dependencies {
@@ -27,7 +31,7 @@ dependencies {
}
compileJava {
options.compilerArgs << '--release' << '8'
options.release = 8
}
jar {
@@ -40,5 +44,5 @@ jar {
wrapper {
distributionType = Wrapper.DistributionType.BIN
gradleVersion = "6.8.2"
}
gradleVersion = "7.0"
}