Skip to content

Commit 505f39e

Browse files
committed
merge: Manual upgrade from the Gradle Playground
2 parents 433cbcb + aa324ba commit 505f39e

9 files changed

+16
-7
lines changed

.gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ include:
1414

1515
variables:
1616
# https://gitlab.com/opensavvy/automation/containers
17-
ci_containers: 0.4.4
17+
ci_containers: 0.5.0
1818

1919
workflow:
2020
rules:

CONTRIBUTING.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ Thanks for wanting to contribute to the project!
44

55
There are many things we appreciate help with. The simplest is to report problems you see in the documentation or while using the project, by creating an issue.
66

7-
If you have a specific change you'd like to submit, be it documentation, bug fixes or new features, please read our guide on [how to create merge requests following our conventions](https://gitlab.com/opensavvy/wiki/-/blob/main/README.md#wiki).
7+
If you have a specific change you'd like to submit, be it documentation, bug fixes or new features, please read our [contribution guide](https://opensavvy.dev/open-source/index.html#contributing-to-open-source-projects).
88

99
> Before starting making large changes, please do talk about it with us! Some things, in particular, deploying to new platforms requires changes on our side as well.
10+
>
11+
> The simplest way of contacting us is by creating an issue on this repository, or commenting in an existing issue. Some projects may also have a Discord server, if you prefer reaching us there.
1012
1113
## Issue tracking
1214

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,7 @@ This project is licensed under the [Apache 2.0 license](LICENSE).
6767
## Contributing
6868

6969
See [CONTRIBUTING.md](CONTRIBUTING.md).
70-
- To learn more about our coding conventions and workflow, see the [OpenSavvy Wiki](https://gitlab.com/opensavvy/wiki/-/blob/main/README.md#wiki).
70+
- To learn more about our coding conventions and workflow, see the [OpenSavvy website](https://opensavvy.dev/open-source/index.html).
7171
- This project is based on the [OpenSavvy Playground](docs/playground/README.md), a collection of preconfigured project templates.
72+
73+
If you don't want to clone this project on your machine, it is also available using [GitPod](https://www.gitpod.io/) and [DevContainer](https://containers.dev/) ([VS Code](https://code.visualstudio.com/docs/devcontainers/containers)[IntelliJ & JetBrains IDEs](https://www.jetbrains.com/help/idea/connect-to-devcontainer.html)). Don't hesitate to create issues if you have problems getting the project up and running.

gradle/conventions/settings.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pluginManagement {
4545
}
4646

4747
plugins {
48-
id("dev.opensavvy.conventions.settings") version "1.5.1"
48+
id("dev.opensavvy.conventions.settings") version "1.5.2"
4949
}
5050

5151
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

gradle/wrapper/gradle-wrapper.jar

130 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

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

gradlew

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -84,7 +86,8 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# 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
8891

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

gradlew.bat

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################

settings.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pluginManagement {
4949
}
5050

5151
plugins {
52-
id("dev.opensavvy.conventions.settings") version "1.5.1"
52+
id("dev.opensavvy.conventions.settings") version "1.5.2"
5353
}
5454

5555
include(

0 commit comments

Comments
 (0)