<?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>external</artifactId>
    <groupId>org.testifyproject.external</groupId>
    <version>0.9.3</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>external-bytebuddy</artifactId>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <configuration>
          <relocations>
            <relocation>
              <pattern>net</pattern>
              <shadedPattern>org.testifyproject</shadedPattern>
            </relocation>
          </relocations>
          <transformers>
            <transformer>
              <manifestEntries>
                <Agent-Class>org.testifyproject.bytebuddy.agent.Installer</Agent-Class>
                <Premain-Class>org.testifyproject.bytebuddy.agent.Installer</Premain-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>
              </manifestEntries>
            </transformer>
          </transformers>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <properties>
    <bytebuddy.version>1.2.1</bytebuddy.version>
  </properties>
</project>

