-
-
Notifications
You must be signed in to change notification settings - Fork 955
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
artifact rename proposal #14080
artifact rename proposal #14080
Conversation
d4fe0d7
to
6437c43
Compare
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.
Reviewed: https://github.com/jdaugherty/grails-core/blob/3b4da92e339b7b688011e4a8ffc3c2aaea723680/RENAME.md?plain=1 iteration
I am still a little concerned with the artifacts being security-spring and the project name being spring-security. Matching the upstream project seems like the best idea https://github.com/spring-projects/spring-security.
RENAME.md
Outdated
| org.grails | tck-base | org.apache.grails.data | grails-data-mapping-tck-base | | | grails-data-mapping | | ||
| org.grails | tck-domains | org.apache.grails.data | grails-data-mapping-tck-domains | | | grails-data-mapping | | ||
| org.grails | tck-tests | org.apache.grails.data | grails-data-mapping-tck-tests | | | grails-data-mapping | | ||
| org.grails | grails-gorm-testing-support | org.apache.grails.testing | grails-data-mapping-testing-support | | | grails-data-mapping | |
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 don't think it's a good idea to use different groupIds in the same repository.
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.
Because of the circular dependencies, I don't think we can realistically adhere to keeping the same package for an entire repo. We have intentionally brought code together in 7 because we found so much of it wasn't being tested. We may even be forced to bring more repositories together because of the requirements of the ASF release process.
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 don't think it's a good idea to use different groupIds in the same repository.
@rainboyan Why don't you think it's a good idea? (We will use this practice extensively in the Grails Core repository.)
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 haven't seen this practice in other open source projects before. I don't think this solves the circular dependency problem.
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'm saying that the circular dependency problem is slowly being solved by collapsing the repos. Meaning, there will be several gradle projects in the same repo going forward. For example, grails-core.
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.
Spring uses an artifact prefixes to distinguish the purpose, but since we're removing Plugin
from the name we agreed on using the group id instead of using prefixes.
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.
Spring uses an artifact prefixes to distinguish the purpose, but since we're removing Plugin from the name we agreed on using the group id instead of using prefixes.
Until a better solution comes out, I still recommend not changing.
RENAME.md
Outdated
| org.grails | grails-shell | org.apache.grails | grails-shell-cli | | | grails-core | | ||
| org.grails | grails-plugin-sitemesh3 | org.apache.grails | grails-sitemesh3 | | | grails-views | | ||
| org.grails | grails-spring | org.apache.grails | grails-spring | | | grails-core | | ||
| org.grails.plugins | spring-security-acl | org.apache.grails | grails-security-spring-acl | | | grails-spring-security | |
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.
How about changing repository to: grails-security,
and using group org.apache.grails.security?
-- org.apache.grails.security.spring (package name)
---- grails-security-spring-acl
---- grails-security-spring-cas
-- org.apache.grails.security.shiro (package name)
---- grails-security-shiro
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.
The agreement was to remove Plugin / starter conventions and replace with a single root group id "org.apache.grails"
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.
Maybe I missed the previous discussion, but is this convention a well-known rule, or is it just a common understanding among Grails developers? This makes it difficult for me to understand.
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.
Maybe I missed the previous discussion, but is this convention a well-known rule, or is it just a common understanding among Grails developers? This makes it difficult for me to understand.
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.
In the discussion for this PR on the mailing list, we made this proposal so we could move forward with removing plugin
from the names.
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.
If I must have a choice between using plugin
suffix and using the root groupId org.apache.grails
to distinguish between plugins and libraries, I will choose the first one. In Grace, I have always used plugin
as the archiveClassifier of the plugin jars.
For example, fields-6.0-plugin.jar, cache-6.0-plugin.jar, So, it's easy for us to know that these are plugins.
grails-gradle-model changed package from model -> gradle grails-security-spring -> grails-spring-security
groupId view -> views
…e following have been changed: org.apache.grails:grails-testing-views-gson org.apache.grails:grails-testing-web org.apache.grails:grails-testing-datamapping org.apache.grails:grails-testing
This is what a default generated web-app (from the current state of buildscript {
dependencies {
classpath "com.bertramlabs.plugins:asset-pipeline-gradle"
classpath platform("org.apache.grails:grails-bom:$grailsVersion")
classpath "org.apache.grails:grails-gradle-plugins"
classpath "org.apache.grails:grails-data-hibernate5"
}
}
apply plugin: "asset-pipeline"
apply plugin: "org.apache.grails.gradle.grails-web"
apply plugin: "org.apache.grails.gradle.grails-gsp"
dependencies {
profile "org.apache.grails.profiles:web"
developmentOnly "org.webjars.npm:bootstrap"
developmentOnly "org.webjars.npm:bootstrap-icons"
developmentOnly "org.webjars.npm:jquery"
implementation platform("org.apache.grails:grails-bom:$grailsVersion")
implementation "org.apache.grails:grails-core"
implementation "org.apache.grails:grails-logging"
implementation "org.apache.grails:grails-databinding"
implementation "org.apache.grails:grails-i18n"
implementation "org.apache.grails:grails-interceptors"
implementation "org.apache.grails:grails-rest-transforms"
implementation "org.apache.grails:grails-services"
implementation "org.apache.grails:grails-url-mappings"
implementation "org.apache.grails.web:grails-web-boot"
implementation "org.apache.grails:grails-gsp"
implementation "org.apache.grails:grails-data-hibernate5"
implementation "org.apache.grails:grails-scaffolding"
implementation "org.springframework.boot:spring-boot-autoconfigure"
implementation "org.springframework.boot:spring-boot-starter"
implementation "org.springframework.boot:spring-boot-starter-actuator"
implementation "org.springframework.boot:spring-boot-starter-logging"
implementation "org.springframework.boot:spring-boot-starter-tomcat"
implementation "org.springframework.boot:spring-boot-starter-validation"
console "org.apache.grails:grails-console"
runtimeOnly "com.bertramlabs.plugins:asset-pipeline-grails"
runtimeOnly "com.h2database:h2"
runtimeOnly "com.zaxxer:HikariCP"
runtimeOnly "org.fusesource.jansi:jansi"
integrationTestImplementation testFixtures("org.apache.grails:grails-geb")
testImplementation "org.apache.grails:grails-testing-support-gorm"
testImplementation "org.apache.grails:grails-testing-support-web"
testImplementation "org.spockframework:spock-core"
} |
High level feedback on the proposal:
org.apache.grails
will be used for any plugin traditionally included by an end-user in their grails or spring app.org.apache.grails
and the codecs-api that the plugin includes would have a group oforg.apache.grails.codecs
grails-testing-
to ensure people are not including them in a regular application.org.apache.grails:grails-gradle-plugins
grails-
(unless a profile)views
is dropped from the artifact id to be consistent with view technologies (gsp, gson, markup)grails-console
->grails-gradle-console