Skip to content

Commit dc3581b

Browse files
committed
Try to get tests working too
1 parent 0e64e8c commit dc3581b

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

javax-money/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,19 @@
9292

9393
<build>
9494
<plugins>
95+
<plugin>
96+
<groupId>org.apache.maven.plugins</groupId>
97+
<artifactId>maven-compiler-plugin</artifactId>
98+
<inherited>true</inherited>
99+
<configuration>
100+
<annotationProcessorPaths>
101+
<path>
102+
<groupId>org.projectlombok</groupId>
103+
<artifactId>lombok</artifactId>
104+
</path>
105+
</annotationProcessorPaths>
106+
</configuration>
107+
</plugin>
95108
<plugin>
96109
<groupId>com.google.code.maven-replacer-plugin</groupId>
97110
<artifactId>replacer</artifactId>

javax-money/src/test/java/module-info.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
requires static lombok;
1616

1717
// Additional test lib/framework dependencies
18+
requires org.assertj.core;
19+
requires org.mockito;
1820
requires org.junit.jupiter.api;
21+
requires org.junit.jupiter.params;
1922

2023
requires org.javamoney.moneta;
2124

0 commit comments

Comments
 (0)