|
18 | 18 | <plugin> |
19 | 19 | <groupId>org.apache.maven.plugins</groupId> |
20 | 20 | <artifactId>maven-compiler-plugin</artifactId> |
21 | | - <version>3.8.0</version> |
| 21 | + <version>3.8.1</version> |
22 | 22 | <configuration> |
23 | 23 | <source>8</source> |
24 | 24 | <target>8</target> |
|
31 | 31 | <plugin> |
32 | 32 | <groupId>org.apache.maven.plugins</groupId> |
33 | 33 | <artifactId>maven-assembly-plugin</artifactId> |
34 | | - <version>3.1.0</version> |
| 34 | + <version>3.1.1</version> |
35 | 35 | <configuration> |
36 | 36 | <descriptorRefs> |
37 | 37 | <descriptorRef>jar-with-dependencies</descriptorRef> |
|
46 | 46 | </execution> |
47 | 47 | </executions> |
48 | 48 | </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> |
49 | 60 | <plugin> |
50 | 61 | <groupId>org.codehaus.mojo</groupId> |
51 | 62 | <artifactId>exec-maven-plugin</artifactId> |
|
73 | 84 | </plugins> |
74 | 85 | </build> |
75 | 86 |
|
| 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 | + |
76 | 101 | <dependencies> |
77 | 102 | <!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna --> |
78 | 103 | <dependency> |
79 | 104 | <groupId>net.java.dev.jna</groupId> |
80 | 105 | <artifactId>jna</artifactId> |
81 | | - <version>5.2.0</version> |
| 106 | + <version>5.4.0</version> |
82 | 107 | </dependency> |
83 | 108 |
|
84 | 109 | <!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna-platform --> |
85 | 110 | <dependency> |
86 | 111 | <groupId>net.java.dev.jna</groupId> |
87 | 112 | <artifactId>jna-platform</artifactId> |
88 | | - <version>5.2.0</version> |
| 113 | + <version>5.4.0</version> |
89 | 114 | </dependency> |
90 | 115 |
|
91 | 116 | <!-- https://mvnrepository.com/artifact/junit/junit --> |
|
100 | 125 | <dependency> |
101 | 126 | <groupId>org.mockito</groupId> |
102 | 127 | <artifactId>mockito-core</artifactId> |
103 | | - <version>2.26.0</version> |
| 128 | + <version>2.28.2</version> |
104 | 129 | <scope>test</scope> |
105 | 130 | </dependency> |
106 | 131 |
|
107 | 132 | <!-- https://mvnrepository.com/artifact/org.assertj/assertj-core --> |
108 | 133 | <dependency> |
109 | 134 | <groupId>org.assertj</groupId> |
110 | 135 | <artifactId>assertj-core</artifactId> |
111 | | - <version>3.12.2</version> |
| 136 | + <version>3.13.2</version> |
112 | 137 | <scope>test</scope> |
113 | 138 | </dependency> |
114 | 139 |
|
|
0 commit comments