| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <?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>
- <artifactId>byte-buddy-parent</artifactId>
- <groupId>net.bytebuddy</groupId>
- <version>1.9.5</version>
- </parent>
- <artifactId>byte-buddy-agent</artifactId>
- <packaging>jar</packaging>
- <properties>
- <bytebuddy.agent>net.bytebuddy.agent.Installer</bytebuddy.agent>
- <attach.package.sun>com.sun.tools.attach</attach.package.sun>
- <attach.package.ibm>com.ibm.tools.attach</attach.package.ibm>
- <version.unixsocket>2.0.4</version.unixsocket>
- <packages.list>net.bytebuddy.agent</packages.list>
- </properties>
- <name>Byte Buddy Java agent</name>
- <description>The Byte Buddy Java agent allows to access the JVM's HotSwap feature.</description>
- <!--
- The Unix socket dependency can be excluded safely. Byte Buddy will safely discover the
- non-availability and not use the corresponding virtual machine implementation. The
- implementation requires Java 7+ and is deactivated on Java 6 VMs.
- -->
- <dependencies>
- <dependency>
- <groupId>com.kohlschutter.junixsocket</groupId>
- <artifactId>junixsocket-native-common</artifactId>
- <version>${version.unixsocket}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${version.junit}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <version>${version.mockito}</version>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <groupId>net.bytebuddy</groupId>
- <artifactId>byte-buddy</artifactId>
- </exclusion>
- <exclusion>
- <groupId>net.bytebuddy</groupId>
- <artifactId>byte-buddy-agent</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- Include last version of Byte Buddy manually. -->
- <dependency>
- <groupId>net.bytebuddy</groupId>
- <artifactId>byte-buddy</artifactId>
- <version>1.9.3</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <!-- Create manifest file which is required for creating an OSGi bundle. -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>${version.plugin.jar}</version>
- <configuration>
- <archive>
- <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
- </archive>
- </configuration>
- </plugin>
- <!-- Specify OSGi packaging and agent manifest headers. -->
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <version>${version.plugin.bundle}</version>
- <executions>
- <execution>
- <phase>process-classes</phase>
- <goals>
- <goal>manifest</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <instructions>
- <Multi-Release>true</Multi-Release>
- <Premain-Class>${bytebuddy.agent}</Premain-Class>
- <Agent-Class>${bytebuddy.agent}</Agent-Class>
- <Can-Redefine-Classes>true</Can-Redefine-Classes>
- <Can-Retransform-Classes>true</Can-Retransform-Classes>
- <Can-Set-Native-Method-Prefix>true</Can-Set-Native-Method-Prefix>
- <Import-Package>
- ${attach.package.sun};resolution:="optional",
- ${attach.package.ibm};resolution:="optional"
- </Import-Package>
- <Export-Package>${packages.list}</Export-Package>
- </instructions>
- </configuration>
- </plugin>
- <!-- Create a module-info.class file. -->
- <plugin>
- <groupId>codes.rafael.modulemaker</groupId>
- <artifactId>modulemaker-maven-plugin</artifactId>
- <version>${version.plugin.modulemaker}</version>
- <dependencies>
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm</artifactId>
- <version>${version.asm}</version>
- </dependency>
- </dependencies>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>inject-module</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <name>net.bytebuddy.agent</name>
- <multirelease>true</multirelease>
- <packages>${packages.list}</packages>
- <exports>${packages.list}</exports>
- <requires>java.instrument</requires>
- <static-requires>jdk.attach</static-requires>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|