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

Check annotation path #584

Merged
merged 8 commits into from
May 15, 2023
Merged

Check annotation path #584

merged 8 commits into from
May 15, 2023

Conversation

keynmol
Copy link
Contributor

@keynmol keynmol commented May 11, 2023

If annotation processors are used, then compileOnly classpath is ignored entirely.

We attempt to add the plugin to that, but if it fails - it gives us a clear signal to go back to agents instead.

Test plan

  • Add explicit test

@keynmol keynmol marked this pull request as ready for review May 11, 2023 12:09
@keynmol keynmol requested a review from olafurpg May 11, 2023 15:16
Comment on lines +62 to +76
val hasAnnotationPath = {
val apConfig = project
.getConfigurations()
.getByName("annotationProcessor")
if (apConfig.isCanBeResolved()) {
apConfig.getDependencies().size() > 0
} else
false
}

val compilerPluginAdded =
try {
project.getDependencies().add("compileOnly", javacDep)
if (hasAnnotationPath)
project.getDependencies().add("annotationProcessor", javacDep)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

The meat of the PR

Comment on lines +21 to +51
checkGradleBuild(
"annotation-path",
"""|/build.gradle
|plugins {
| id 'java'
|}
|repositories {
| // Use Maven Central for resolving dependencies.
| mavenCentral()
|}
|dependencies {
| compileOnly 'org.immutables:value:2.9.2'
| annotationProcessor 'org.immutables:value:2.9.2'
|}
|/src/main/java/WorkflowOptions.java
|package test;
|import org.immutables.value.Value;
|import java.util.Optional;
|@Value.Immutable
|public abstract class WorkflowOptions {
| public abstract Optional<String> getWorkflowIdReusePolicy();
|}
""".stripMargin,
/*
An immutable version will be generated along with the original class:
- build/generated/sources/annotationProcessor/java/main/test/ImmutableWorkflowOptions.java.semanticdb
- /META-INF/semanticdb/src/main/java/WorkflowOptions.java.semanticdb
*/
expectedSemanticdbFiles = 2,
gradleVersions = List(Gradle8, Gradle7, Gradle67)
)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Test for the meat of the PR

set -eu
for REPO in circe/circe indeedeng/proctor
do
check_repo() {
Copy link
Member

Choose a reason for hiding this comment

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

Might be nice to move this script into a separate file in the repo

@keynmol keynmol merged commit c0a30a2 into main May 15, 2023
@keynmol keynmol deleted the check-annotation-path branch May 15, 2023 08:15
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.

None yet

2 participants