[ https://issues.apache.org/jira/browse/MNG-7063?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17257636#comment-17257636 ]
Michael Osipov commented on MNG-7063: ------------------------------------- [~rfscholte], can you pick up? > Infinite loop using Shade plugin and JUnit 5 dependency > ------------------------------------------------------- > > Key: MNG-7063 > URL: https://issues.apache.org/jira/browse/MNG-7063 > Project: Maven > Issue Type: Bug > Affects Versions: 4.0.0-alpha-1 > Reporter: Thiago Henrique Hupner > Priority: Major > > When trying my project with Maven 4.0.0, it got in an infinite loop. > I've figured out that adding the JUnit 5 dependency and using the Shade > plugin transformer causes the problem. > With Maven 3.6.3 this problem doesn't happen. > > {code:xml} > <?xml version="1.0" encoding="UTF-8"?> > <project xmlns="http://maven.apache.org/POM/4.0.0" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 > http://maven.apache.org/xsd/maven-4.0.0.xsd"> > <modelVersion>4.0.0</modelVersion> > <groupId>org.example</groupId> > <artifactId>maven-bug</artifactId> > <version>1.0-SNAPSHOT</version> > <properties> > <maven.compiler.source>8</maven.compiler.source> > <maven.compiler.target>8</maven.compiler.target> > </properties> > <packaging>jar</packaging> > <dependencies> > <dependency> > <groupId>com.google.guava</groupId> > <artifactId>guava</artifactId> > <version>29.0-jre</version> > </dependency> > <dependency> > <groupId>org.junit.jupiter</groupId> > <artifactId>junit-jupiter-api</artifactId> > <version>5.7.0</version> > <scope>test</scope> > </dependency> > </dependencies> > <build> > <plugins> > <plugin> > <groupId>org.apache.maven.plugins</groupId> > <artifactId>maven-shade-plugin</artifactId> > <version>3.2.4</version> > <executions> > <execution> > <phase>package</phase> > <goals> > <goal>shade</goal> > </goals> > </execution> > </executions> > </plugin> > </plugins> > </build> > </project> > {code} -- This message was sent by Atlassian Jira (v8.3.4#803005)