remove shade mojo

This commit is contained in:
Jonathan Shook
2020-05-05 01:04:51 -05:00
parent 9560bd8636
commit b4908079c5
18 changed files with 38 additions and 392 deletions

View File

@@ -74,43 +74,43 @@
<!--</dependency>-->
</dependencies>
<profiles>
<profile>
<id>shade</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>7.0</version>
</dependency>
</dependencies>
<configuration>
<relocations>
<relocation>
<pattern>org.apache.commons.statistics</pattern>
<shadedPattern>io.nosqlbench.virtdata.shaded.oac.statistics</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons.math4.stat</pattern>
<shadedPattern>io.nosqlbench.virtdata.shaded.oac.statistics</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons.statistics.distribution</pattern>
<shadedPattern>io.nosqlbench.virtdata.shaded.oac.statistics.distribution</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- <profiles>-->
<!-- <profile>-->
<!-- <id>shade</id>-->
<!-- <activation>-->
<!-- <activeByDefault>true</activeByDefault>-->
<!-- </activation>-->
<!-- <build>-->
<!-- <plugins>-->
<!-- <plugin>-->
<!-- <artifactId>maven-shade-plugin</artifactId>-->
<!-- <dependencies>-->
<!-- <dependency>-->
<!-- <groupId>org.ow2.asm</groupId>-->
<!-- <artifactId>asm</artifactId>-->
<!-- <version>7.0</version>-->
<!-- </dependency>-->
<!-- </dependencies>-->
<!-- <configuration>-->
<!-- <relocations>-->
<!-- <relocation>-->
<!-- <pattern>org.apache.commons.statistics</pattern>-->
<!-- <shadedPattern>io.nosqlbench.virtdata.shaded.oac.statistics</shadedPattern>-->
<!-- </relocation>-->
<!-- <relocation>-->
<!-- <pattern>org.apache.commons.math4.stat</pattern>-->
<!-- <shadedPattern>io.nosqlbench.virtdata.shaded.oac.statistics</shadedPattern>-->
<!-- </relocation>-->
<!-- <relocation>-->
<!-- <pattern>org.apache.commons.statistics.distribution</pattern>-->
<!-- <shadedPattern>io.nosqlbench.virtdata.shaded.oac.statistics.distribution</shadedPattern>-->
<!-- </relocation>-->
<!-- </relocations>-->
<!-- </configuration>-->
<!-- </plugin>-->
<!-- </plugins>-->
<!-- </build>-->
<!-- </profile>-->
<!-- </profiles>-->
</project>