Commits
md_5 authored f850da2e36b
73 73 | <dependency> |
74 74 | <groupId>org.apache.maven.resolver</groupId> |
75 75 | <artifactId>maven-resolver-transport-http</artifactId> |
76 76 | <version>1.9.18</version> |
77 77 | <scope>provided</scope> |
78 78 | </dependency> |
79 79 | <!-- annotations --> |
80 80 | <dependency> |
81 81 | <groupId>org.jetbrains</groupId> |
82 82 | <artifactId>annotations-java5</artifactId> |
83 - | <version>24.0.1</version> |
83 + | <version>24.1.0</version> |
84 84 | <scope>provided</scope> |
85 85 | </dependency> |
86 86 | <!-- testing --> |
87 87 | <dependency> |
88 88 | <groupId>org.junit.jupiter</groupId> |
89 89 | <artifactId>junit-jupiter</artifactId> |
90 - | <version>5.10.0</version> |
90 + | <version>5.10.2</version> |
91 91 | <scope>test</scope> |
92 92 | </dependency> |
93 93 | <dependency> |
94 94 | <groupId>org.hamcrest</groupId> |
95 95 | <artifactId>hamcrest</artifactId> |
96 96 | <version>2.2</version> |
97 97 | <scope>test</scope> |
98 98 | </dependency> |
99 99 | <dependency> |
100 100 | <groupId>org.mockito</groupId> |
130 130 | <artifactId>maven-compiler-plugin</artifactId> |
131 131 | <version>3.13.0</version> |
132 132 | <configuration> |
133 133 | <!-- default changed with version 3.11.0 --> |
134 134 | <showWarnings>false</showWarnings> |
135 135 | </configuration> |
136 136 | </plugin> |
137 137 | <plugin> |
138 138 | <groupId>org.apache.maven.plugins</groupId> |
139 139 | <artifactId>maven-jar-plugin</artifactId> |
140 - | <version>3.3.0</version> |
140 + | <version>3.4.1</version> |
141 141 | <configuration> |
142 142 | <archive> |
143 143 | <manifest> |
144 144 | <addDefaultEntries>false</addDefaultEntries> |
145 145 | </manifest> |
146 146 | <manifestEntries> |
147 147 | <Automatic-Module-Name>org.bukkit</Automatic-Module-Name> |
148 148 | </manifestEntries> |
149 149 | </archive> |
150 150 | </configuration> |
151 151 | </plugin> |
152 152 | <plugin> |
153 153 | <groupId>org.apache.maven.plugins</groupId> |
154 154 | <artifactId>maven-shade-plugin</artifactId> |
155 - | <version>3.5.0</version> |
155 + | <version>3.5.3</version> |
156 156 | <executions> |
157 157 | <execution> |
158 158 | <phase>package</phase> |
159 159 | <goals> |
160 160 | <goal>shade</goal> |
161 161 | </goals> |
162 162 | </execution> |
163 163 | </executions> |
164 164 | <configuration> |
165 165 | <filters> |
172 172 | </filters> |
173 173 | <!-- when downloading via Maven we can pull depends individually --> |
174 174 | <shadedArtifactAttached>true</shadedArtifactAttached> |
175 175 | <!-- In 3.3.0 and later, shadedArtifactAttached causes dependant projects to use dependency reduced pom (bug?) --> |
176 176 | <createDependencyReducedPom>false</createDependencyReducedPom> |
177 177 | </configuration> |
178 178 | </plugin> |
179 179 | <plugin> |
180 180 | <groupId>org.apache.maven.plugins</groupId> |
181 181 | <artifactId>maven-javadoc-plugin</artifactId> |
182 - | <version>3.5.0</version> |
182 + | <version>3.6.3</version> |
183 183 | <configuration> |
184 184 | <links> |
185 - | <link>https://guava.dev/releases/31.1-jre/api/docs/</link> |
185 + | <link>https://guava.dev/releases/32.1.2-jre/api/docs/</link> |
186 186 | </links> |
187 187 | <tags> |
188 188 | <tag> |
189 189 | <name>apiNote</name> |
190 190 | <placement>a</placement> |
191 191 | <head>API Note:</head> |
192 192 | </tag> |
193 193 | </tags> |
194 194 | </configuration> |
195 195 | </plugin> |
196 196 | <plugin> |
197 197 | <groupId>org.apache.maven.plugins</groupId> |
198 198 | <artifactId>maven-surefire-plugin</artifactId> |
199 - | <version>3.1.0</version> |
199 + | <version>3.2.5</version> |
200 200 | </plugin> |
201 201 | </plugins> |
202 202 | </build> |
203 203 | |
204 204 | <profiles> |
205 205 | <profile> |
206 206 | <id>development</id> |
207 207 | <properties> |
208 208 | <skipTests>false</skipTests> |
209 209 | </properties> |
210 210 | <build> |
211 211 | <plugins> |
212 212 | <plugin> |
213 213 | <groupId>org.apache.maven.plugins</groupId> |
214 214 | <artifactId>maven-checkstyle-plugin</artifactId> |
215 - | <version>3.3.0</version> |
215 + | <version>3.3.1</version> |
216 216 | <executions> |
217 217 | <execution> |
218 218 | <phase>process-classes</phase> |
219 219 | <goals> |
220 220 | <goal>check</goal> |
221 221 | </goals> |
222 222 | </execution> |
223 223 | </executions> |
224 224 | <configuration> |
225 225 | <configLocation>checkstyle.xml</configLocation> |