Skip to content

Commit 031394d

Browse files
authored
chore: upgrade gradle version (CodelyTV#25)
1 parent 096bb4b commit 031394d

File tree

5 files changed

+32
-15
lines changed

5 files changed

+32
-15
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,34 @@
1-
# β˜•πŸš€ Java Basic Skeleton: Save the boilerplate in your new projects
1+
<p align="center">
2+
<a href="https://codely.com">
3+
<picture>
4+
<source media="(prefers-color-scheme: dark)" srcset="https://codely.com/logo/codely_logo-dark.svg">
5+
<source media="(prefers-color-scheme: light)" srcset="https://codely.com/logo/codely_logo-light.svg">
6+
<img alt="Codely logo" src="https://codely.com/logo/codely_logo.svg">
7+
</picture>
8+
</a>
9+
</p>
10+
11+
<h1 align="center">
12+
β˜•πŸš€ Java Basic Skeleton: Save the boilerplate in your new projects
13+
</h1>
14+
15+
<p align="center">
16+
<a href="https://github.com/CodelyTV"><img src="https://img.shields.io/badge/Codely-OS-green.svg?style=flat-square" alt="Codely Open Source projects"/></a>
17+
<a href="https://pro.codely.com"><img src="https://img.shields.io/badge/Codely-Pro-black.svg?style=flat-square" alt="Codely Pro courses"/></a>
18+
<a href="https://github.com/CodelyTV/java-basic-skeleton/actions"><img src="https://github.com/CodelyTV/java-basic-skeleton/workflows/Main%20Workflow/badge.svg" alt="Workflow Status"></a>
19+
</p>
220

3-
<img src="http://codely.tv/wp-content/uploads/2016/05/cropped-logo-codelyTV.png" align="left" width="192px" height="192px"/>
4-
<img align="left" width="0" height="192px" hspace="10"/>
521

622
> ⚑ Start your Java projects as fast as possible
723
8-
[![CodelyTV](https://img.shields.io/badge/codely-tv-green.svg?style=flat-square)](https://codely.tv)
9-
[![Workflow Status](https://github.com/CodelyTV/java-basic-skeleton/workflows/Main%20Workflow/badge.svg)](https://github.com/CodelyTV/java-basic-skeleton/actions)
10-
1124
## ℹ️ Introduction
1225

1326
This is a repository intended to serve as a starting point if you want to bootstrap a Java project with JUnit and Gradle.
1427

1528
## 🏁 How To Start
1629

17-
1. Install Java 17: `brew install corretto` or download it [here](https://docs.aws.amazon.com/corretto/latest/corretto-17-ug/downloads-list.html)
18-
2. Set it as your default JVM: `export JAVA_HOME='/Library/Java/JavaVirtualMachines/amazon-corretto-17.jdk/Contents/Home'`
30+
1. Install Java: `brew install corretto` or download it [here](https://docs.aws.amazon.com/corretto/)
31+
2. Set it as your default JVM: `export JAVA_HOME='/Library/Java/JavaVirtualMachines/amazon-corretto-$JAVA_VERSION$.jdk/Contents/Home'`
1932
3. Clone this repository: `git clone https://github.com/CodelyTV/java-basic-skeleton`.
2033
4. Execute some [Gradle lifecycle tasks](https://docs.gradle.org/current/userguide/java_plugin.html#lifecycle_tasks) in order to check everything is OK:
2134
1. Create [the project JAR](https://docs.gradle.org/current/userguide/java_plugin.html#sec:jar): `make build`
@@ -24,10 +37,9 @@ This is a repository intended to serve as a starting point if you want to bootst
2437

2538
## ☝️ How to update dependencies
2639

27-
* Gradle (current version: 5.6 - [releases](https://gradle.org/releases/)):
28-
`./gradlew wrapper --gradle-version=5.6 --distribution-type=bin` or modifying the [gradle-wrapper.properties](gradle/wrapper/gradle-wrapper.properties#L3)
29-
* JUnit (current version: 5.5.1 - [releases](https://junit.org/junit5/docs/snapshot/release-notes/index.html)):
30-
[`build.gradle:11`](build.gradle#L11-L12)
40+
* Gradle (current version: 8.9 - [releases](https://gradle.org/releases/)):
41+
`./gradlew wrapper --gradle-version=8.9 --distribution-type=bin` or modifying the [gradle-wrapper.properties](gradle/wrapper/gradle-wrapper.properties#L3)
42+
* JUnit (current version: 5.8.2 - [releases](https://junit.org/junit5/docs/snapshot/release-notes/index.html)): [`build.gradle:14`](build.gradle#L14-L15)
3143

3244
## πŸ’‘ Related repositories
3345

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

β€Žgradlewβ€Ž

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

β€Žgradlew.batβ€Ž

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

0 commit comments

Comments
Β (0)