Skip to content

Instantly share code, notes, and snippets.

@headius
Created September 8, 2021 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save headius/c97a7556bc98fb3e7932faae23895480 to your computer and use it in GitHub Desktop.
Save headius/c97a7556bc98fb3e7932faae23895480 to your computer and use it in GitHub Desktop.
diff --git a/core/pom.rb b/core/pom.rb
index c5db70bae7..93720e04b4 100644
--- a/core/pom.rb
+++ b/core/pom.rb
@@ -60,6 +60,7 @@ project 'JRuby Base' do
jar 'com.jcraft:jzlib:1.1.3'
jar 'junit:junit', :scope => 'test'
+ jar 'org.junit.vintage:junit-vintage-engine', :scope => 'test'
jar 'org.awaitility:awaitility', :scope => 'test'
jar 'org.apache.ant:ant:${ant.version}', :scope => 'provided'
jar 'org.osgi:org.osgi.core:5.0.0', :scope => 'provided'
diff --git a/core/pom.xml b/core/pom.xml
index 22b4b28533..b31c1c3b73 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -182,6 +182,11 @@ DO NOT MODIFIY - GENERATED CODE
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.junit.vintage</groupId>
+ <artifactId>junit-vintage-engine</artifactId>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
diff --git a/pom.rb b/pom.rb
index 7563326928..7283becbdd 100644
--- a/pom.rb
+++ b/pom.rb
@@ -75,7 +75,10 @@ project 'JRuby', 'https://github.com/jruby/jruby' do
'joda.time.version' => '2.10.10' )
plugin_management do
- jar( 'junit:junit:4.13.1',
+ jar( 'junit:junit:4.13.2',
+ :scope => 'test' )
+
+ jar( 'org.junit.vintage:junit-vintage-engine:5.6.3',
:scope => 'test' )
jar( 'org.awaitility:awaitility:4.1.0',
diff --git a/pom.xml b/pom.xml
index 0196c6d8d8..4fc66de173 100644
--- a/pom.xml
+++ b/pom.xml
@@ -130,7 +130,13 @@ DO NOT MODIFIY - GENERATED CODE
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>4.13.1</version>
+ <version>4.13.2</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.vintage</groupId>
+ <artifactId>junit-vintage-engine</artifactId>
+ <version>5.6.3</version>
<scope>test</scope>
</dependency>
<dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment