mirror of https://github.com/longtai-cn/hippo4j
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
6.2 KiB
125 lines
6.2 KiB
<?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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>cn.hippo4j</groupId>
|
|
<artifactId>hippo4j-agent</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>hippo4j-agent-bootstrap</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<premain.class>cn.hippo4j.agent.bootstrap.Hippo4jAgent</premain.class>
|
|
<can.redefine.classes>true</can.redefine.classes>
|
|
<can.retransform.classes>true</can.retransform.classes>
|
|
<shade.net.bytebuddy.source>net.bytebuddy</shade.net.bytebuddy.source>
|
|
<shade.net.bytebuddy.target>${shade.package}.${shade.net.bytebuddy.source}</shade.net.bytebuddy.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.hippo4j</groupId>
|
|
<artifactId>hippo4j-agent-core</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>hippo4j-threadpool-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 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
<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 dir="${project.basedir}/../hippo4j-agent" />
|
|
</target>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>package</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
<configuration>
|
|
<target>
|
|
<mkdir dir="${project.basedir}/../hippo4j-agent" />
|
|
<copy file="${project.build.directory}/hippo4j-threadpool-agent.jar" tofile="${project.basedir}/../hippo4j-agent/hippo4j-threadpool-agent.jar" overwrite="true" />
|
|
<mkdir dir="${project.basedir}/../hippo4j-agent/config" />
|
|
<mkdir dir="${project.basedir}/../hippo4j-agent/logs" />
|
|
<copydir src="${project.basedir}/../config" dest="${project.basedir}/../hippo4j-agent/config" forceoverwrite="true" />
|
|
<copydir src="${project.basedir}/../dist-material" dest="${project.basedir}/../hippo4j-agent" />
|
|
</target>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |