Skip to content

Commit 244360d

Browse files
committed
Update pom.xml
1 parent 386cc4c commit 244360d

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

blackbox-test-inject/pom.xml

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,6 @@
4242
<version>1.7.1</version>
4343
</dependency>
4444

45-
<!-- annotation processor -->
46-
<dependency>
47-
<groupId>io.avaje</groupId>
48-
<artifactId>avaje-inject-generator</artifactId>
49-
<version>${project.version}</version>
50-
<scope>provided</scope>
51-
</dependency>
52-
5345
<!-- test dependencies -->
5446
<dependency>
5547
<groupId>io.avaje</groupId>
@@ -73,5 +65,22 @@
7365
</dependency>
7466

7567
</dependencies>
76-
68+
<build>
69+
<plugins>
70+
<!-- Add Compiler args for loom and errorprone -->
71+
<plugin>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-compiler-plugin</artifactId>
74+
<configuration>
75+
<annotationProcessorPaths>
76+
<path>
77+
<groupId>io.avaje</groupId>
78+
<artifactId>avaje-inject-generator</artifactId>
79+
<version>${project.version}</version>
80+
</path>
81+
</annotationProcessorPaths>
82+
</configuration>
83+
</plugin>
84+
</plugins>
85+
</build>
7786
</project>

0 commit comments

Comments
 (0)