Skip to content

Commit 38bbc97

Browse files
committed
Update dependency versions & add reporting via mvn site
1 parent b3d8eb7 commit 38bbc97

File tree

1 file changed

+31
-6
lines changed

1 file changed

+31
-6
lines changed

pom.xml

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<plugin>
1919
<groupId>org.apache.maven.plugins</groupId>
2020
<artifactId>maven-compiler-plugin</artifactId>
21-
<version>3.8.0</version>
21+
<version>3.8.1</version>
2222
<configuration>
2323
<source>8</source>
2424
<target>8</target>
@@ -31,7 +31,7 @@
3131
<plugin>
3232
<groupId>org.apache.maven.plugins</groupId>
3333
<artifactId>maven-assembly-plugin</artifactId>
34-
<version>3.1.0</version>
34+
<version>3.1.1</version>
3535
<configuration>
3636
<descriptorRefs>
3737
<descriptorRef>jar-with-dependencies</descriptorRef>
@@ -46,6 +46,17 @@
4646
</execution>
4747
</executions>
4848
</plugin>
49+
<plugin>
50+
<groupId>org.apache.maven.plugins</groupId>
51+
<artifactId>maven-site-plugin</artifactId>
52+
<version>3.8.2</version>
53+
</plugin>
54+
55+
<plugin>
56+
<groupId>org.apache.maven.plugins</groupId>
57+
<artifactId>maven-project-info-reports-plugin</artifactId>
58+
<version>3.0.0</version>
59+
</plugin>
4960
<plugin>
5061
<groupId>org.codehaus.mojo</groupId>
5162
<artifactId>exec-maven-plugin</artifactId>
@@ -73,19 +84,33 @@
7384
</plugins>
7485
</build>
7586

87+
<reporting>
88+
<plugins>
89+
<plugin>
90+
<groupId>org.apache.maven.plugins</groupId>
91+
<artifactId>maven-javadoc-plugin</artifactId>
92+
<version>3.1.1</version>
93+
<configuration>
94+
<additionalOptions>-Xdoclint:none</additionalOptions>
95+
<additionalJOption>-Xdoclint:none</additionalJOption>
96+
</configuration>
97+
</plugin>
98+
</plugins>
99+
</reporting>
100+
76101
<dependencies>
77102
<!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna -->
78103
<dependency>
79104
<groupId>net.java.dev.jna</groupId>
80105
<artifactId>jna</artifactId>
81-
<version>5.2.0</version>
106+
<version>5.4.0</version>
82107
</dependency>
83108

84109
<!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna-platform -->
85110
<dependency>
86111
<groupId>net.java.dev.jna</groupId>
87112
<artifactId>jna-platform</artifactId>
88-
<version>5.2.0</version>
113+
<version>5.4.0</version>
89114
</dependency>
90115

91116
<!-- https://mvnrepository.com/artifact/junit/junit -->
@@ -100,15 +125,15 @@
100125
<dependency>
101126
<groupId>org.mockito</groupId>
102127
<artifactId>mockito-core</artifactId>
103-
<version>2.26.0</version>
128+
<version>2.28.2</version>
104129
<scope>test</scope>
105130
</dependency>
106131

107132
<!-- https://mvnrepository.com/artifact/org.assertj/assertj-core -->
108133
<dependency>
109134
<groupId>org.assertj</groupId>
110135
<artifactId>assertj-core</artifactId>
111-
<version>3.12.2</version>
136+
<version>3.13.2</version>
112137
<scope>test</scope>
113138
</dependency>
114139

0 commit comments

Comments
 (0)