Update maven assembly plugin for druid-benchmarks (#12487)

This commit is contained in:
Nishant Bangarwa 2022-05-02 09:43:19 -07:00 committed by GitHub
parent 39e7191f03
commit 785a1eeb9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -200,7 +200,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
@ -210,7 +210,9 @@
<configuration>
<finalName>${uberjar.name}</finalName>
<appendAssemblyId>false</appendAssemblyId>
<descriptor>assembly.xml</descriptor>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
<archive>
<manifest>
<mainClass>org.openjdk.jmh.Main</mainClass>