Skip to content

Commit 8809244

Browse files
committed
[skip ci] correct grails-forge locations
1 parent 411256d commit 8809244

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@ about it, see the [documentation](https://docs.grails.org/snapshot/index.html).
8484

8585
The legacy Apache Grails CLI is the command line interface that IntelliJ uses to interact with existing Apache Grails
8686
Applications. It can be used to generate applications or it can be used to interact with existing ones. To use it,
87-
download it to your preferred location from the [grails-forge](https://github.com/apache/grails-forge/releases) release
87+
download it to your preferred location from the [grails-forge](https://github.com/apache/grails-core/releases) release
8888
page. You can use the command `./grails-shell-cli help` to see what's possible.
8989

9090
### grails-forge-cli
9191

92-
The newer Apache Grails CLI is available from the [grails-forge](https://github.com/apache/grails-forge/releases)
92+
The newer Apache Grails CLI is available from the [grails-forge](https://github.com/apache/grails-core/releases)
9393
release page. You can use the command `./grails-forge-cli --help` to see what's possible.
9494

9595
### SDKMAN

grails-doc/src/en/guide/gettingStarted/downloadingAndInstalling.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ After installing, all three CLI commands: `grails`, `grails-shell-cli`, and `gra
6363

6464
For manual installation follow these steps:
6565

66-
* https://github.com/apache/grails-forge/releases[Download] a binary distribution of Grails and extract the resulting zip file to a location of your choice.
66+
* https://github.com/apache/grails-core/releases[Download] a binary distribution of Grails and extract the resulting zip file to a location of your choice.
6767
Then add the bin directory to your system path.
6868

6969
==== Unix/Linux

grails-forge/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Generates Grails applications.
2222

2323
## Installation
2424

25-
The CLI application comes in various flavours from a universal Java applications to native applications for Windows, Linux and OS X. These are available for direct download on the [releases page](https://github.com/apache/grails-forge/releases). For installation see the [Grails documentation](https://docs.grails.org/latest/guide/index.html#buildCLI).
25+
The CLI application comes in various flavours from a universal Java applications to native applications for Windows, Linux and OS X. These are available for direct download on the [releases page](https://github.com/apache/grails-core/releases). For installation see the [Grails documentation](https://docs.grails.org/latest/guide/index.html#buildCLI).
2626

2727
If you prefer not to install an application to create Grails applications you can do so with `curl` directly from the API:
2828

@@ -61,12 +61,12 @@ See the [Snapshot Documentation](https://grails.github.io/grails-forge/snapshot/
6161

6262
## Snapshots and Releases
6363

64-
Releases are published to SDKMan via [Github Actions](https://github.com/apache/grails-forge/actions).
64+
Releases are published to SDKMan via the Release action on [Github Actions](https://github.com/apache/grails-core/actions).
6565

6666
A release is performed with the following steps:
6767

68-
* [Publish the draft release](https://github.com/apache/grails-forge/releases). There should be already a draft release created, edit and publish it. The Git Tag should start with `v`. For example `v1.0.0`.
69-
* [Monitor the Workflow](https://github.com/apache/grails-forge/actions?query=workflow%3ARelease) to check it passed successfully.
68+
* [Publish the draft release](https://github.com/apache/grails-core/releases). There should be already a draft release created, edit and publish it. The Git Tag should start with `v`. For example `v1.0.0`.
69+
* [Monitor the Workflow](https://github.com/apache/grails-core/actions?query=workflow%3ARelease) to check it passed successfully.
7070
* Celebrate!
7171

7272
## Architecture

grails-forge/grails-cli/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,9 @@ sdkman {
186186
version = project.version
187187
hashtag = '#grailsfw'
188188
platforms = [
189-
'MAC_ARM64' : "https://github.com/apache/grails-forge/releases/download/v${project.version}/apache-grails-${project.version}-incubating-bin.zip",
190-
'MAC_OSX' : "https://github.com/apache/grails-forge/releases/download/v${project.version}/apache-grails-${project.version}-incubating-bin.zip",
191-
'WINDOWS_64': "https://github.com/apache/grails-forge/releases/download/v${project.version}/apache-grails-${project.version}-incubating-bin.zip",
192-
'LINUX_64' : "https://github.com/apache/grails-forge/releases/download/v${project.version}/apache-grails-${project.version}-incubating-bin.zip"
189+
'MAC_ARM64' : "https://github.com/apache/grails-core/releases/download/v${project.version}/apache-grails-${project.version}-incubating-bin.zip",
190+
'MAC_OSX' : "https://github.com/apache/grails-core/releases/download/v${project.version}/apache-grails-${project.version}-incubating-bin.zip",
191+
'WINDOWS_64': "https://github.com/apache/grails-core/releases/download/v${project.version}/apache-grails-${project.version}-incubating-bin.zip",
192+
'LINUX_64' : "https://github.com/apache/grails-core/releases/download/v${project.version}/apache-grails-${project.version}-incubating-bin.zip"
193193
] as Map<? extends String, ? extends String>
194194
}

grails-forge/src/main/docs/guide/installation/installFromSource.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ Clone the repository as follows:
2020

2121
[source,bash]
2222
----
23-
$ git clone https://github.com/apache/grails-forge.git
23+
$ git clone https://github.com/apache/grails-core.git
2424
----
2525

2626

27-
`cd` into the `grails-forge` directory and run the following command:
27+
`cd` into the `grails-core/grails-forge` directory and run the following command:
2828

2929
[source,bash]
3030
----

grails-forge/src/main/docs/guide/installation/installWindows.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ KIND, either express or implied. See the License for the
1616
specific language governing permissions and limitations
1717
under the License.
1818
////
19-
* Download the latest binary from https://github.com/apache/grails-forge/releases/[Grails Forge Release]
19+
* Download the latest binary from https://github.com/apache/grails-core/releases/[Grails Forge Release]
2020
* Extract the binary to appropriate location (For example: `C:\grails`)
2121
* Create an environment variable `GRAILS_HOME` which points to the installation directory i.e. `C:\grails`
2222
* Update the `PATH` environment variable, append `%GRAILS_HOME%\bin`.

0 commit comments

Comments
 (0)