Skip to content
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

Restructure build #14093

Merged
merged 94 commits into from
Apr 2, 2025
Merged

Restructure build #14093

merged 94 commits into from
Apr 2, 2025

Conversation

matrei
Copy link
Contributor

@matrei matrei commented Mar 30, 2025

Make the build composition based.

matrei added 30 commits March 24, 2025 10:51
Since `project` is the default delegate, explicit references
are unnecessary and can be removed for cleaner code.
Since `findProject` returns `null` for missing properties, we
can leverage that to simplify getting and setting properties
that can be provided from multiple sources.
Remove unnecessary curly brackets from `GString`s for improved
readability.
This commit removes the explicit setting of `transitionCheckOption`
for `nexusPublishing`.

The default values are:
- `maxRetries`: 60
- `delayBetween`: 10
Remove the explicit exclusion of `javaee-web-api-6.0.jar`
for `groovydoc` and `javadoc` tasks, as it is no longer
on the classpath.
This is handled automatically by Gradle since version 7 unless
`allowInsecureProtocol` is explicitly set to `true`.
We are using `buildSrc` now. To list the build dependencies, do:
- `cd buildSrc`
- `gradle dependencies`
This was added a long time ago, but it's unclear to me why.
It can be reverted if it's found to be required later.
Replace `manifest.mainAttributes()` with the public Gradle API method
`manifest.attributes()`, avoiding reliance on the internal
`DefaultManifest` class.
Eliminate outdated `groovy.jar` resolution, likely from a previous
version of the Groovy joint compilation workflow.
Refactor file resolution to use `layout` API for better
compatibility with Gradle's lazy evaluation and configuration
cache.
The special handling of `async` projects appears to be unnecessary
and can most probably be removed.
Clarify the code by directly using the `:grails-bom` project name
instead of the variable, as the project name is already established.
Set the Maven repository publishing credentials directly,
avoiding unnecessary use of variables.
Ensure consistency by aligning with the recommended usage of
`MavenArtifactRepository.setUrl(URI)` for setting repository URLs.
- Remove unused properties in `ext`
- Set credentials directly rather than using variables
The upgrade of transitive Groovy dependencies is no longer necessary.
Using the type-safe API for configuring the Nexus publish extension provides
IDE type hints and auto-completion.
Set the root project version using `projectVersion` for consistency.
- Remove `subprojects` closure parameter and reference the delegate directly
- Use lazy, type-safe API when configuring extensions
- Replace `ext` properties with variables where possible
- Eliminate unnecessary `uri()`` method in repository URL setters
- Use `=` for setters and parentheses for methods for clarity
- Remove unnecessary empty string default when `null` suffices
matrei added 5 commits April 1, 2025 07:24
grails-docs classes are used in Gradle builds, so we
must compile with Groovy 3 to ensure compatibility
(until Gradle upgrades to Groovy 4).
The source jars are already included in the `dist` directory
in the distribution. No need to duplicate them also in the `src`
directory.

Previously, for some reason, also `grails-datastore*` source jars
where included in the distribution `src` directory, but after
recent changes that was no longer the case.
Copy link
Contributor

@jdaugherty jdaugherty left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we please be sure to add back the remaining gsp / gson plugins where I marked?

@matrei
Copy link
Contributor Author

matrei commented Apr 1, 2025

Can we please be sure to add back the remaining gsp / gson plugins where I marked?

We could, but I think we are only wasting build time. The demo33 project smoke tests the Gradle plugins.

@jdaugherty
Copy link
Contributor

Can we please be sure to add back the remaining gsp / gson plugins where I marked?

We could, but I think we are only wasting build time. The demo33 project smoke tests the Gradle plugins.

We don't know how these projects would diverge over time so it's safe to add them to all of them. Specifically, micronaut is likely going to be different than the base grails app so it's probably critical to have it there at the least.

@jamesfredley
Copy link
Contributor

I tested grails-shell CLI zip and these changes add a doc directory with groovydocs (1,815 files) whereas it was 222 files total before. I think we should skip the docs in the zip distribution.

Additionally this issue https://github.com/apache/grails-core/pull/14065/files is back on Windows.

@jdaugherty
Copy link
Contributor

I tested grails-shell CLI zip and these changes add a doc directory with groovydocs (1,815 files) whereas it was 222 files total before. I think we should skip the docs in the zip distribution.

Additionally this issue https://github.com/apache/grails-core/pull/14065/files is back on Windows.

I guess we should skip the withJavadoc() for the cli project?

Copy link
Contributor

@jamesfredley jamesfredley left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd like to fix the grails-shell CLI issue on Windows that reappeared before merging this, but would also be OK moving that to another ticket.

It seems dependency configuration excludes do not affect
inherited dependencies.

Related: apachegh-14065
@matrei
Copy link
Contributor Author

matrei commented Apr 2, 2025

I tested grails-shell CLI zip and these changes add a doc directory with groovydocs (1,815 files) whereas it was 222 files total before. I think we should skip the docs in the zip distribution.

Are you sure this has changed? I checked the previous release (v7.0.0-M3), and it appears to include the API docs in the doc subdirectory.

matrei added 2 commits April 2, 2025 10:31
This aligns with previous zip distribution releases.
This commit adds back the 'org.grails.grails-gsp' and
`org.grails.plugins.views-json` Gradle Plugins to the functional tests.

This will act as a smoke test that production compilation of views
does not fail when building.
Copy link
Contributor

@jamesfredley jamesfredley left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@matrei The changes for the CLI on windows work perfectly.

I went back and checked and you are correct on the doc directory being present for 7.0.0-M3 and 7.0.0-M1. The doc directory was not present on 6.2.x distributions and I have created an issue to explore that separately. #14100

Great work reorganizing this build!!!

@matrei matrei merged commit 9aaba1a into apache:7.0.x Apr 2, 2025
21 checks passed
@matrei matrei deleted the matrei/build-restructure branch April 2, 2025 14:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants