Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
[#241]

Signed-off-by: Mark Paluch <mpaluch@vmware.com>
  • Loading branch information
mp911de committed Jan 11, 2022
1 parent 1c948da commit 0b18fc9
Showing 1 changed file with 24 additions and 23 deletions.
47 changes: 24 additions & 23 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,23 @@
<url>https://github.com/r2dbc/r2dbc-mssql</url>

<properties>
<assertj.version>3.21.0</assertj.version>
<assertj.version>3.22.0</assertj.version>
<blockhound.version>1.0.6.RELEASE</blockhound.version>
<hikari-cp.version>4.0.3</hikari-cp.version>
<java.version>1.8</java.version>
<jsr305.version>3.0.2</jsr305.version>
<junit.version>5.8.2</junit.version>
<jmh.version>1.33</jmh.version>
<mbr.version>0.2.0.RELEASE</mbr.version>
<logback.version>1.2.7</logback.version>
<mockito.version>4.1.0</mockito.version>
<mbr.version>0.3.0.RELEASE</mbr.version>
<logback.version>1.2.9</logback.version>
<mockito.version>4.2.0</mockito.version>
<mssql-jdbc.version>9.5.0.jre8-preview</mssql-jdbc.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<r2dbc-spi.version>0.9.0.RELEASE</r2dbc-spi.version>
<r2dbc-pool.version>0.9.0.RC1</r2dbc-pool.version>
<reactor.version>2020.0.13</reactor.version>
<spring-framework.version>5.3.13</spring-framework.version>
<reactor.version>2020.0.14</reactor.version>
<spring-framework.version>5.3.14</spring-framework.version>
<testcontainers.version>1.16.2</testcontainers.version>
</properties>

Expand Down Expand Up @@ -141,12 +141,6 @@
<version>${blockhound.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.projectreactor.tools</groupId>
<artifactId>blockhound-junit-platform</artifactId>
<version>${blockhound.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.r2dbc</groupId>
<artifactId>r2dbc-spi-test</artifactId>
Expand Down Expand Up @@ -232,7 +226,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<version>3.2.1</version>
<configuration>
<archive>
<manifest>
Expand Down Expand Up @@ -394,6 +388,22 @@

<profiles>

<profile>
<id>java18-blockhound</id>
<activation>
<jdk>1.8</jdk>
</activation>

<dependencies>
<dependency>
<groupId>io.projectreactor.tools</groupId>
<artifactId>blockhound-junit-platform</artifactId>
<version>${blockhound.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>

<profile>
<id>jmh</id>
<dependencies>
Expand Down Expand Up @@ -421,7 +431,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
<executions>
<execution>
<id>add-source</id>
Expand Down Expand Up @@ -571,13 +581,4 @@

</profiles>

<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype OSS Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>


</project>

0 comments on commit 0b18fc9

Please sign in to comment.