-
Notifications
You must be signed in to change notification settings - Fork 229
Update Docs to use Apache Grails Maven Groupid #1155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Hi James, are you sure ? (I may be looking in the wrong place though) |
|
Updating to remove plugins from groupid based on https://repository.apache.org/content/repositories/snapshots/org/apache/grails/ |
|
FYI: This is failing because spring security still needs updated for hte publish move. I'll open a separate PR & merge that fix. |
d205bb5 to
11f9ab3
Compare
sbglasius
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe that all Spring Security plugins are now prefixed with grails-
|
Looks like this mostly resolves: #1049 The only thing left are the s2 apps / commands |
sbglasius
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Found several grails-spring-security-core that should be replaced with grails-spring-security
| implementation 'org.grails.plugins:cxf:3.1.1' | ||
| // CXF above security. | ||
| implementation 'org.grails.plugins:spring-security-core:{revnumber}' | ||
| implementation 'org.apache.grails:grails-spring-security-core:{revnumber}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Drop -core
| [source,gradle,subs="+attributes"] | ||
| ---- | ||
| implementation 'org.grails.plugins:spring-security-core:{revnumber}' | ||
| implementation 'org.apache.grails:grails-spring-security-core:{revnumber}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
drop -core
| dependencies { | ||
| // ... other dependencies | ||
| implementation 'org.grails.plugins:spring-security-core:{revnumber}' | ||
| implementation 'org.apache.grails:grails-spring-security-core:{revnumber}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
drop -core
| dependencies { | ||
| ... | ||
| compile 'org.grails.plugins:spring-security-core:{project-version}' | ||
| implementation 'org.apache.grails:grails-spring-security-core:{project-version}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
drop -core
plugin-ldap/docs/src/docs/usage.adoc
Outdated
| compile ("org.grails.plugins:spring-security-ldap:{version}") { | ||
| exclude group: 'org.grails.plugins', module:'spring-security-core' | ||
| } | ||
| implementation "org.apache.grails:grails-spring-security-core:{version}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
drop -core
plugin-oauth2/README.md
Outdated
| ... | ||
| implementation 'org.grails.plugins:spring-security-core:5.2.1' | ||
| implementation 'org.grails.plugins:spring-security-oauth2:3.0.0' | ||
| implementation 'org.apache.grails:grails-spring-security-core:{revnumber}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
drop -core
plugin-oauth2/README.md
Outdated
| 2. Add the following plugins as dependency in `build.gradle`: | ||
| * `compileOnly 'org.grails.plugins:spring-security-core:3.+'` | ||
| * `compileOnly 'org.grails.plugins:spring-security-oauth2:1.1.+'` | ||
| * `compileOnly 'org.apache.grails:grails-spring-security-core:{revnumber}'` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
drop -core
| // ... | ||
| api 'org.grails.plugins:spring-security-core' | ||
| api 'org.grails.plugins:spring-security-oauth2' | ||
| api 'org.apache.grails:grails-spring-security-core:{version}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
drop -core
|
@jamesfredley I pushed a commit to your branch with the fixes |
No description provided.