|
4 | 4 |
|
5 | 5 | <groupId>com.igormaznitsa</groupId> |
6 | 6 | <artifactId>java-prolog-parser</artifactId> |
7 | | - <version>2.2.0</version> |
| 7 | + <version>2.2.1</version> |
8 | 8 | <packaging>jar</packaging> |
9 | 9 |
|
10 | 10 | <name>Edinburgh Prolog parser</name> |
|
65 | 65 | <dependency> |
66 | 66 | <groupId>org.junit.jupiter</groupId> |
67 | 67 | <artifactId>junit-jupiter-api</artifactId> |
68 | | - <version>5.11.4</version> |
| 68 | + <version>5.14.1</version> |
69 | 69 | <scope>test</scope> |
70 | 70 | </dependency> |
71 | 71 | <dependency> |
72 | 72 | <groupId>org.junit.jupiter</groupId> |
73 | 73 | <artifactId>junit-jupiter-engine</artifactId> |
74 | | - <version>5.11.4</version> |
| 74 | + <version>5.14.1</version> |
75 | 75 | <scope>test</scope> |
76 | 76 | </dependency> |
77 | 77 | <dependency> |
78 | 78 | <groupId>org.mockito</groupId> |
79 | 79 | <artifactId>mockito-core</artifactId> |
80 | | - <version>5.15.2</version> |
| 80 | + <version>5.21.0</version> |
81 | 81 | <scope>test</scope> |
82 | 82 | </dependency> |
83 | 83 | </dependencies> |
|
91 | 91 | <groupId>org.apache.maven.plugins</groupId> |
92 | 92 | <artifactId>maven-assembly-plugin</artifactId> |
93 | 93 | <version>3.7.1</version> |
94 | | - <configuration> |
95 | | - <descriptors> |
96 | | - <descriptor>src/assemble/distribution.xml</descriptor> |
97 | | - </descriptors> |
98 | | - </configuration> |
99 | 94 | <executions> |
100 | | - <execution> |
101 | | - <id>make-distributive</id> |
102 | | - <phase>install</phase> |
103 | | - <goals> |
104 | | - <goal>single</goal> |
105 | | - </goals> |
106 | | - <configuration> |
107 | | - <descriptors> |
108 | | - <descriptor>src/assemble/distribution.xml</descriptor> |
109 | | - </descriptors> |
110 | | - </configuration> |
111 | | - </execution> |
112 | 95 | <execution> |
113 | 96 | <id>make-bundle</id> |
114 | 97 | <phase>install</phase> |
|
141 | 124 | <plugin> |
142 | 125 | <groupId>org.apache.maven.plugins</groupId> |
143 | 126 | <artifactId>maven-javadoc-plugin</artifactId> |
144 | | - <version>3.8.0</version> |
| 127 | + <version>3.12.0</version> |
145 | 128 | <configuration> |
146 | 129 | <failOnError>true</failOnError> |
147 | 130 | <show>protected</show> |
|
161 | 144 | <plugin> |
162 | 145 | <groupId>org.apache.maven.plugins</groupId> |
163 | 146 | <artifactId>maven-gpg-plugin</artifactId> |
164 | | - <version>3.2.7</version> |
| 147 | + <version>3.2.8</version> |
165 | 148 | <executions> |
166 | 149 | <execution> |
167 | 150 | <id>sign-artifacts</id> |
|
172 | 155 | </execution> |
173 | 156 | </executions> |
174 | 157 | </plugin> |
| 158 | + <plugin> |
| 159 | + <groupId>net.nicoulaj.maven.plugins</groupId> |
| 160 | + <artifactId>checksum-maven-plugin</artifactId> |
| 161 | + <version>1.11</version> |
| 162 | + <executions> |
| 163 | + <execution> |
| 164 | + <phase>verify</phase> |
| 165 | + <goals> |
| 166 | + <goal>files</goal> |
| 167 | + </goals> |
| 168 | + <configuration> |
| 169 | + <fileSets> |
| 170 | + <fileSet> |
| 171 | + <directory>${project.build.directory}</directory> |
| 172 | + <includes> |
| 173 | + <include>*.jar</include> |
| 174 | + <include>*.pom</include> |
| 175 | + </includes> |
| 176 | + </fileSet> |
| 177 | + </fileSets> |
| 178 | + <algorithms> |
| 179 | + <algorithm>SHA-1</algorithm> |
| 180 | + <algorithm>MD5</algorithm> |
| 181 | + </algorithms> |
| 182 | + </configuration> |
| 183 | + </execution> |
| 184 | + </executions> |
| 185 | + </plugin> |
175 | 186 | </plugins> |
176 | 187 | </build> |
177 | 188 | </profile> |
|
186 | 197 | <plugin> |
187 | 198 | <groupId>org.apache.maven.plugins</groupId> |
188 | 199 | <artifactId>maven-enforcer-plugin</artifactId> |
189 | | - <version>3.5.0</version> |
| 200 | + <version>3.6.2</version> |
190 | 201 | <executions> |
191 | 202 | <execution> |
192 | 203 | <id>enforcer-verify</id> |
|
215 | 226 | <dependency> |
216 | 227 | <groupId>org.codehaus.mojo</groupId> |
217 | 228 | <artifactId>extra-enforcer-rules</artifactId> |
218 | | - <version>1.9.0</version> |
| 229 | + <version>1.11.0</version> |
219 | 230 | </dependency> |
220 | 231 | </dependencies> |
221 | 232 | </plugin> |
222 | 233 | <plugin> |
223 | 234 | <groupId>org.apache.maven.plugins</groupId> |
224 | 235 | <artifactId>maven-compiler-plugin</artifactId> |
225 | | - <version>3.13.0</version> |
| 236 | + <version>3.14.1</version> |
226 | 237 | <configuration> |
227 | 238 | <compilerArgument>-Xlint:all</compilerArgument> |
228 | 239 | <source>11</source> |
|
235 | 246 | <plugin> |
236 | 247 | <groupId>org.apache.maven.plugins</groupId> |
237 | 248 | <artifactId>maven-jar-plugin</artifactId> |
238 | | - <version>3.4.1</version> |
| 249 | + <version>3.4.2</version> |
239 | 250 | <configuration> |
240 | | - <archive> |
241 | | - <manifestEntries> |
242 | | - <Automatic-Module-Name>igormaznitsa.prolog.parser</Automatic-Module-Name> |
243 | | - </manifestEntries> |
244 | | - </archive> |
245 | 251 | </configuration> |
246 | 252 | </plugin> |
247 | 253 |
|
248 | 254 | <plugin> |
249 | 255 | <artifactId>maven-surefire-plugin</artifactId> |
250 | | - <version>3.5.2</version> |
| 256 | + <version>3.5.4</version> |
251 | 257 | </plugin> |
252 | 258 |
|
253 | 259 | <plugin> |
254 | 260 | <groupId>org.codehaus.mojo</groupId> |
255 | 261 | <artifactId>animal-sniffer-maven-plugin</artifactId> |
256 | | - <version>1.24</version> |
| 262 | + <version>1.26</version> |
257 | 263 | <executions> |
258 | 264 | <execution> |
259 | 265 | <id>ensure-android-api-compatibility</id> |
|
265 | 271 | <signature> |
266 | 272 | <groupId>com.toasttab.android</groupId> |
267 | 273 | <artifactId>gummy-bears-api-32</artifactId> |
268 | | - <version>0.10.0</version> |
| 274 | + <version>0.12.0</version> |
269 | 275 | </signature> |
270 | 276 | <ignores> |
271 | 277 | <ignore>java.lang.invoke.*</ignore> |
|
0 commit comments