Fix duplicated maven-jar-plugin configuration
This commit is contained in:
parent
82f1ca8efd
commit
b48043d18e
21
pom.xml
21
pom.xml
|
@ -661,6 +661,14 @@
|
|||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<!-- Temporary fix for LANG-1338, remove this after this has implemented in parent pom -->
|
||||
<configuration>
|
||||
<archive combine.children="append">
|
||||
<manifestEntries>
|
||||
<Automatic-Module-Name>org.apache.commons.lang3</Automatic-Module-Name>
|
||||
</manifestEntries>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
@ -690,19 +698,6 @@
|
|||
<excludeFilterFile>${basedir}/findbugs-exclude-filter.xml</excludeFilterFile>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<!-- Temporary fix for LANG-1338, remove this after this has implemented in parent pom -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<configuration>
|
||||
<archive combine.children="append">
|
||||
<manifestEntries>
|
||||
<Automatic-Module-Name>org.apache.commons.lang3</Automatic-Module-Name>
|
||||
</manifestEntries>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
||||
</build>
|
||||
|
|
Loading…
Reference in New Issue