Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

public class MavenIT0085TransitiveSystemScopeTest extends AbstractMavenIntegrationTestCase {
public MavenIT0085TransitiveSystemScopeTest() {
super(ALL_MAVEN_VERSIONS);
super("(,3.10.0-alpha-1)");
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public void testit() throws Exception {
}

String logLevel;
if (matchesVersionRange("(,4.0.0-alpha-1)")) {
if (matchesVersionRange("(,3.10.0-alpha-1)")) {
logLevel = "WARNING";
} else {
logLevel = "ERROR";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public class MavenITmng3586SystemScopePluginDependencyTest extends AbstractMavenIntegrationTestCase {

public MavenITmng3586SystemScopePluginDependencyTest() {
super(ALL_MAVEN_VERSIONS);
super("(,3.10.0-alpha-1)");
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
public class MavenITmng3719PomExecutionOrderingTest extends AbstractMavenIntegrationTestCase {

public MavenITmng3719PomExecutionOrderingTest() {
super("[2.0.11,2.1.0-M1),[2.1.0-M2,4.0.0-alpha-1)");
super("[2.0.11,2.1.0-M1),[2.1.0-M2,3.10.0-alpha-1)");
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ private void test(String project) throws Exception {
}

String logLevel;
if (matchesVersionRange("(,4.0.0-alpha-1)")) {
if (matchesVersionRange("(,3.10.0-alpha-1)")) {
logLevel = "WARNING";
} else {
logLevel = "ERROR";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
public class MavenITmng4379TransitiveSystemPathInterpolatedWithEnvVarTest extends AbstractMavenIntegrationTestCase {

public MavenITmng4379TransitiveSystemPathInterpolatedWithEnvVarTest() {
super("[2.0.3,2.1.0),[3.0-alpha-6,)");
super("[2.0.3,2.1.0),[3.0-alpha-6,3.10.0-alpha-1)");
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
public class MavenITmng4590ImportedPomUsesSystemAndUserPropertiesTest extends AbstractMavenIntegrationTestCase {

public MavenITmng4590ImportedPomUsesSystemAndUserPropertiesTest() {
super("[2.0.9,3.0-alpha-1),[3.0-beta-1,)");
super("[2.0.9,3.0-alpha-1),[3.0-beta-1,3.10.0-alpha-1)");
}

/**
Expand Down
Loading