[
https://issues.apache.org/jira/browse/MSHADE-223?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Robert Scholte closed MSHADE-223.
---------------------------------
Fix Version/s: (was: 3.0.0)
3.2.2
Resolution: Fixed
Fixed in
[038d807b38115ff093bf16f3b0a2db439202bf67|https://gitbox.apache.org/repos/asf?p=maven-shade-plugin.git;a=commit;h=038d807b38115ff093bf16f3b0a2db439202bf67]
Thanks for the patch!
> Endless processing when promoteTransitiveDependencies=true
> ----------------------------------------------------------
>
> Key: MSHADE-223
> URL: https://issues.apache.org/jira/browse/MSHADE-223
> Project: Maven Shade Plugin
> Issue Type: Bug
> Affects Versions: 2.4.3
> Environment: OS X El Capitan (version 10.11.4)
> Reporter: Fabrizio Cucci
> Assignee: Robert Scholte
> Priority: Major
> Fix For: 3.2.2
>
> Time Spent: 10m
> Remaining Estimate: 0h
>
> With the following simple pom:
> {code:xml}
> <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>com.coolworks</groupId>
> <artifactId>bug-test</artifactId>
> <version>1.6.1</version>
> <properties>
>
> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
> <maven.compiler.source>1.8</maven.compiler.source>
> <maven.compiler.target>1.8</maven.compiler.target>
> </properties>
> <dependencies>
> <dependency>
> <groupId>org.apache.spark</groupId>
> <artifactId>spark-core_2.10</artifactId>
> <version>1.6.1</version>
> <optional>true</optional>
> </dependency>
> </dependencies>
> <build>
> <plugins>
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-shade-plugin</artifactId>
> <version>2.4.3</version>
> <executions>
> <execution>
> <phase>package</phase>
> <goals>
> <goal>shade</goal>
> </goals>
> <configuration>
>
> <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
> <artifactSet>
> <includes>
>
> <include>org.apache.spark:spark-core_2.10</include>
> </includes>
> </artifactSet>
> </configuration>
> </execution>
> </executions>
> </plugin>
> </plugins>
> </build>
> </project>
> {code}
> running "mvn clean package" leads the plugin to endlessly print:
> {noformat}
> [INFO] Dependency-reduced POM written at:
> /Users/myuser/Documents/workspace/bug-test/dependency-reduced-pom.xml
> {noformat}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)