Skip to content

Commit

Permalink
Declare immutable processor as an actual annotation processor
Browse files Browse the repository at this point in the history
  • Loading branch information
gortiz committed Oct 10, 2024
1 parent f16eecf commit 598b17e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 1 addition & 2 deletions pinot-query-planner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@
</dependency>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
<scope>provided</scope>
<artifactId>value-annotations</artifactId>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ public static ImmutableQueryEnvironment.Config.Builder configBuilder() {
public interface Config {
String getDatabase();

@Nullable // In theory only in tests. We should fix LiteralOnlyBrokerRequestTest to not need this.
@Nullable // In theory nullable only in tests. We should fix LiteralOnlyBrokerRequestTest to not need this.
TableCache getTableCache();

/**
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2294,6 +2294,11 @@
<artifactId>auto-service</artifactId>
<version>${google.auto-service.version}</version>
</path>
<path>
<groupId>org.immutables</groupId>
<artifactId>value-processor</artifactId>
<version>${immutables.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
Expand Down

0 comments on commit 598b17e

Please sign in to comment.