File tree Expand file tree Collapse file tree
main/java/org/eolang/maven
test/java/org/eolang/maven Expand file tree Collapse file tree Original file line number Diff line number Diff line change 140140 <version >3.9.15</version >
141141 <scope >test</scope >
142142 </dependency >
143- <dependency >
144- <groupId >org.twdata.maven</groupId >
145- <artifactId >mojo-executor</artifactId >
146- <version >2.4.1</version >
147- </dependency >
148143 <dependency >
149144 <groupId >com.google.code.findbugs</groupId >
150145 <artifactId >jsr305</artifactId >
232227 <!-- This dependency must precede jcabi-maven-slf4j in order
233228 to enable configurable Log4j logging during testing -->
234229 </dependency >
235- <dependency >
236- <groupId >org.codehaus.plexus</groupId >
237- <artifactId >plexus-utils</artifactId >
238- <version >3.6.1</version >
239- </dependency >
240230 <dependency >
241231 <groupId >org.codehaus.plexus</groupId >
242232 <artifactId >plexus-xml</artifactId >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1010import java .io .IOException ;
1111import java .nio .file .Files ;
1212import java .nio .file .Path ;
13+ import java .util .function .BiConsumer ;
14+ import org .apache .maven .model .Dependency ;
1315import org .cactoos .set .SetOf ;
1416import org .hamcrest .MatcherAssert ;
1517import org .hamcrest .Matchers ;
@@ -54,7 +56,12 @@ void makesFullCompilingLifecycleSuccessfully(@Mktmp final Path temp) throws IOEx
5456 .with ("placed" , temp .resolve ("list" ).toFile ())
5557 .with ("cache" , temp .resolve ("cache/parsed" ).toFile ())
5658 .with ("skipZeroVersions" , true )
57- .with ("central" , Central .EMPTY )
59+ .with (
60+ "central" ,
61+ (BiConsumer <Dependency , Path >) (dependency , path ) -> {
62+ assert dependency != null ;
63+ }
64+ )
5865 .execute (MjRegister .class )
5966 .execute (MjAssemble .class )
6067 .execute (MjClean .class );
You can’t perform that action at this time.
0 commit comments