Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ temp_dir
/.idea/vcs.xml

.DS_Store

.venv/
4 changes: 2 additions & 2 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Contributing to the Gradle Cookbook

[![a](https://img.shields.io/badge/slack-%23docs-brightgreen?style=flat&logo=slack)](./contributing/community-slack.md)
[![a](https://img.shields.io/badge/slack-%23docs-brightgreen?style=flat&logo=slack)](https://gradle.org/slack-invite)


The Gradle Cookbook is under active development.
Any contributions are welcome!

## Discuss

- `#docs` on the [Gradle Community Slack](../contributing/community-slack.md)
- `#docs` on the [Gradle Community Slack](https://gradle.org/slack-invite)
- [GitHub Issues](https://github.com/gradle/community/issues)

## Development Environment
Expand Down
2 changes: 1 addition & 1 deletion docs/ci/github-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ $ git push

### Test building the project

The project uses the [Gradle Wrapper](gradle_wrapper.adoc#gradle_wrapper_reference) for building the project. It is a recommended practice for any Gradle project as it enables your project to be built on CI without having to install the Gradle runtime.
The project uses the [Gradle Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html) for building the project. It is a recommended practice for any Gradle project as it enables your project to be built on CI without having to install the Gradle runtime.

Before asking GitHub Actions to build your project, it's useful to ensure that it builds locally. Adding the "CI" environment variable will emulate running the build on GitHub Actions.

Expand Down
2 changes: 1 addition & 1 deletion docs/ci/jenkins.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ BUILD SUCCESSFUL
14 actionable tasks: 14 executed
```

The project provides the [Gradle Wrapper](gradle_wrapper.adoc#gradle_wrapper_reference) as part of the repository. It is a recommended practice for any Gradle project as it enables your project to be built on CI without having to install the Gradle runtime.
The project provides the [Gradle Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html) as part of the repository. It is a recommended practice for any Gradle project as it enables your project to be built on CI without having to install the Gradle runtime.

### Build scan integration

Expand Down
2 changes: 1 addition & 1 deletion docs/ci/teamcity.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ BUILD SUCCESSFUL
14 actionable tasks: 14 executed
```

The project provides the [Gradle Wrapper](gradle_wrapper.adoc#gradle_wrapper_reference) as part of the repository. It is a recommended practice for any Gradle project as it enables your project to be built on CI without having to install the Gradle runtime.
The project provides the [Gradle Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html) as part of the repository. It is a recommended practice for any Gradle project as it enables your project to be built on CI without having to install the Gradle runtime.

### Build scan integration

Expand Down
2 changes: 1 addition & 1 deletion docs/ci/travis-ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ BUILD SUCCESSFUL
14 actionable tasks: 14 executed
```

The project provides the [Gradle Wrapper](gradle_wrapper.adoc#gradle_wrapper_reference) as part of the repository. It is a recommended practice for any Gradle project as it enables your project to be built on CI without having to install the Gradle runtime.
The project provides the [Gradle Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html) as part of the repository. It is a recommended practice for any Gradle project as it enables your project to be built on CI without having to install the Gradle runtime.

### Build scan integration

Expand Down
2 changes: 1 addition & 1 deletion docs/preface.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ trademark usage and the approval process.
## References

- [Gradle User Manual](https://docs.gradle.org/current/userguide/userguide.html)
- [Other Documentation Locations](../contributing/documentation/README.md/#locations)
- [Other Documentation Locations](https://community.gradle.org/contributing/documentation)
Loading