Skip to content

Commit

Permalink
fix: TestMavenRuntime5/AbstractTestMavenRuntime depend on TestMavenRu…
Browse files Browse the repository at this point in the history
…ntime and thus JUnit4 (#90)
  • Loading branch information
sebthom authored Sep 10, 2024
1 parent 930fbc0 commit 8efeb95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public abstract class AbstractTestMavenRuntime {
static {
DefaultArtifactVersion version = null;
String path = "/META-INF/maven/org.apache.maven/maven-core/pom.properties";
try (InputStream is = TestMavenRuntime.class.getResourceAsStream(path)) {
try (InputStream is = AbstractTestMavenRuntime.class.getResourceAsStream(path)) {
Properties properties = new Properties();
if (is != null) {
properties.load(is);
Expand Down

0 comments on commit 8efeb95

Please sign in to comment.