Skip to content

Commit d11914c

Browse files
committed
Add org.immutables:value as an annotation processor
1 parent 5233ae7 commit d11914c

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

docker-java-transport/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>org.immutables</groupId>
3232
<artifactId>value</artifactId>
33-
<version>2.10.1</version>
33+
<version>${immutables.version}</version>
3434
<scope>provided</scope>
3535
</dependency>
3636

pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@
7575
<hamcrest.jpa-matchers>1.8</hamcrest.jpa-matchers>
7676
<lambdaj.version>2.3.3</lambdaj.version>
7777
<mockito.version>3.3.0</mockito.version>
78+
79+
<immutables.version>2.10.1</immutables.version>
7880

7981

8082
<maven-jar-plugin.version>3.0.2</maven-jar-plugin.version>
@@ -147,6 +149,13 @@
147149
<debug>${jdk.debug}</debug>
148150
<optimize>${jdk.optimize}</optimize>
149151
<parameters>true</parameters>
152+
<annotationProcessorPaths>
153+
<path>
154+
<groupId>org.immutables</groupId>
155+
<artifactId>value</artifactId>
156+
<version>${immutables.version}</version>
157+
</path>
158+
</annotationProcessorPaths>
150159
</configuration>
151160
</plugin>
152161

0 commit comments

Comments
 (0)