-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
revert Merge branch '7.0.x' into 6.2.x (#501)
* revert github resolve merge conflict bug that resulted in 7.0.x merge into 6.2.x branch * use grails-core:6.2.1-SNAPSHOT
- Loading branch information
1 parent
3ca72b6
commit fc4e2a3
Showing
117 changed files
with
5,097 additions
and
3,476 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: "Java CI" | ||
name: Java CI | ||
on: | ||
push: | ||
branches: | ||
|
@@ -12,23 +12,25 @@ jobs: | |
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
strategy: | ||
matrix: | ||
java: ['11', '14', '17'] | ||
steps: | ||
- name: "📥 Checkout the repository" | ||
uses: actions/checkout@v4 | ||
- name: "☕️ Setup JDK" | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
- name: "🐘 Setup Gradle" | ||
uses: gradle/actions/setup-gradle@v4 | ||
- name: "🔨 Run Build" | ||
distribution: 'adopt' | ||
java-version: ${{ matrix.java }} | ||
- name: Run Build | ||
id: build | ||
uses: gradle/gradle-build-action@v3 | ||
env: | ||
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | ||
run: ./gradlew build --refresh-dependencies | ||
- name: "📤 Upload Artifact" | ||
if: success() | ||
with: | ||
arguments: build --refresh-dependencies | ||
- name: Upload Distribution | ||
if: success() && matrix.java == '11' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: grails-gsp-SNAPSHOT.zip | ||
|
@@ -40,49 +42,47 @@ jobs: | |
permissions: | ||
contents: read | ||
steps: | ||
- name: "📥 Checkout the repository" | ||
uses: actions/checkout@v4 | ||
- name: "☕️ Setup JDK" | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
- name: "🐘 Setup Gradle" | ||
uses: gradle/actions/setup-gradle@v4 | ||
- name: "📤 Publish Snapshot to repo.grails.org" | ||
distribution: 'adopt' | ||
java-version: '11' | ||
- name: Publish to repo.grails.org | ||
uses: gradle/gradle-build-action@v3 | ||
env: | ||
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | ||
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | ||
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | ||
run: ./gradlew publish | ||
with: | ||
arguments: publish | ||
docs: | ||
if: github.event_name == 'push' | ||
needs: build | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: "📥 Checkout the repository" | ||
uses: actions/checkout@v4 | ||
- name: "☕️ Setup JDK" | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
- name: "🐘 Setup Gradle" | ||
uses: gradle/actions/setup-gradle@v4 | ||
- name: "🔨 Build Docs" | ||
distribution: 'adopt' | ||
java-version: '11' | ||
- name: Build Docs | ||
id: docs | ||
uses: gradle/gradle-build-action@v3 | ||
with: | ||
arguments: docs | ||
env: | ||
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | ||
run: ./gradlew docs --refresh-dependencies | ||
- name: "📤 Publish docs to Github Pages" | ||
- name: Publish to Github Pages | ||
if: steps.docs.outcome == 'success' | ||
uses: grails/github-pages-deploy-action@v2 | ||
env: | ||
TARGET_REPOSITORY: ${{ github.repository }} | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
BRANCH: gh-pages | ||
FOLDER: build/docs | ||
COMMIT_EMAIL: [email protected] | ||
COMMIT_NAME: grails-build | ||
COMMIT_EMAIL: [email protected] | ||
COMMIT_NAME: Puneet Behl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ on: | |
release: | ||
types: [published] | ||
env: | ||
GIT_USER_NAME: 'grails-build' | ||
GIT_USER_EMAIL: '[email protected]' | ||
GIT_USER_NAME: puneetbehl | ||
GIT_USER_EMAIL: [email protected] | ||
jobs: | ||
publish: | ||
outputs: | ||
|
@@ -18,8 +18,8 @@ jobs: | |
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
distribution: 'adopt' | ||
java-version: 11 | ||
- name: Set the current release version | ||
id: release_version | ||
run: echo "value=${GITHUB_REF:11}" >> $GITHUB_OUTPUT | ||
|
@@ -104,8 +104,8 @@ jobs: | |
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
distribution: 'adopt' | ||
java-version: '11' | ||
- name: Publish Documentation | ||
id: docs | ||
uses: gradle/gradle-build-action@v3 | ||
|
@@ -123,4 +123,4 @@ jobs: | |
FOLDER: build/docs | ||
VERSION: ${{ needs.publish.outputs.release_version }} | ||
COMMIT_EMAIL: ${{ env.GIT_USER_EMAIL }} | ||
COMMIT_NAME: ${{ env.GIT_USER_NAME }} | ||
COMMIT_NAME: "Puneet Behl" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -224,6 +224,7 @@ SECTION 1: BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES | |
>>> dom4j-1.6.1 | ||
>>> hsqldb-1.8.0.10 | ||
>>> jline-2.11 | ||
>>> sitemesh-2.4 | ||
>>> slf4j-1.7.5 | ||
|
||
|
||
|
@@ -392,6 +393,58 @@ Copyright (c) 2002-2007, Marc Prud'hommeaux. All rights reserved. | |
This software is distributable under the BSD license. See the terms of the | ||
BSD license in the documentation provided with this software. | ||
|
||
|
||
>>> sitemesh-2.4 | ||
|
||
The OpenSymphony Software License, Version 1.1 | ||
|
||
(this license is derived and fully compatible with the Apache Software | ||
License - see http://www.apache.org/LICENSE.txt) | ||
|
||
Copyright (c) 2001 The OpenSymphony Group. All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions | ||
are met: | ||
|
||
1. Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in | ||
the documentation and/or other materials provided with the | ||
distribution. | ||
|
||
3. The end-user documentation included with the redistribution, | ||
if any, must include the following acknowledgment: | ||
"This product includes software developed by the | ||
OpenSymphony Group (http://www.opensymphony.com/)." | ||
Alternately, this acknowledgment may appear in the software itself, | ||
if and wherever such third-party acknowledgments normally appear. | ||
|
||
4. The names "OpenSymphony" and "The OpenSymphony Group" | ||
must not be used to endorse or promote products derived from this | ||
software without prior written permission. For written | ||
permission, please contact [email protected] . | ||
|
||
5. Products derived from this software may not be called "OpenSymphony" | ||
or "SiteMesh", nor may "OpenSymphony" or "SiteMesh" appear in their | ||
name, without prior written permission of the OpenSymphony Group. | ||
|
||
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED | ||
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR | ||
ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | ||
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
SUCH DAMAGE. | ||
|
||
|
||
>>> slf4j-1.7.5 | ||
|
||
Copyright (c) 2004-2007 QOS.ch | ||
|
Oops, something went wrong.