This repository was archived by the owner on Feb 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +14
-21
lines changed
spring-security-rest-redis
spring-security-rest-testapp-profile Expand file tree Collapse file tree 6 files changed +14
-21
lines changed Original file line number Diff line number Diff line change 20
20
uses : gradle/actions/wrapper-validation@v3
21
21
- name : Setup Java
22
22
uses : actions/setup-java@v4
23
- with : { java-version: 17, distribution: temurin }
23
+ with : { java-version: 17, distribution: liberica }
24
24
- name : Run Tests
25
25
uses : gradle/actions/setup-gradle@v3
26
26
env :
39
39
- uses : gradle/wrapper-validation-action@v3
40
40
- uses : actions/setup-java@v4
41
41
with :
42
- distribution : temurin
42
+ distribution : liberica
43
43
java-version : 17
44
44
- name : Publish to Artifactory (repo.grails.org)
45
45
uses : gradle/actions/setup-gradle@v3
Original file line number Diff line number Diff line change 19
19
uses : gradle/actions/wrapper-validation@v3
20
20
- name : Set up JDK
21
21
uses : actions/setup-java@v4
22
- with : { java-version: 17, distribution: temurin }
22
+ with : { java-version: 17, distribution: liberica }
23
23
- name : Set the current release version
24
24
id : release_version
25
25
run : echo "value=${GITHUB_REF:11}" >> $GITHUB_OUTPUT
63
63
uses : gradle/actions/wrapper-validation@v3
64
64
- name : Set up JDK
65
65
uses : actions/setup-java@v4
66
- with : { java-version: 17, distribution: temurin }
66
+ with : { java-version: 17, distribution: liberica }
67
67
- name : Nexus Staging Close And Release
68
68
uses : gradle/gradle-build-action@v3
69
69
env :
98
98
uses : gradle/actions/wrapper-validation@v3
99
99
- name : Set up JDK
100
100
uses : actions/setup-java@v4
101
- with : { java-version: 17, distribution: temurin }
101
+ with : { java-version: 17, distribution: liberica }
102
102
- name : Generate Documentation
103
103
id : docs
104
104
uses : gradle/actions/setup-gradle@v3
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ version projectVersion
27
27
group " org.grails.plugins"
28
28
29
29
subprojects { Project project ->
30
- group " org.grails.plugins"
31
- version projectVersion
30
+ project . group " org.grails.plugins"
31
+ project . version projectVersion
32
32
33
33
ext. set(' grailsVersion' , project. grailsVersion)
34
34
ext. set(' isProfile' , project. name. endsWith(' -profile' ))
@@ -54,6 +54,8 @@ subprojects { Project project ->
54
54
apply plugin : " java-library"
55
55
56
56
dependencies {
57
+ implementation platform(" org.grails:grails-bom:$grailsVersion " )
58
+
57
59
console " org.grails:grails-console"
58
60
59
61
api " org.springframework.boot:spring-boot-starter-logging"
Original file line number Diff line number Diff line change 1
1
projectVersion =6.0.0-SNAPSHOT
2
- grailsVersion =7.0.0-SNAPSHOT
2
+ grailsVersion =7.0.0-M1
3
3
grailsGradlePluginVersion =7.0.0-SNAPSHOT
4
- gradlePublishPlugin =2 .0.0
5
- springSecurityCoreVersion =7 .0.0-SNAPSHOT
4
+ springSecurityCoreVersion =7 .0.0-M1
5
+ grailsRedisVersion =5 .0.0-M1
6
6
pac4jVersion =6.0.6
7
7
jackson.version =2.18.0
8
8
mavenPublishUrl =https://repo.grails.org/grails/plugins3-snapshots-local
Original file line number Diff line number Diff line change 1
1
dependencies {
2
2
api project(" :spring-security-rest" )
3
- api " org.grails.plugins:grails-redis:5.0.0-SNAPSHOT "
3
+ api " org.grails.plugins:grails-redis:$g railsRedisVersion "
4
4
api " redis.clients:jedis"
5
5
6
- profile " org.grails.profiles:plugin:${ grailsVersion} "
6
+ profile " org.grails.profiles:plugin:$grailsVersion "
7
7
}
Original file line number Diff line number Diff line change 1
- buildscript {
2
- repositories {
3
- maven { url " https://repo.grails.org/grails/core" }
4
- }
5
- dependencies {
6
- classpath " org.grails:grails-gradle-plugin:$grailsGradlePluginVersion "
7
- }
8
- }
9
-
10
1
tasks. register(' generateProfileConfig' ) {
11
2
copy {
12
3
from ' profile.yml.tmpl'
You can’t perform that action at this time.
0 commit comments