File tree Expand file tree Collapse file tree 5 files changed +11
-9
lines changed
src/main/groovy/grails/plugin/springsecurity Expand file tree Collapse file tree 5 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 33 release :
44 types : [published]
55env :
6- GIT_USER_NAME : puneetbehl
7- GIT_USER_EMAIL : behlp@unityfoundation.io
6+ GIT_USER_NAME : ' grails-build '
7+ GIT_USER_EMAIL : ' grails-build@users.noreply.github.com '
88jobs :
99 release :
1010 runs-on : ubuntu-latest
1111 env :
12- GIT_USER_NAME : puneetbehl
13- GIT_USER_EMAIL : behlp@unityfoundation.io
12+ GIT_USER_NAME : ' grails-build '
13+ GIT_USER_EMAIL : ' grails-build@users.noreply.github.com '
1414 steps :
1515 - uses : actions/checkout@v4
1616 - uses : gradle/wrapper-validation-action@v2
Original file line number Diff line number Diff line change @@ -14,10 +14,9 @@ if (isReleaseVersion) {
1414 String nexusUser = findProperty(' sonatypeUsername' )
1515 String nexusPass = findProperty(' sonatypePassword' )
1616 String nexusStagingProfileId = findProperty(' sonatypeStagingProfileId' )
17- String nexusUrl = findProperty(' sonatypeNexusUrl' ) ?: ' https://s01.oss.sonatype.org/service/local/'
1817 repositories {
1918 sonatype {
20- nexusUrl = uri(nexusUrl )
19+ nexusUrl = uri(' https://s01.oss.sonatype.org/service/local/ ' )
2120 username = nexusUser
2221 password = nexusPass
2322 stagingProfileId = nexusStagingProfileId
Original file line number Diff line number Diff line change 11[versions ]
22asset-pipeline = ' 5.0.1'
3+ bytebuddy = ' 1.15.10'
34commons-text = ' 1.12.0'
45ehcache = ' 3.10.8'
56geb = ' 7.0'
@@ -27,6 +28,7 @@ tomcat = '10.1.29'
2728[libraries ]
2829commons-text = { module = ' org.apache.commons:commons-text' , version.ref = ' commons-text' }
2930ehcache = { module = ' org.ehcache:ehcache' , version.ref = ' ehcache' }
31+ bytebuddy = { module = ' net.bytebuddy:byte-buddy' , version.ref = ' bytebuddy' }
3032geb-core = { module = ' org.gebish:geb-core' , version.ref = ' geb' }
3133geb-spock = { module = ' org.gebish:geb-spock' , version.ref = ' geb' }
3234gorm-hibernate5 = { module = ' org.grails.plugins:hibernate5' , version.ref = ' gorm-hibernate5' }
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ dependencies {
4747 testImplementation libs. spring. test
4848 testImplementation libs. spring. security. config
4949
50+ testRuntimeOnly libs. bytebuddy
5051 testRuntimeOnly libs. slf4j. nop // Prevents warnings about missing slf4j implementation during tests
5152}
5253
Original file line number Diff line number Diff line change 1- /* Copyright 2006-2016 the original author or authors.
1+ /* Copyright 2006-2024 the original author or authors.
22 *
33 * Licensed under the Apache License, Version 2.0 (the "License");
44 * you may not use this file except in compliance with the License.
1616
1717/**
1818 * Stores the default order numbers of all Spring Security filters for use in configuration.
19- *
19+ * <p>
2020 * Equivalent to <code>org.springframework.security.config.http.SecurityFilters</code> which
2121 * unfortunately is package-default.
2222 *
2323 * @author Burt Beckwith
2424 */
25- enum SecurityFilterPosition {
25+ public enum SecurityFilterPosition {
2626
2727 FIRST (Integer .MIN_VALUE ),
2828
You can’t perform that action at this time.
0 commit comments