Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.21.1</version>
<version>2.21.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand All @@ -70,7 +70,7 @@
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.21.1</version>
<version>2.21.2</version>
</dependency>

<!-- SpotBugs annotations for suppressing warnings -->
Expand All @@ -85,7 +85,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.14.1</version>
<version>5.14.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -112,7 +112,7 @@
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.9.8.2</version>
<version>4.9.8.3</version>
<configuration>
<excludeFilterFile>config/spotbugs/spotbugs-exclude.xml</excludeFilterFile>
</configuration>
Expand All @@ -123,12 +123,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version>
<version>3.15.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<version>3.5.0</version>
<configuration>
<archive>
<manifestEntries>
Expand Down Expand Up @@ -215,15 +215,15 @@
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.10.15</version>
<version>1.10.17</version>
</dependency>
</dependencies>
</plugin>
<!-- Install harness dependencies -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.6.2</version>
<version>3.6.3</version>
<executions>
<execution>
<id>install-harness-dependencies</id>
Expand All @@ -245,7 +245,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.4</version>
<version>3.5.5</version>
<configuration>
<!-- Inject JaCoCo agent + any JDK-version-specific flags -->
<argLine>${testExecutionAgentArgs} ${surefire.jvm.args}</argLine>
Expand Down Expand Up @@ -278,7 +278,7 @@
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>2.44.5</version>
<version>2.46.1</version>
<configuration>
<java>
<excludes>
Expand Down Expand Up @@ -369,7 +369,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.4.0</version>
<version>3.5.0</version>
<executions>
<execution>
<id>filter-site-markdown</id>
Expand Down Expand Up @@ -456,7 +456,7 @@
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-module-markdown</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>
</dependencies>
</plugin>
Expand Down Expand Up @@ -515,13 +515,13 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>3.5.4</version>
<version>3.5.5</version>
</plugin>
<!-- SpotBugs static analysis -->
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.9.8.2</version>
<version>4.9.8.3</version>
<configuration>
<excludeFilterFile>config/spotbugs/spotbugs-exclude.xml</excludeFilterFile>
</configuration>
Expand All @@ -530,7 +530,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
<configuration>
<tagListOptions>
<tagClasses>
Expand All @@ -555,7 +555,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.9.0</version>
<version>3.10.0</version>
<reportSets>
<reportSet>
<reports>
Expand Down Expand Up @@ -659,7 +659,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.6.2</version>
<version>3.6.3</version>
<executions>
<execution>
<id>update-copilot-schema-version</id>
Expand All @@ -681,7 +681,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.5.0</version>
<version>3.6.2</version>
<executions>
<execution>
<id>require-schema-version</id>
Expand Down Expand Up @@ -712,7 +712,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.6.2</version>
<version>3.6.3</version>
<executions>
<execution>
<id>codegen-npm-install</id>
Expand Down
Loading