Details
-
Improvement
-
Status: Open
-
Not a Priority
-
Resolution: Unresolved
-
1.13.6, 1.14.4, 1.15.0
-
None
Description
Currently in some sub-modules, for example, flink-quickstart-java flink-quickstart-scala, flink-walkthrough, we want to skip shade but use error way like this
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> </phase> </execution> </executions> </plugin>
It just set none phase for itself, can't forbid the inherited parent shade.
the correct way is
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <id>shade-flink</id> <phase>none</phase> </execution> </executions> </plugin>
it can forbid parent shade-flink and also it's own shade. because there are no extra own shade executions.
Attachments
Attachments
Issue Links
- is duplicated by
-
FLINK-27899 deactivate the shade plugin doesn't take effect
- Closed
- links to