Skip to content

Commit

Permalink
Fix annotation processor (#1744)
Browse files Browse the repository at this point in the history
Signed-off-by: Jeffrey Kinard <jeff@thekinards.com>
  • Loading branch information
Polber authored Jul 23, 2024
1 parent 5be5817 commit 63072f4
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 1 deletion.
5 changes: 5 additions & 0 deletions it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,11 @@
<artifactId>auto-value</artifactId>
<version>${autovalue.version}</version>
</path>
<path>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>${autovalue.service.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
Expand Down
5 changes: 5 additions & 0 deletions plaintext-logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@
<artifactId>auto-value</artifactId>
<version>${autovalue.version}</version>
</path>
<path>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>${autovalue.service.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
Expand Down
5 changes: 5 additions & 0 deletions plugins/core-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@
<artifactId>auto-value</artifactId>
<version>${auto-value.version}</version>
</path>
<path>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>${autovalue.service.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@

<!-- Common dependency versions -->
<autovalue.version>1.10.4</autovalue.version>
<autovalue.service.version>1.0.2</autovalue.service.version>
<avro.version>1.11.3</avro.version>
<caffeine.version>3.1.8</caffeine.version>
<checkstyle.version>10.7.0</checkstyle.version>
Expand Down
5 changes: 5 additions & 0 deletions structured-logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@
<artifactId>auto-value</artifactId>
<version>${autovalue.version}</version>
</path>
<path>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>${autovalue.service.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
Expand Down
6 changes: 5 additions & 1 deletion v1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
</description>

<properties>
<autovalue.service.version>1.0.2</autovalue.service.version>
<mock-server-netty.version>5.14.0</mock-server-netty.version>
<open-census.version>0.24.0</open-census.version>
<!-- TODO: check if this could be declared on a Beam BOM instead of here -->
Expand Down Expand Up @@ -741,6 +740,11 @@
<artifactId>auto-value</artifactId>
<version>${autovalue.version}</version>
</path>
<path>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>${autovalue.service.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
Expand Down
5 changes: 5 additions & 0 deletions v2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,11 @@
<artifactId>auto-value</artifactId>
<version>${autovalue.version}</version>
</path>
<path>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>${autovalue.service.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
Expand Down

0 comments on commit 63072f4

Please sign in to comment.