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

build(pom): restore dagger compiler property #1662

Merged
merged 3 commits into from
Sep 8, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@
<org.owasp.dependency.check.version>8.3.1</org.owasp.dependency.check.version>
<com.google.cloud.tools.jib.maven.plugin.version>3.3.2</com.google.cloud.tools.jib.maven.plugin.version>

<!-- Use a separate property for dependency alignment purposes, keep the two versions in sync. -->
<com.google.dagger.version>2.47</com.google.dagger.version>
<com.google.dagger.compiler.version>2.47</com.google.dagger.compiler.version>
ebaron marked this conversation as resolved.
Show resolved Hide resolved

<io.cryostat.core.version>2.21.1</io.cryostat.core.version>

Expand Down Expand Up @@ -353,7 +355,7 @@
<path>
<groupId>com.google.dagger</groupId>
<artifactId>dagger-compiler</artifactId>
<version>${com.google.dagger.version}</version>
<version>${com.google.dagger.compiler.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
Expand Down
Loading