Skip to content

Commit 7e4aa34

Browse files
edburnsCopilot
andcommitted
Add missing dependencies for module-info.java javadoc generation
Javadoc needs jackson-core, jackson-datatype-jsr310, and spotbugs-annotations on the module path to resolve module-info.java. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 3bcb384 commit 7e4aa34

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,24 @@
5151
<version>2.21</version>
5252
<scope>provided</scope>
5353
</dependency>
54+
<dependency>
55+
<groupId>com.fasterxml.jackson.core</groupId>
56+
<artifactId>jackson-core</artifactId>
57+
<version>2.21.3</version>
58+
<scope>provided</scope>
59+
</dependency>
60+
<dependency>
61+
<groupId>com.fasterxml.jackson.datatype</groupId>
62+
<artifactId>jackson-datatype-jsr310</artifactId>
63+
<version>2.21.3</version>
64+
<scope>provided</scope>
65+
</dependency>
66+
<dependency>
67+
<groupId>com.github.spotbugs</groupId>
68+
<artifactId>spotbugs-annotations</artifactId>
69+
<version>4.9.8</version>
70+
<scope>provided</scope>
71+
</dependency>
5472
</dependencies>
5573

5674
<build>

0 commit comments

Comments
 (0)