-
Notifications
You must be signed in to change notification settings - Fork 31
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
Conversation
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) |
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 meat of the PR
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) | ||
) |
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.
Test for the meat of the PR
set -eu | ||
for REPO in circe/circe indeedeng/proctor | ||
do | ||
check_repo() { |
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.
Might be nice to move this script into a separate file in the repo
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