Skip to content

Commit

Permalink
[hotfix][build] Deduplicate assembly plugin parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
zentol committed Jan 5, 2021
1 parent 13b7b3e commit 812eb62
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions flink-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -522,6 +522,18 @@ under the License.
</profiles>

<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>flink-${project.version}-bin</finalName>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -776,8 +788,6 @@ under the License.
<descriptors>
<descriptor>src/main/assemblies/bin.xml</descriptor>
</descriptors>
<finalName>flink-${project.version}-bin</finalName>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</execution>
<execution>
Expand All @@ -790,8 +800,6 @@ under the License.
<descriptors>
<descriptor>src/main/assemblies/opt.xml</descriptor>
</descriptors>
<finalName>flink-${project.version}-bin</finalName>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</execution>
<execution>
Expand All @@ -804,8 +812,6 @@ under the License.
<descriptors>
<descriptor>src/main/assemblies/plugins.xml</descriptor>
</descriptors>
<finalName>flink-${project.version}-bin</finalName>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 812eb62

Please sign in to comment.