Skip to content

Commit e4c2799

Browse files
committed
updated Gradle to 8.12
1 parent 32a5e7b commit e4c2799

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ plugins {
88
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
99
}
1010

11-
group 'org.xmlobjects.gml'
12-
version '1.1.2'
13-
description 'A Java mapping for the OGC Geography Markup Language (GML)'
11+
group = 'org.xmlobjects.gml'
12+
version = '1.1.2'
13+
description = 'A Java mapping for the OGC Geography Markup Language (GML)'
1414
ext.date = new Date()
1515

1616
java {
@@ -27,23 +27,23 @@ tasks.named('compileJava') {
2727

2828
repositories {
2929
maven {
30-
url 'https://oss.sonatype.org/content/repositories/snapshots/'
30+
url = 'https://oss.sonatype.org/content/repositories/snapshots/'
3131
}
3232
mavenCentral()
3333
}
3434

3535
dependencies {
36-
api 'org.xmlobjects:xml-objects:1.1.2'
37-
annotationProcessor 'org.xmlobjects:xml-objects:1.1.2'
36+
api 'org.xmlobjects:xml-objects:1.1.3'
37+
annotationProcessor 'org.xmlobjects:xml-objects:1.1.3'
3838
}
3939

4040
javadoc {
4141
options {
42-
overview "$projectDir/build/tmp/javadoc/overview.html"
43-
header "$project.name $project.version"
42+
overview = "$projectDir/build/tmp/javadoc/overview.html"
43+
header = "$project.name $project.version"
4444
bottom """
4545
<a target="_blank" href="https://github.com/xmlobjects/gml-objects/issues">Report a bug or suggest an enhancement</a><br />
46-
$project.name is open source and licensed under the <a target="_blank" href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a><br />
46+
${project.name} is open source and licensed under the <a target="_blank" href="https://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a><br />
4747
Official website and more information at: <a target="_blank" href="https://github.com/xmlobjects/gml-objects">https://github.com/xmlobjects/gml-objects</a><br />
4848
Copyright &copy; 2013-${date.format('yyyy')}<br />
4949
Claus Nagel &lt;[email protected]&gt;
@@ -57,8 +57,8 @@ javadoc {
5757
from 'resources/javadoc/overview.html'
5858
into "$projectDir/build/tmp/javadoc"
5959
filter(ReplaceTokens, tokens: [
60-
name: project.name,
61-
version: project.version
60+
name: name,
61+
version: version
6262
])
6363
}
6464
}

gradle/wrapper/gradle-wrapper.jar

79 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

0 commit comments

Comments
 (0)