Skip to content

Commit be3891f

Browse files
committed
update dependencies
1 parent d9f7a3f commit be3891f

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

code-assert-gui/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>org.springframework.boot</groupId>
2121
<artifactId>spring-boot-dependencies</artifactId>
22-
<version>2.4.0</version>
22+
<version>2.4.2</version>
2323
<type>pom</type>
2424
<scope>import</scope>
2525
</dependency>

code-assert-maven-plugin/src/main/java/guru/nidi/codeassert/AssertMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
*/
3434
@Mojo(name = "assert", defaultPhase = LifecyclePhase.TEST, requiresDependencyResolution = ResolutionScope.TEST)
3535
public class AssertMojo extends AbstractMojo {
36-
static final String JACOCO_VERSION = "0.8.5";
36+
static final String JACOCO_VERSION = "0.8.6";
3737
private static final String SUREFIRE_VERSION = "2.22.2";
3838

3939
/**

code-assert/pom.xml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

56
<parent>
@@ -14,8 +15,8 @@
1415
<properties>
1516
<module.name>guru.nidi.codeassert</module.name>
1617
<checkstyle.version>6.19</checkstyle.version>
17-
<findbugs.version>3.1.12</findbugs.version>
18-
<findsecbugs.version>1.9.0</findsecbugs.version>
18+
<findbugs.version>4.2.0</findbugs.version>
19+
<findsecbugs.version>1.11.0</findsecbugs.version>
1920
<pmd.version>5.8.1</pmd.version>
2021
<kotlin.version>1.3.71</kotlin.version>
2122
<detekt.version>1.9.1</detekt.version>
@@ -98,6 +99,10 @@
9899
<groupId>org.ow2.asm</groupId>
99100
<artifactId>asm-debug-all</artifactId>
100101
</exclusion>
102+
<exclusion>
103+
<groupId>net.sf.saxon</groupId>
104+
<artifactId>Saxon-HE</artifactId>
105+
</exclusion>
101106
</exclusions>
102107
</dependency>
103108
<dependency>

0 commit comments

Comments
 (0)