Skip to content
Merged
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 @@ -36,7 +36,7 @@ public class MavenITmng3819PluginDepPlexusUtilsTest

public MavenITmng3819PluginDepPlexusUtilsTest()
{
super( "(2.0.1,4.0.0-alpha-1)" );
super( "(2.0.1,3.9.0)" );
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public void testSLF4j()
// Note that plugin dependencies always include plugin itself and plexus-utils

List<String> dependencies = verifier.loadLines( "target/dependencies.txt", "UTF-8" );
if ( matchesVersionRange( "(,4.0.0-alpha-1)" ) )
if ( matchesVersionRange( "(,3.9.0)" ) )
{
assertEquals( 3, dependencies.size() );
}
Expand All @@ -42,7 +42,7 @@ public void testSLF4j()
assertEquals( "mng-5783-plugin-dependency-filtering:mng-5783-plugin-dependency-filtering-plugin:maven-plugin:0.1",
dependencies.get( 0 ) );
assertEquals( "org.slf4j:slf4j-api:jar:1.7.5", dependencies.get( 1 ) );
if ( matchesVersionRange( "(,4.0.0-alpha-1)" ) )
if ( matchesVersionRange( "(,3.9.0)" ) )
{
assertEquals( "org.codehaus.plexus:plexus-utils:jar:1.1", dependencies.get( 2 ) );
}
Expand Down