-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
chore: gradlefied spotless (do not merge) #50940
base: master
Are you sure you want to change the base?
Changes from all commits
4f1688e
b2d8c1b
69b6b34
2c1e05a
4c40c1e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,6 +68,7 @@ class AirbyteBulkConnectorExtension { | |
// Use a temporary configuration to find the Micronaut version | ||
// in the transitive dependencies of the Bulk CDK base. | ||
def tempConfiguration = project.configurations.detachedConfiguration() | ||
// NOTE: I think this is failing: ("Could not get unknown property 'first' for project of type org.gradle.api.Project.") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was not able to debug this and I'll probably need assistance to do so. Commenting out My best analysis is that in places like like 73, we are asking for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We could simply choose to not apply formatting on gradle-groovy files. I believe there's an effort underway led by @jdpgrailsdev to move to gradle-kotlin. |
||
def baseDependency = (cdk == "local") | ||
? project.dependencies.create(fromSource.first) | ||
: project.dependencies.create(fromJar.first) | ||
|
This file was deleted.
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 do you get this to be fast? I've tried this and found it to be painfully slow and gave up. Which is why, in the past, the spotless plugin was applied only at the root project and targeted all
**/*.java
files, but that wasn't a panacea either.