mirror of https://github.com/longtai-cn/hippo4j
parent
1d01a1cb16
commit
43c7be988a
@ -1,111 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
||||||
<parent>
|
|
||||||
<artifactId>hippo4j-agent</artifactId>
|
|
||||||
<groupId>cn.hippo4j</groupId>
|
|
||||||
<version>${revision}</version>
|
|
||||||
</parent>
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<artifactId>agent-main</artifactId>
|
|
||||||
<build>
|
|
||||||
<finalName>hippo4j-agent</finalName>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<phase>package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>shade</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
||||||
<createDependencyReducedPom>true</createDependencyReducedPom>
|
|
||||||
<createSourcesJar>true</createSourcesJar>
|
|
||||||
<shadeSourcesContent>true</shadeSourcesContent>
|
|
||||||
<transformers>
|
|
||||||
<transformer>
|
|
||||||
<manifestEntries>
|
|
||||||
<Premain-Class>${premain.class}</Premain-Class>
|
|
||||||
<Can-Redefine-Classes>${can.redefine.classes}</Can-Redefine-Classes>
|
|
||||||
<Can-Retransform-Classes>${can.retransform.classes}</Can-Retransform-Classes>
|
|
||||||
</manifestEntries>
|
|
||||||
</transformer>
|
|
||||||
</transformers>
|
|
||||||
<artifactSet>
|
|
||||||
<excludes>
|
|
||||||
<exclude>*:gson</exclude>
|
|
||||||
<exclude>io.grpc:*</exclude>
|
|
||||||
<exclude>io.netty:*</exclude>
|
|
||||||
<exclude>io.opencensus:*</exclude>
|
|
||||||
<exclude>com.google.*:*</exclude>
|
|
||||||
<exclude>com.google.guava:guava</exclude>
|
|
||||||
<exclude>org.checkerframework:checker-compat-qual</exclude>
|
|
||||||
<exclude>org.codehaus.mojo:animal-sniffer-annotations</exclude>
|
|
||||||
<exclude>io.perfmark:*</exclude>
|
|
||||||
<exclude>org.slf4j:*</exclude>
|
|
||||||
</excludes>
|
|
||||||
</artifactSet>
|
|
||||||
<relocations>
|
|
||||||
<relocation>
|
|
||||||
<pattern>${shade.net.bytebuddy.source}</pattern>
|
|
||||||
<shadedPattern>${shade.net.bytebuddy.target}</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
</relocations>
|
|
||||||
<filters>
|
|
||||||
<filter>
|
|
||||||
<artifact>net.bytebuddy:byte-buddy</artifact>
|
|
||||||
<excludes>
|
|
||||||
<exclude>META-INF/versions/9/module-info.class</exclude>
|
|
||||||
</excludes>
|
|
||||||
</filter>
|
|
||||||
</filters>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-antrun-plugin</artifactId>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>clean</id>
|
|
||||||
<phase>clean</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>run</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<target>
|
|
||||||
<delete />
|
|
||||||
</target>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
<execution>
|
|
||||||
<id>package</id>
|
|
||||||
<phase>package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>run</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<target>
|
|
||||||
<mkdir />
|
|
||||||
<copy />
|
|
||||||
<mkdir />
|
|
||||||
<mkdir />
|
|
||||||
<copydir />
|
|
||||||
<copydir />
|
|
||||||
</target>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
<properties>
|
|
||||||
<shade.net.bytebuddy.target>${shade.package}.${shade.net.bytebuddy.source}</shade.net.bytebuddy.target>
|
|
||||||
<can.redefine.classes>true</can.redefine.classes>
|
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
||||||
<shade.net.bytebuddy.source>net.bytebuddy</shade.net.bytebuddy.source>
|
|
||||||
<can.retransform.classes>true</can.retransform.classes>
|
|
||||||
<premain.class>cn.hippo4j.agent.main.Hippo4jAgent</premain.class>
|
|
||||||
</properties>
|
|
||||||
</project>
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue