Skip to content

Update dependencies #726

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 8, 2020
Merged
Changes from 1 commit
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
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<rootDir>${project.basedir}</rootDir>
<surefire.and.failsafe.version>2.22.1</surefire.and.failsafe.version>
<junit.version>5.4.2</junit.version>
<junit.version>5.6.2</junit.version>
<parallelizable.it.forkCount>1C</parallelizable.it.forkCount>
<!-- All tests tagged are to be executed in parallel -->
<parallelizable.it.tags>parallelizableIT</parallelizable.it.tags>
Expand Down Expand Up @@ -69,13 +69,13 @@
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>3.3.1.RELEASE</version>
<version>3.3.5.RELEASE</version>
</dependency>
<!--Compile dependencies only used by Examples-->
<dependency>
<groupId>io.reactivex.rxjava2</groupId>
<artifactId>rxjava</artifactId>
<version>2.2.16</version>
<version>2.2.19</version>
</dependency>

<!-- Optional dependencies -->
Expand All @@ -95,7 +95,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.18.3</version>
<version>2.28.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -113,13 +113,13 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.64</version>
<version>1.65.01</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>1.64</version>
<version>1.65</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -131,13 +131,13 @@
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<version>3.3.1.RELEASE</version>
<version>3.3.5.RELEASE</version>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We might should import their BOM (bill of materials): https://projectreactor.io/docs

<scope>test</scope>
</dependency>
<dependency>
<groupId>com.oracle.substratevm</groupId>
<artifactId>svm</artifactId>
<version>19.2.0.1</version>
<version>19.2.1</version>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

20.something is out already.

<!-- Provided scope as it is only needed for compiling the SVM substitution classes -->
<scope>provided</scope>
</dependency>
Expand Down