Modify hippo4j-agent submodule naming.

pull/1203/head
yanrongzhen 2 years ago
parent 1d01a1cb16
commit 43c7be988a

1
.gitignore vendored

@ -8,6 +8,7 @@ target/
### Agent ###
/hippo4j-agent/hippo4j-agent/
**/dependency-reduced-pom.xml
### STS ###
.apt_generated

@ -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>

@ -9,12 +9,12 @@
<version>${revision}</version>
</parent>
<artifactId>agent-main</artifactId>
<artifactId>hippo4j-agent-bootstrap</artifactId>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<premain.class>cn.hippo4j.agent.main.Hippo4jAgent</premain.class>
<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>
@ -24,7 +24,7 @@
<dependencies>
<dependency>
<groupId>cn.hippo4j</groupId>
<artifactId>agent-core</artifactId>
<artifactId>hippo4j-agent-core</artifactId>
</dependency>
</dependencies>

@ -15,7 +15,7 @@
* limitations under the License.
*/
package cn.hippo4j.agent.main;
package cn.hippo4j.agent.bootstrap;
import cn.hippo4j.agent.core.boot.AgentPackageNotFoundException;
import cn.hippo4j.agent.core.boot.ServiceManager;

@ -6,7 +6,7 @@
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>agent-core</artifactId>
<artifactId>hippo4j-agent-core</artifactId>
<build>
<plugins>
<plugin>

@ -9,7 +9,7 @@
<version>${revision}</version>
</parent>
<artifactId>agent-core</artifactId>
<artifactId>hippo4j-agent-core</artifactId>
<packaging>jar</packaging>
<properties>

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save