Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 7c10e5a

Browse files
authored
Merge pull request #572 from grails/renovate/io.github.gradle-nexus-publish-plugin-1.x
Update dependency io.github.gradle-nexus:publish-plugin to v1.3.0
2 parents 884e1ec + 5ba097e commit 7c10e5a

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/gradle.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
java: ['8', '11', '14']
19+
java: ['11', '14']
2020
mongodb-version: ['4.0']
2121
env:
2222
WORKSPACE: ${{ github.workspace }}
@@ -65,28 +65,28 @@ jobs:
6565
- name: Publish to repo.grails.org
6666
id: publish
6767
uses: gradle/gradle-build-action@v2
68-
if: steps.build.outcome == 'success' && github.event_name == 'push' && matrix.java == '8'
68+
if: steps.build.outcome == 'success' && github.event_name == 'push' && matrix.java == '11'
6969
env:
7070
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
7171
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}
7272
with:
7373
arguments: -Dorg.gradle.internal.publish.checksums.insecure=true publish
7474
- name: Build Docs
7575
id: docs
76-
if: steps.build.outcome == 'success' && github.event_name == 'push' && matrix.java == '8'
76+
if: steps.build.outcome == 'success' && github.event_name == 'push' && matrix.java == '11'
7777
uses: gradle/gradle-build-action@v2
7878
with:
7979
arguments: docs:docs
8080
- name: Determine docs target repository
81-
if: steps.docs.outcome == 'success' && github.event_name == 'push' && matrix.java == '8'
81+
if: steps.docs.outcome == 'success' && github.event_name == 'push' && matrix.java == '11'
8282
uses: haya14busa/action-cond@v1
8383
id: docs_target
8484
with:
8585
cond: ${{ github.repository == 'grails/gorm-mongodb' }}
8686
if_true: "grails/grails-data-mapping"
8787
if_false: ${{ github.repository }}
8888
- name: Publish to Github Pages
89-
if: steps.docs.outcome == 'success' && github.event_name == 'push' && matrix.java == '8'
89+
if: steps.docs.outcome == 'success' && github.event_name == 'push' && matrix.java == '11'
9090
uses: micronaut-projects/github-pages-deploy-action@master
9191
env:
9292
TARGET_REPOSITORY: ${{ steps.docs_target.outputs.value }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
java: ['8']
10+
java: ['11']
1111
env:
1212
GIT_USER_NAME: puneetbehl
1313
GIT_USER_EMAIL: [email protected]

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.6.1'
1414
classpath "gradle.plugin.com.energizedwork.webdriver-binaries:webdriver-binaries-gradle-plugin:$webdriverBinariesVersion"
1515
classpath "org.grails.plugins:views-gradle:2.3.2"
16-
classpath "io.github.gradle-nexus:publish-plugin:1.1.0"
16+
classpath "io.github.gradle-nexus:publish-plugin:1.3.0"
1717
}
1818
}
1919

@@ -201,8 +201,8 @@ subprojects { project ->
201201
apply plugin: 'maven-publish'
202202
apply plugin: 'signing'
203203

204-
sourceCompatibility = "1.8"
205-
targetCompatibility = "1.8"
204+
sourceCompatibility = "1.11"
205+
targetCompatibility = "1.11"
206206

207207
configurations.all {
208208
resolutionStrategy.eachDependency { DependencyResolveDetails details ->

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ mongoJavaServerVersion=1.28.0
1717
mongodbDriverVersion=4.5.0
1818
mongodbRxDriverVersion=1.10.0
1919
pluginGrailsVersion=5.2.2
20-
projectVersion=7.3.1-SNAPSHOT
20+
projectVersion=8.0.0-SNAPSHOT
2121
seleniumSafariDriverVersion=3.14.0
2222
seleniumVersion=3.14.0
2323
spockVersion=2.1-groovy-3.0

grails-plugin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
sourceCompatibility = 1.8
2-
targetCompatibility = 1.8
1+
sourceCompatibility = 1.11
2+
targetCompatibility = 1.11
33

44
dependencyManagement {
55
imports {

0 commit comments

Comments
 (0)