Skip to content

Commit 95ec870

Browse files
committed
Add Gradle wrapper
1 parent 74d1b06 commit 95ec870

7 files changed

Lines changed: 391 additions & 0 deletions

File tree

build.gradle.kts

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*
2+
* This file was generated by the Gradle 'init' task.
3+
*/
4+
5+
plugins {
6+
`java-library`
7+
`maven-publish`
8+
}
9+
10+
repositories {
11+
mavenLocal()
12+
maven {
13+
url = uri("https://repo.maven.apache.org/maven2/")
14+
}
15+
}
16+
17+
dependencies {
18+
testImplementation(libs.junit.junit)
19+
}
20+
21+
group = "helloworld"
22+
version = "1.0-SNAPSHOT"
23+
description = "Hello world sample web app"
24+
java.sourceCompatibility = JavaVersion.VERSION_1_8
25+
26+
publishing {
27+
publications.create<MavenPublication>("maven") {
28+
from(components["java"])
29+
}
30+
}

gradle/libs.versions.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This file was generated by the Gradle 'init' task.
2+
# https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format
3+
4+
[versions]
5+
junit-junit = "4.11"
6+
7+
[libraries]
8+
junit-junit = { module = "junit:junit", version.ref = "junit-junit" }

gradle/wrapper/gradle-wrapper.jar

42.4 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

gradlew

Lines changed: 249 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 92 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/*
2+
* This file was generated by the Gradle 'init' task.
3+
*/
4+
5+
rootProject.name = "helloworld"

0 commit comments

Comments
 (0)