File tree Expand file tree Collapse file tree 9 files changed +24
-19
lines changed Expand file tree Collapse file tree 9 files changed +24
-19
lines changed Original file line number Diff line number Diff line change 1- @file:Suppress(" UnstableApiUsage" )
1+ @file:Suppress(" UnstableApiUsage" , " unused " )
22
33plugins {
4- alias(libs.plugins.conventions.develocity.api )
5- alias(libs.plugins.conventions.release )
6- alias(libs.plugins.gradle.java.library )
7- alias(libs.plugins.gradle.java.test.fixtures )
4+ alias(libs.plugins.develocityApiConventions )
5+ alias(libs.plugins.javaLibrary )
6+ alias(libs.plugins.javaTestFixtures )
7+ alias(libs.plugins.releaseConventions )
88}
99
1010group = " dev.erichaag"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ repositories {
77}
88
99dependencies {
10- implementation(plugin(libs.plugins.openapi.generator ))
10+ implementation(plugin(libs.plugins.openapiGenerator ))
1111}
1212
1313fun plugin (plugin : Provider <PluginDependency >) =
Original file line number Diff line number Diff line change @@ -36,13 +36,13 @@ dependencies {
3636 develocityApiSpecification(develocityApiExtension.version.map { " com.gradle:develocity-api-specification:$it " })
3737 implementation(libs.findLibrary(" jackson-annotations" ).get())
3838 implementation(libs.findLibrary(" jackson-databind" ).get())
39- implementation(libs.findLibrary(" jakarta-annotation-api " ).get())
39+ implementation(libs.findLibrary(" jakarta-annotations " ).get())
4040}
4141
4242pluginManager.withPlugin(" java-library" ) {
4343 dependencies {
4444 " api" (libs.findLibrary(" jackson-annotations" ).get())
45- " api" (libs.findLibrary(" jakarta-annotation-api " ).get())
45+ " api" (libs.findLibrary(" jakarta-annotations " ).get())
4646 }
4747}
4848
Original file line number Diff line number Diff line change 11org.gradle.caching =true
22org.gradle.configuration-cache =true
3- org.gradle.jvmargs =-Duser.language =en -Duser.country =US -Dfile.encoding =UTF-8
3+ org.gradle.jvmargs =-Duser.language =en -Duser.country =US -Dfile.encoding =UTF-8 -Xmx512m -XX: MaxMetaspaceSize =256m
44org.gradle.kotlin.dsl.allWarningsAsErrors =true
55org.gradle.parallel =true
Original file line number Diff line number Diff line change 11[versions ]
22jackson-core = " 2.17.1"
3- jakarta-annotation = " 3.0.0"
3+ jakarta-annotations = " 3.0.0"
44junit = " 5.10.3"
55openapi-generator = " 7.6.0"
66
77[libraries ]
88jackson-annotations = { module = " com.fasterxml.jackson.core:jackson-annotations" , version.ref = " jackson-core" }
99jackson-databind = { module = " com.fasterxml.jackson.core:jackson-databind" , version.ref = " jackson-core" }
10- jakarta-annotation-api = { module = " jakarta.annotation:jakarta.annotation-api" , version.ref = " jakarta-annotation " }
10+ jakarta-annotations = { module = " jakarta.annotation:jakarta.annotation-api" , version.ref = " jakarta-annotations " }
1111junit-jupiter = { module = " org.junit.jupiter:junit-jupiter" , version.ref = " junit" }
1212
1313[plugins ]
14- conventions-develocity-api = { id = " conventions.develocity-api" }
15- conventions-release = { id = " conventions.release " }
16- gradle-java-library = { id = " java-library " }
17- gradle-java-test-fixtures = { id = " java-test-fixtures " }
18- openapi-generator = { id = " org.openapi.generator " , version.ref = " openapi-generator " }
14+ develocityApiConventions = { id = " conventions.develocity-api" }
15+ javaLibrary = { id = " java-library " }
16+ javaTestFixtures = { id = " java-test-fixtures " }
17+ openapiGenerator = { id = " org.openapi.generator " , version.ref = " openapi-generator " }
18+ releaseConventions = { id = " conventions.release " }
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionSha256Sum =a4b4158601f8636cdeeab09bd76afb640030bb5b144aafe261a5e8af027dc612
4- distributionUrl =https\://services.gradle.org/distributions/gradle-8.8 -bin.zip
3+ distributionSha256Sum =31c55713e40233a8303827ceb42ca48a47267a0ad4bab9177123121e71524c26
4+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.10.2 -bin.zip
55networkTimeout =10000
66validateDistributionUrl =true
77zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 1515# See the License for the specific language governing permissions and
1616# limitations under the License.
1717#
18+ # SPDX-License-Identifier: Apache-2.0
19+ #
1820
1921# #############################################################################
2022#
8486# shellcheck disable=SC2034
8587APP_BASE_NAME=${0##*/ }
8688# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87- APP_HOME=$( cd " ${APP_HOME:- ./ } " > /dev/null && pwd -P ) || exit
89+ APP_HOME=$( cd -P " ${APP_HOME:- ./ } " > /dev/null && printf ' %s
90+ ' " $PWD " ) || exit
8891
8992# Use the maximum available, or set MAX_FD != -1 to use that value.
9093MAX_FD=maximum
Original file line number Diff line number Diff line change 1313@ rem See the License for the specific language governing permissions and
1414@ rem limitations under the License.
1515@ rem
16+ @ rem SPDX-License-Identifier: Apache-2.0
17+ @ rem
1618
1719@ if " %DEBUG% " == " " @ echo off
1820@ rem ##########################################################################
You can’t perform that action at this time.
0 commit comments