Browse Source
Merge pull request #15485 from smatvienko-tb/fix/assembly-skip-leak
Fix maven-assembly-plugin skipAssembly leaking into every execution
pull/15509/head
Viacheslav Klimov
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
1 deletions
-
pom.xml
|
|
|
@ -619,7 +619,6 @@ |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<artifactId>maven-assembly-plugin</artifactId> |
|
|
|
<configuration> |
|
|
|
<skipAssembly>${pkg.skip.zip}</skipAssembly> |
|
|
|
<finalName>${pkg.name}</finalName> |
|
|
|
<descriptors> |
|
|
|
<descriptor>${main.dir}/packaging/${pkg.type}/assembly/windows.xml</descriptor> |
|
|
|
@ -632,6 +631,9 @@ |
|
|
|
<goals> |
|
|
|
<goal>single</goal> |
|
|
|
</goals> |
|
|
|
<configuration> |
|
|
|
<skipAssembly>${pkg.skip.zip}</skipAssembly> |
|
|
|
</configuration> |
|
|
|
</execution> |
|
|
|
</executions> |
|
|
|
</plugin> |
|
|
|
|