Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in gradle-tooling.adoc #36485

Merged
merged 1 commit into from
Oct 14, 2023
Merged
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
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/gradle-tooling.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -620,8 +620,8 @@
The Quarkus build uses the `prod` configuration profile:

1. System properties (for example `./gradlew -Dquarkus.package.type=fast-jar ...`)
2. System environment (for example `QUARKUS_PACAKGE_TYPE=fast-jar ./gradlew ...`)
2. System environment (for example `QUARKUS_PACKAGE_TYPE=fast-jar ./gradlew ...`)
3. Configuration via the `quarkus` extensions's `quarkusBuildProperties` For example:

Check warning on line 624 in docs/src/main/asciidoc/gradle-tooling.adoc

View workflow job for this annotation

GitHub Actions / Linting with Vale

[vale] reported by reviewdog 🐶 [Quarkus.TermsWarnings] Consider using 'through', 'by', 'from', 'on', or 'by using' rather than 'via' unless updating existing content that uses the term. Raw Output: {"message": "[Quarkus.TermsWarnings] Consider using 'through', 'by', 'from', 'on', or 'by using' rather than 'via' unless updating existing content that uses the term.", "location": {"path": "docs/src/main/asciidoc/gradle-tooling.adoc", "range": {"start": {"line": 624, "column": 22}}}, "severity": "WARNING"}

quarkus {
quarkusBuildProperties {
Expand Down Expand Up @@ -746,11 +746,11 @@
TIP: The Quarkus Gradle plugin detects a _CI environment_, if the `CI` environment variable is present.

How the various Quarkus package types are cached in non-CI and CI environments is described in the following table.
Note that even if a task's output is not _cached_, the _up-to-date_ checks still apply.

Check warning on line 749 in docs/src/main/asciidoc/gradle-tooling.adoc

View workflow job for this annotation

GitHub Actions / Linting with Vale

[vale] reported by reviewdog 🐶 [Quarkus.SentenceLength] Try to keep sentences to an average of 32 words or fewer. Raw Output: {"message": "[Quarkus.SentenceLength] Try to keep sentences to an average of 32 words or fewer.", "location": {"path": "docs/src/main/asciidoc/gradle-tooling.adoc", "range": {"start": {"line": 749, "column": 25}}}, "severity": "INFO"}

Check warning on line 749 in docs/src/main/asciidoc/gradle-tooling.adoc

View workflow job for this annotation

GitHub Actions / Linting with Vale

[vale] reported by reviewdog 🐶 [Quarkus.Fluff] Depending on the context, consider using 'Be concise: rewrite the sentence to not use' rather than 'Note that'. Raw Output: {"message": "[Quarkus.Fluff] Depending on the context, consider using 'Be concise: rewrite the sentence to not use' rather than 'Note that'.", "location": {"path": "docs/src/main/asciidoc/gradle-tooling.adoc", "range": {"start": {"line": 749, "column": 25}}}, "severity": "INFO"}

NOTE: The Quarkus application build is split across three tasks. The `quarkusBuild` taskl is responsible to _provide_
NOTE: The Quarkus application build is split across three tasks. The `quarkusBuild` task is responsible to _provide_
a built Quarkus application. The tasks `quarkusDependenciesBuild` and `quarkusAppPartsBuild` are considered internal
tasks (may change at any time w/o prior notice). See below for details.

Check warning on line 753 in docs/src/main/asciidoc/gradle-tooling.adoc

View workflow job for this annotation

GitHub Actions / Linting with Vale

[vale] reported by reviewdog 🐶 [Quarkus.TermsWarnings] Consider using 'might (for possiblity)' or 'can (for ability)' rather than 'may' unless updating existing content that uses the term. Raw Output: {"message": "[Quarkus.TermsWarnings] Consider using 'might (for possiblity)' or 'can (for ability)' rather than 'may' unless updating existing content that uses the term.", "location": {"path": "docs/src/main/asciidoc/gradle-tooling.adoc", "range": {"start": {"line": 753, "column": 33}}}, "severity": "WARNING"}

[cols="2,5,1,1"]
|===
Expand Down