156 lines
6.8 KiB
XML
156 lines
6.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Licensed to the Apache Software Foundation (ASF) under one or more
|
|
~ contributor license agreements. See the NOTICE file distributed with
|
|
~ this work for additional information regarding copyright ownership.
|
|
~ The ASF licenses this file to You under the Apache License, Version 2.0
|
|
~ (the "License"); you may not use this file except in compliance with
|
|
~ the License. You may obtain a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ See the License for the specific language governing permissions and
|
|
~ limitations under the License.
|
|
~
|
|
-->
|
|
|
|
<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">
|
|
<parent>
|
|
<artifactId>java-agent-sniffer</artifactId>
|
|
<groupId>org.apache.skywalking</groupId>
|
|
<version>9.4.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>optional-plugins</artifactId>
|
|
<packaging>pom</packaging>
|
|
<properties>
|
|
<shade.net.bytebuddy.source>net.bytebuddy</shade.net.bytebuddy.source>
|
|
<shade.net.bytebuddy.target>${shade.package}.${shade.net.bytebuddy.source}</shade.net.bytebuddy.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<sdk.plugin.related.dir />
|
|
<agent.package.dest.dir>${project.build.directory}${sdk.plugin.related.dir}/../../../../skywalking-agent
|
|
</agent.package.dest.dir>
|
|
<optional.plugin.dest.dir>${agent.package.dest.dir}/optional-plugins</optional.plugin.dest.dir>
|
|
|
|
<ant-contrib.version>1.0b3</ant-contrib.version>
|
|
<ant-nodeps.version>1.8.1</ant-nodeps.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>optional-spring-plugins</module>
|
|
<module>trace-ignore-plugin</module>
|
|
<module>gson-2.8.x-plugin</module>
|
|
<module>zookeeper-3.4.x-plugin</module>
|
|
<module>customize-enhance-plugin</module>
|
|
<module>kotlin-coroutine-plugin</module>
|
|
<module>quartz-scheduler-2.x-plugin</module>
|
|
<module>mybatis-3.x-plugin</module>
|
|
<module>sentinel-1.x-plugin</module>
|
|
<module>ehcache-2.x-plugin</module>
|
|
<module>guava-cache-plugin</module>
|
|
<module>fastjson-1.2.x-plugin</module>
|
|
<module>jackson-2.x-plugin</module>
|
|
<module>shenyu-2.4.x-plugin</module>
|
|
<module>trace-sampler-cpu-policy-plugin</module>
|
|
<module>nacos-client-2.x-plugin</module>
|
|
<module>netty-http-4.1.x-plugin</module>
|
|
<module>caffeine-3.x-plugin</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.skywalking</groupId>
|
|
<artifactId>apm-agent-core</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.skywalking</groupId>
|
|
<artifactId>java-agent-util</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.skywalking</groupId>
|
|
<artifactId>apm-test-tools</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<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>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>${shade.net.bytebuddy.source}</pattern>
|
|
<shadedPattern>${shade.net.bytebuddy.target}</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
<configuration>
|
|
<target>
|
|
<taskdef resource="net/sf/antcontrib/antcontrib.properties" classpathref="maven.runtime.classpath" />
|
|
<if>
|
|
<equals arg1="${project.packaging}" arg2="jar" />
|
|
<then>
|
|
<mkdir dir="${optional.plugin.dest.dir}" />
|
|
<copy file="${project.build.directory}/${project.artifactId}-${project.version}.jar" tofile="${optional.plugin.dest.dir}/${project.artifactId}-${project.version}.jar" overwrite="true" />
|
|
</then>
|
|
</if>
|
|
</target>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ant-contrib</groupId>
|
|
<artifactId>ant-contrib</artifactId>
|
|
<version>${ant-contrib.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>ant</groupId>
|
|
<artifactId>ant</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.ant</groupId>
|
|
<artifactId>ant-nodeps</artifactId>
|
|
<version>${ant-nodeps.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|