set gradle wrapper version+distribution
This commit is contained in:
parent
60f2af6404
commit
d9ee0017dd
5
.gitignore
vendored
5
.gitignore
vendored
@ -78,9 +78,14 @@ out/
|
||||
######################
|
||||
# Gradle
|
||||
######################
|
||||
/gradle/wrapper/gradle-wrapper.jar
|
||||
/gradlew
|
||||
/gradlew.bat
|
||||
/gradle/wrapper/gradle-wrapper.properties
|
||||
.gradle/
|
||||
/build/
|
||||
|
||||
|
||||
######################
|
||||
# Package Files
|
||||
######################
|
||||
|
@ -2,6 +2,7 @@ plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot' version '2.7.2'
|
||||
id 'io.spring.dependency-management' version '1.0.12.RELEASE'
|
||||
id "org.owasp.dependencycheck" version "7.1.1"
|
||||
id "com.diffplug.spotless" version "6.9.0"
|
||||
}
|
||||
|
||||
@ -9,6 +10,11 @@ group = 'net.hostsharing'
|
||||
version = '0.0.1-SNAPSHOT'
|
||||
sourceCompatibility = '17'
|
||||
|
||||
wrapper {
|
||||
distributionType = Wrapper.DistributionType.BIN
|
||||
gradleVersion = '7.5'
|
||||
}
|
||||
|
||||
configurations {
|
||||
compileOnly {
|
||||
extendsFrom annotationProcessor
|
||||
|
5
gradle/wrapper/gradle-wrapper.properties
vendored
5
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,5 +0,0 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
Loading…
Reference in New Issue
Block a user