File tree 9 files changed +24
-19
lines changed
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 " )
2
2
3
3
plugins {
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 )
8
8
}
9
9
10
10
group = " dev.erichaag"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ repositories {
7
7
}
8
8
9
9
dependencies {
10
- implementation(plugin(libs.plugins.openapi.generator ))
10
+ implementation(plugin(libs.plugins.openapiGenerator ))
11
11
}
12
12
13
13
fun plugin (plugin : Provider <PluginDependency >) =
Original file line number Diff line number Diff line change @@ -36,13 +36,13 @@ dependencies {
36
36
develocityApiSpecification(develocityApiExtension.version.map { " com.gradle:develocity-api-specification:$it " })
37
37
implementation(libs.findLibrary(" jackson-annotations" ).get())
38
38
implementation(libs.findLibrary(" jackson-databind" ).get())
39
- implementation(libs.findLibrary(" jakarta-annotation-api " ).get())
39
+ implementation(libs.findLibrary(" jakarta-annotations " ).get())
40
40
}
41
41
42
42
pluginManager.withPlugin(" java-library" ) {
43
43
dependencies {
44
44
" api" (libs.findLibrary(" jackson-annotations" ).get())
45
- " api" (libs.findLibrary(" jakarta-annotation-api " ).get())
45
+ " api" (libs.findLibrary(" jakarta-annotations " ).get())
46
46
}
47
47
}
48
48
Original file line number Diff line number Diff line change 1
1
org.gradle.caching =true
2
2
org.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
4
4
org.gradle.kotlin.dsl.allWarningsAsErrors =true
5
5
org.gradle.parallel =true
Original file line number Diff line number Diff line change 1
1
[versions ]
2
2
jackson-core = " 2.17.1"
3
- jakarta-annotation = " 3.0.0"
3
+ jakarta-annotations = " 3.0.0"
4
4
junit = " 5.10.3"
5
5
openapi-generator = " 7.6.0"
6
6
7
7
[libraries ]
8
8
jackson-annotations = { module = " com.fasterxml.jackson.core:jackson-annotations" , version.ref = " jackson-core" }
9
9
jackson-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 " }
11
11
junit-jupiter = { module = " org.junit.jupiter:junit-jupiter" , version.ref = " junit" }
12
12
13
13
[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 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =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
5
5
networkTimeout =10000
6
6
validateDistributionUrl =true
7
7
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 15
15
# See the License for the specific language governing permissions and
16
16
# limitations under the License.
17
17
#
18
+ # SPDX-License-Identifier: Apache-2.0
19
+ #
18
20
19
21
# #############################################################################
20
22
#
84
86
# shellcheck disable=SC2034
85
87
APP_BASE_NAME=${0##*/ }
86
88
# 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
88
91
89
92
# Use the maximum available, or set MAX_FD != -1 to use that value.
90
93
MAX_FD=maximum
Original file line number Diff line number Diff line change 13
13
@ rem See the License for the specific language governing permissions and
14
14
@ rem limitations under the License.
15
15
@ rem
16
+ @ rem SPDX-License-Identifier: Apache-2.0
17
+ @ rem
16
18
17
19
@ if " %DEBUG% " == " " @ echo off
18
20
@ rem ##########################################################################
You can’t perform that action at this time.
0 commit comments