Skip to content

Commit 928e59e

Browse files
Testing some more the fourth (hopefully last time)
1 parent fd3058c commit 928e59e

File tree

9 files changed

+15
-1
lines changed

9 files changed

+15
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ $RECYCLE.BIN/
101101
*.lnk
102102

103103
build/
104+
.gradle
104105

105106
# Ignore Gradle GUI config
106107
gradle-app.setting
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

.gradle/file-system.probe

0 Bytes
Binary file not shown.

build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,19 @@ java {
3232
}
3333
}
3434

35+
publishing {
36+
publications {
37+
maven(MavenPublication) {
38+
from components.java
39+
}
40+
}
41+
}
42+
43+
wrapper {
44+
gradleVersion = "7.3.3"
45+
distributionType = Wrapper.DistributionType.ALL
46+
}
47+
3548
tasks.withType(JavaCompile).configureEach {
3649
options.encoding = 'UTF-8'
3750

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.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)