Skip to content

Commit

Permalink
AVRO-4047: Build perf tests into Uber JAR (#3129)
Browse files Browse the repository at this point in the history
  • Loading branch information
belugabehr committed Sep 14, 2024
1 parent e60cb41 commit 69ebbc7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions lang/java/perf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,25 @@
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>org.apache.avro.perf.Perf</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 69ebbc7

Please sign in to comment.