Skip to content

Commit

Permalink
Update dependencies' and parent project version (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksclarke authored Oct 25, 2022
1 parent a62c1da commit 77b4b1b
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 6 deletions.
38 changes: 33 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@
<revision>0.0.0-SNAPSHOT</revision>

<!-- Project dependencies -->
<jackson.version>2.13.3</jackson.version>
<jackson.databind.version>2.13.3</jackson.databind.version>
<jackson.version>2.13.4</jackson.version>
<jackson.databind.version>2.13.4.2</jackson.databind.version>
<guava.version>31.1-jre</guava.version>
<freelib.utils.version>3.0.1</freelib.utils.version>
<vertx.version>4.3.1</vertx.version>
<freelib.utils.version>3.2.4</freelib.utils.version>
<vertx.version>4.3.4</vertx.version>

<!-- Test related versions -->
<opencsv.version>4.6</opencsv.version>
Expand Down Expand Up @@ -184,11 +184,39 @@
</plugins>
</build>

<profiles>
<profile>
<id>snyk-check</id>
<activation>
<property>
<name>env.SNYK_TOKEN</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>io.snyk</groupId>
<artifactId>snyk-maven-plugin</artifactId>
<!-- Configurations have to be overridden in the executions' configuration elements -->
<executions>
<execution>
<id>snyk-test</id>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<!-- Pulls in standard FreeLibrary Project configuration options -->
<parent>
<artifactId>freelib-parent</artifactId>
<groupId>info.freelibrary</groupId>
<version>7.2.2</version>
<version>7.4.2</version>
</parent>

</project>
Expand Down
2 changes: 2 additions & 0 deletions src/main/tools/checkstyle/checkstyle-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@

<suppressions>
<suppress files="src[\\/]main[\\/]generated[\\/]" checks="."/>
<suppress files="src[\\/]test[\\/]generated[\\/]" checks="."/>
<suppress files="target[\\/]" checks="."/>
<suppress files=".mvn[\\/]" checks="."/>
</suppressions>
3 changes: 2 additions & 1 deletion src/test/resources/logback-test.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<configuration>
<configuration debug="false">
<statusListener class="ch.qos.logback.core.status.NopStatusListener" />
<timestamp key="byDay" datePattern="yyyy-MM-dd" />

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
Expand Down

0 comments on commit 77b4b1b

Please sign in to comment.