Merge changes from topic "robolectric-java11"
* changes:
Adding byte-buddy-agent 1.9.3
Adding byte-buddy 1.9.3
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3-sources.jar b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3-sources.jar
new file mode 100644
index 0000000..cc30ed3
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3-sources.jar
Binary files differ
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3-sources.jar.md5 b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3-sources.jar.md5
new file mode 100644
index 0000000..4a34d30
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3-sources.jar.md5
@@ -0,0 +1 @@
+3d1028273275e864e3cfc5c102690ca8
\ No newline at end of file
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3-sources.jar.sha1 b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3-sources.jar.sha1
new file mode 100644
index 0000000..0c1e5eb
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3-sources.jar.sha1
@@ -0,0 +1 @@
+331129f3735b57bdb899a4e73731cf5f3322cff4
\ No newline at end of file
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.jar b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.jar
new file mode 100644
index 0000000..51a0bd4
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.jar
Binary files differ
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.jar.md5 b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.jar.md5
new file mode 100644
index 0000000..b680cae
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.jar.md5
@@ -0,0 +1 @@
+b9946acb365e11b79cd92544da61aa4a
\ No newline at end of file
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.jar.sha1 b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.jar.sha1
new file mode 100644
index 0000000..2553ee4
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.jar.sha1
@@ -0,0 +1 @@
+f5b78c16cf4060664d80b6ca32d80dca4bd3d264
\ No newline at end of file
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.pom b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.pom
new file mode 100644
index 0000000..b05376e
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.pom
@@ -0,0 +1,143 @@
+<?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.3</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.2</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>
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.pom.md5 b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.pom.md5
new file mode 100644
index 0000000..ec1aad9
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.pom.md5
@@ -0,0 +1 @@
+5f1593b682ac0e5339a8c16e1a467e19
\ No newline at end of file
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.pom.sha1 b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.pom.sha1
new file mode 100644
index 0000000..f4d873f
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.9.3/byte-buddy-agent-1.9.3.pom.sha1
@@ -0,0 +1 @@
+46d0f92690a70fffd765ab5bbc25bfcc239cd7fb
\ No newline at end of file
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy-agent/maven-metadata.xml b/common/m2/repository/net/bytebuddy/byte-buddy-agent/maven-metadata.xml
new file mode 100644
index 0000000..31eae8c
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy-agent/maven-metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+ <groupId>net.bytebuddy</groupId>
+ <artifactId>byte-buddy-agent</artifactId>
+ <versioning>
+ <release>1.9.3</release>
+ <versions>
+ <version>1.9.3</version>
+ </versions>
+ <lastUpdated>20220113130612</lastUpdated>
+ </versioning>
+</metadata>
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy-parent/1.9.3/byte-buddy-parent-1.9.3.pom b/common/m2/repository/net/bytebuddy/byte-buddy-parent/1.9.3/byte-buddy-parent-1.9.3.pom
new file mode 100644
index 0000000..9c5280e
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy-parent/1.9.3/byte-buddy-parent-1.9.3.pom
@@ -0,0 +1,756 @@
+<?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>
+
+ <groupId>net.bytebuddy</groupId>
+ <artifactId>byte-buddy-parent</artifactId>
+ <version>1.9.3</version>
+ <packaging>pom</packaging>
+
+ <inceptionYear>2014</inceptionYear>
+
+ <name>Byte Buddy (parent)</name>
+ <description>
+ Byte Buddy is a Java library for creating Java classes at run time.
+ The parent artifact contains configuration information that concern all modules.
+ </description>
+ <url>http://bytebuddy.net</url>
+
+ <!--
+ There are several build profiles available:
+ - extras: Creates additional artifacts containing source files and javadoc. (activated on release)
+ - gpg: Sign all artifacts using gpg. (activated on release)
+ - checks: Applies style checks to the source files. (activated by default, activated on release)
+ - integration: Runs additional unit tests and executes static code analysis (activated on CI server)
+ - android: Builds an Android test application. An Android SDK is required for doing so. (excluded from release)
+
+ It is also possible to build Byte Buddy against a specific byte code level. By default, Byte Buddy is Java 5 compatible
+ but requires Java 6 to build and to run tests: By activating a profile javaX where X is a specific version number,
+ tests and source are compiled to a differing byte code level.
+
+ Additionally, the following reports are available via Maven:
+ - jacoco:prepare-agent verify jacoco:report - Computes coverage for test suite (all modules)
+ - org.pitest:pitest-maven:mutationCoverage - Runs mutation tests (all modules)
+ - spotbugs:spotbugs spotbugs:gui - Runs spotbugs and shows a report in a graphical interface (module specific)
+ - com.github.ferstl:jitwatch-jarscan-maven-plugin:scan - Finds all methods above HotSpot's inlining threshold
+ - clirr:check - Checks for binary changes in the API
+ -->
+
+ <modules>
+ <module>byte-buddy</module>
+ <module>byte-buddy-dep</module>
+ <module>byte-buddy-benchmark</module>
+ <module>byte-buddy-agent</module>
+ <module>byte-buddy-android</module>
+ <module>byte-buddy-maven-plugin</module>
+ <module>byte-buddy-gradle-plugin</module>
+ </modules>
+
+ <properties>
+ <bytebuddy.extras>false</bytebuddy.extras>
+ <bytebuddy.integration>false</bytebuddy.integration>
+ <bytebuddy.experimental>false</bytebuddy.experimental>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <sourcecode.main.version>1.5</sourcecode.main.version>
+ <sourcecode.test.version>1.6</sourcecode.test.version>
+ <bytecode.main.version>1.5</bytecode.main.version>
+ <bytecode.test.version>1.6</bytecode.test.version>
+ <pitest.target>net.bytebuddy</pitest.target>
+ <asm.javadoc>http://asm.ow2.io/javadoc</asm.javadoc>
+ <version.asm>7.0</version.asm>
+ <version.junit>4.12</version.junit>
+ <version.mockito>2.23.0</version.mockito>
+ <version.plugin.clean>3.0.0</version.plugin.clean>
+ <version.plugin.bundle>3.5.0</version.plugin.bundle>
+ <version.plugin.compiler>3.8.0</version.plugin.compiler>
+ <version.plugin.install>2.5.2</version.plugin.install>
+ <version.plugin.deploy>2.8.2</version.plugin.deploy>
+ <version.plugin.javadoc>2.10.4</version.plugin.javadoc>
+ <version.plugin.source>3.0.1</version.plugin.source>
+ <version.plugin.shade>3.2.0</version.plugin.shade>
+ <version.plugin.gpg>1.6</version.plugin.gpg>
+ <version.plugin.jxr>2.5</version.plugin.jxr>
+ <version.plugin.buildhelp>1.12</version.plugin.buildhelp>
+ <version.plugin.jar>3.0.2</version.plugin.jar>
+ <version.plugin.plugin>3.5.2</version.plugin.plugin>
+ <version.plugin.release>2.5.3</version.plugin.release>
+ <version.plugin.resources>3.0.2</version.plugin.resources>
+ <version.plugin.surefire>2.21.0</version.plugin.surefire>
+ <version.plugin.pitest>1.2.0</version.plugin.pitest>
+ <version.plugin.animal-sniffer>1.16</version.plugin.animal-sniffer>
+ <version.plugin.enforcer>1.4.1</version.plugin.enforcer>
+ <version.plugin.jacoco>0.8.2</version.plugin.jacoco>
+ <version.plugin.coveralls>4.1.0</version.plugin.coveralls>
+ <version.plugin.checkstyle>2.17</version.plugin.checkstyle>
+ <version.plugin.jitwatch>1.0.1</version.plugin.jitwatch>
+ <version.plugin.clirr>2.8</version.plugin.clirr>
+ <version.plugin.spotbugs>3.1.3</version.plugin.spotbugs>
+ <version.plugin.modulemaker>1.4</version.plugin.modulemaker>
+ <version.plugin.license>3.0</version.plugin.license>
+ <version.android.sdk>4.1.1.4</version.android.sdk>
+ <version.utility.findbugs>3.0.1</version.utility.findbugs>
+ <spotbugs.skip>false</spotbugs.skip>
+ <jacoco.skip>false</jacoco.skip>
+ </properties>
+
+ <licenses>
+ <license>
+ <name>The Apache Software License, Version 2.0</name>
+ <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+ <distribution>repo</distribution>
+ <comments>A business-friendly OSS license</comments>
+ </license>
+ </licenses>
+
+ <developers>
+ <developer>
+ <id>raphw</id>
+ <name>Rafael Winterhalter</name>
+ <email>rafael.wth@gmail.com</email>
+ <url>http://rafael.codes</url>
+ <roles>
+ <role>developer</role>
+ </roles>
+ <timezone>+1</timezone>
+ </developer>
+ </developers>
+
+ <issueManagement>
+ <system>github.com</system>
+ <url>https://github.com/raphw/byte-buddy/issues</url>
+ </issueManagement>
+
+ <scm>
+ <connection>scm:git:git@github.com:raphw/byte-buddy.git</connection>
+ <developerConnection>scm:git:git@github.com:raphw/byte-buddy.git</developerConnection>
+ <url>git@github.com:raphw/byte-buddy.git</url>
+ <tag>byte-buddy-1.9.3</tag>
+ </scm>
+
+ <dependencies>
+ <!-- Allows the suppression of spotbugs false-positives by annotations without adding an actual dependency. -->
+ <dependency>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>findbugs-annotations</artifactId>
+ <version>${version.utility.findbugs}</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <!-- Define release properties. -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <version>${version.plugin.release}</version>
+ <configuration>
+ <useReleaseProfile>false</useReleaseProfile>
+ <releaseProfiles>extras,gpg</releaseProfiles>
+ <autoVersionSubmodules>true</autoVersionSubmodules>
+ <tagNameFormat>byte-buddy-@{project.version}</tagNameFormat>
+ </configuration>
+ </plugin>
+ <!-- Enable mutation testing. -->
+ <plugin>
+ <groupId>org.pitest</groupId>
+ <artifactId>pitest-maven</artifactId>
+ <version>${version.plugin.pitest}</version>
+ <configuration>
+ <targetClasses>
+ <param>${pitest.target}.*</param>
+ </targetClasses>
+ <targetTests>
+ <param>${pitest.target}.*</param>
+ </targetTests>
+ </configuration>
+ </plugin>
+ <!-- Configure Jacoco support for evaluating test case coverage. -->
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <version>${version.plugin.jacoco}</version>
+ <configuration>
+ <skip>${jacoco.skip}</skip>
+ <includes>
+ <include>net/bytebuddy/**</include>
+ </includes>
+ <excludes>
+ <exclude>net/bytebuddy/benchmark/generated/*</exclude>
+ <!-- Avoid adding synthetic members to test classes as test assert class members. -->
+ <exclude>*Test*</exclude>
+ <exclude>*test*</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ <!-- Generate coveralls reports from CI server. -->
+ <plugin>
+ <groupId>org.eluder.coveralls</groupId>
+ <artifactId>coveralls-maven-plugin</artifactId>
+ <version>${version.plugin.coveralls}</version>
+ <configuration>
+ <sourceDirectories>
+ <sourceDirectory>${project.basedir}/byte-buddy-dep/src/precompiled/java</sourceDirectory>
+ </sourceDirectories>
+ </configuration>
+ </plugin>
+ <!-- Also allow for manual spotbugs execution. Note that the generated warnings do not always apply for Byte Buddy's use case. -->
+ <plugin>
+ <groupId>com.github.spotbugs</groupId>
+ <artifactId>spotbugs-maven-plugin</artifactId>
+ <version>${version.plugin.spotbugs}</version>
+ <configuration>
+ <skip>${spotbugs.skip}</skip>
+ <effort>Max</effort>
+ <threshold>Low</threshold>
+ <xmlOutput>true</xmlOutput>
+ <failOnError>false</failOnError>
+ <spotbugsXmlOutputDirectory>${project.build.directory}/spotbugs</spotbugsXmlOutputDirectory>
+ </configuration>
+ </plugin>
+ <!-- Enable scanning for methods above the inlining threshold (JDK 7+) -->
+ <plugin>
+ <groupId>com.github.ferstl</groupId>
+ <artifactId>jitwatch-jarscan-maven-plugin</artifactId>
+ <version>${version.plugin.jitwatch}</version>
+ </plugin>
+ <!-- Enable scanning for binary changes between releases -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>clirr-maven-plugin</artifactId>
+ <version>${version.plugin.clirr}</version>
+ </plugin>
+ <!-- Resolve the current year. -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>${version.plugin.buildhelp}</version>
+ <executions>
+ <execution>
+ <id>timestamp-property</id>
+ <goals>
+ <goal>timestamp-property</goal>
+ </goals>
+ <phase>validate</phase>
+ <configuration>
+ <locale>en_US</locale>
+ <name>current.year</name>
+ <pattern>yyyy</pattern>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <!-- Add license headers to all files. -->
+ <plugin>
+ <groupId>com.mycila</groupId>
+ <artifactId>license-maven-plugin</artifactId>
+ <version>${version.plugin.license}</version>
+ <inherited>false</inherited>
+ <configuration>
+ <header>${project.basedir}/NOTICE</header>
+ <aggregate>true</aggregate>
+ <failIfMissing>true</failIfMissing>
+ <encoding>${project.build.sourceEncoding}</encoding>
+ <properties>
+ <current.year>${current.year}</current.year>
+ <copyright.holder>Rafael Winterhalter</copyright.holder>
+ </properties>
+ <includes>
+ <include>**/main/java/**/*.java</include>
+ <include>**/precompiled/java/**/*.java</include>
+ </includes>
+ <strictCheck>true</strictCheck>
+ <mapping>
+ <java>SLASHSTAR_STYLE</java>
+ </mapping>
+ </configuration>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>format</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-clean-plugin</artifactId>
+ <version>${version.plugin.clean}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>${version.plugin.jar}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>${version.plugin.resources}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-install-plugin</artifactId>
+ <version>${version.plugin.install}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>${version.plugin.surefire}</version>
+ <configuration>
+ <systemPropertyVariables>
+ <net.bytebuddy.experimental>${bytebuddy.experimental}</net.bytebuddy.experimental>
+ <net.bytebuddy.test.integration>${bytebuddy.integration}</net.bytebuddy.test.integration>
+ </systemPropertyVariables>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>${version.plugin.deploy}</version>
+ <configuration>
+ <updateReleaseInfo>true</updateReleaseInfo>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>${version.plugin.compiler}</version>
+ <inherited>true</inherited>
+ <configuration>
+ <source>${sourcecode.main.version}</source>
+ <target>${bytecode.main.version}</target>
+ <testSource>${sourcecode.test.version}</testSource>
+ <testTarget>${bytecode.test.version}</testTarget>
+ <encoding>${project.build.sourceEncoding}</encoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-plugin-plugin</artifactId>
+ <version>${version.plugin.plugin}</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm</artifactId>
+ <version>${version.asm}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm-commons</artifactId>
+ <version>${version.asm}</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
+ <!-- Define explicit version to overcome problem with generated reports. -->
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jxr-plugin</artifactId>
+ <version>${version.plugin.jxr}</version>
+ </plugin>
+ </plugins>
+ </reporting>
+
+ <distributionManagement>
+ <repository>
+ <id>bintray</id>
+ <url>https://api.bintray.com/maven/raphw/maven/ByteBuddy</url>
+ </repository>
+ </distributionManagement>
+
+ <profiles>
+ <!-- Runs the build with compatibility for Java 6 JVMs. -->
+ <profile>
+ <id>java6-compatibility</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <jdk>1.6</jdk>
+ </activation>
+ <properties>
+ <version.plugin.bundle>2.5.4</version.plugin.bundle>
+ <version.plugin.checkstyle>2.15</version.plugin.checkstyle>
+ <version.plugin.compiler>3.6.2</version.plugin.compiler>
+ <version.plugin.spotbugs>3.1.0-RC8</version.plugin.spotbugs>
+ <version.plugin.shade>3.1.1</version.plugin.shade>
+ <spotbugs.skip>true</spotbugs.skip>
+ </properties>
+ </profile>
+ <!-- Runs the build with compatibility for Java 7 JVMs. -->
+ <profile>
+ <id>java7-compatibility</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <jdk>1.7</jdk>
+ </activation>
+ <properties>
+ <version.plugin.spotbugs>3.1.0-RC8</version.plugin.spotbugs>
+ <spotbugs.skip>true</spotbugs.skip>
+ </properties>
+ </profile>
+ <!-- Runs the build with compatibility for Java 9 JVMs. -->
+ <profile>
+ <id>java9-compatibility</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <jdk>9</jdk>
+ </activation>
+ <properties>
+ <sourcecode.main.version>1.6</sourcecode.main.version>
+ <sourcecode.test.version>1.6</sourcecode.test.version>
+ <bytecode.main.version>1.6</bytecode.main.version>
+ <bytecode.test.version>1.6</bytecode.test.version>
+ </properties>
+ </profile>
+ <!-- Runs the build with compatibility for Java 10 JVMs. -->
+ <profile>
+ <id>java10-compatibility</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <jdk>10</jdk>
+ </activation>
+ <properties>
+ <sourcecode.main.version>1.7</sourcecode.main.version>
+ <sourcecode.test.version>1.7</sourcecode.test.version>
+ <bytecode.main.version>1.7</bytecode.main.version>
+ <bytecode.test.version>1.7</bytecode.test.version>
+ </properties>
+ </profile>
+ <!-- Runs the build with compatibility for Java 11 JVMs. -->
+ <profile>
+ <id>java11-compatibility</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <jdk>11</jdk>
+ </activation>
+ <properties>
+ <sourcecode.main.version>1.8</sourcecode.main.version>
+ <sourcecode.test.version>1.8</sourcecode.test.version>
+ <bytecode.main.version>1.8</bytecode.main.version>
+ <bytecode.test.version>1.8</bytecode.test.version>
+ <jacoco.skip>true</jacoco.skip>
+ </properties>
+ </profile>
+ <!-- Runs the build with compatibility for Java 12 JVMs. -->
+ <profile>
+ <id>java12-compatibility</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <jdk>12</jdk>
+ </activation>
+ <properties>
+ <sourcecode.main.version>9</sourcecode.main.version>
+ <sourcecode.test.version>9</sourcecode.test.version>
+ <bytecode.main.version>9</bytecode.main.version>
+ <bytecode.test.version>9</bytecode.test.version>
+ <jacoco.skip>true</jacoco.skip>
+ <bytebuddy.experimental>true</bytebuddy.experimental>
+ </properties>
+ </profile>
+ <!-- Builds using a byte code target for Java 6. -->
+ <profile>
+ <id>java6</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <properties>
+ <bytecode.main.version>1.6</bytecode.main.version>
+ </properties>
+ </profile>
+ <!-- Builds using a byte code target for Java 7. -->
+ <profile>
+ <id>java7</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <properties>
+ <bytecode.main.version>1.7</bytecode.main.version>
+ <bytecode.test.version>1.7</bytecode.test.version>
+ </properties>
+ </profile>
+ <!-- Builds using a byte code target for Java 8. -->
+ <profile>
+ <id>java8</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <properties>
+ <bytecode.main.version>1.8</bytecode.main.version>
+ <bytecode.test.version>1.8</bytecode.test.version>
+ </properties>
+ </profile>
+ <!-- Builds using a byte code target for Java 9. -->
+ <profile>
+ <id>java9</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <properties>
+ <bytecode.main.version>9</bytecode.main.version>
+ <bytecode.test.version>9</bytecode.test.version>
+ </properties>
+ </profile>
+ <!-- Builds using a byte code target for Java 10. -->
+ <profile>
+ <id>java10</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <properties>
+ <bytecode.main.version>10</bytecode.main.version>
+ <bytecode.test.version>10</bytecode.test.version>
+ <spotbugs.skip>true</spotbugs.skip>
+ </properties>
+ </profile>
+ <!-- Builds using a byte code target for Java 11. -->
+ <profile>
+ <id>java11</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <properties>
+ <bytecode.main.version>11</bytecode.main.version>
+ <bytecode.test.version>11</bytecode.test.version>
+ <spotbugs.skip>true</spotbugs.skip>
+ </properties>
+ </profile>
+ <!-- Builds using a byte code target for Java 12. -->
+ <profile>
+ <id>java12</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <properties>
+ <bytecode.main.version>12</bytecode.main.version>
+ <bytecode.test.version>12</bytecode.test.version>
+ <spotbugs.skip>true</spotbugs.skip>
+ </properties>
+ </profile>
+ <!-- Creates additional artifacts that are required for deployment. -->
+ <profile>
+ <id>extras</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <properties>
+ <bytebuddy.extras>true</bytebuddy.extras>
+ </properties>
+ <build>
+ <plugins>
+ <!-- Create source code artifact. -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <version>${version.plugin.source}</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <!-- Create javadoc artifact. -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>${version.plugin.javadoc}</version>
+ <executions>
+ <execution>
+ <id>attach-javadoc</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ <!-- Additionally to the regular jar file specified above, create an aggregated jar. -->
+ <execution>
+ <id>aggregate-javadoc</id>
+ <goals>
+ <goal>aggregate</goal>
+ </goals>
+ <phase>package</phase>
+ <configuration>
+ <doctitle>Byte Buddy (full API), version ${project.version}</doctitle>
+ <!-- Fails due to repacking of ASM by the Shade plugin. -->
+ <failOnError>false</failOnError>
+ </configuration>
+ </execution>
+ </executions>
+ <configuration>
+ <detectJavaApiLink>true</detectJavaApiLink>
+ <links>
+ <link>${asm.javadoc}</link>
+ </links>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <!-- Sign any created artifact. (Requires configuration of gpg on the executing machine.) -->
+ <profile>
+ <id>gpg</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <!-- Sign artifacts. -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <version>${version.plugin.gpg}</version>
+ <executions>
+ <execution>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <!-- Basic checks that are not requiring too much runtime. -->
+ <profile>
+ <id>checks</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <!-- Check style on build. -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ <version>${version.plugin.checkstyle}</version>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ <configuration>
+ <configLocation>checkstyle.xml</configLocation>
+ <consoleOutput>true</consoleOutput>
+ <failsOnError>true</failsOnError>
+ <excludes>**/generated/**/*</excludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <!-- Check API compatibility. -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>animal-sniffer-maven-plugin</artifactId>
+ <version>${version.plugin.animal-sniffer}</version>
+ <executions>
+ <execution>
+ <phase>test</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ <configuration>
+ <signature>
+ <groupId>org.codehaus.mojo.signature</groupId>
+ <artifactId>java15</artifactId>
+ <version>1.0</version>
+ </signature>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <!-- Make sure that Byte Buddy does never depend on ASM's tree API. -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-enforcer-plugin</artifactId>
+ <version>${version.plugin.enforcer}</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>enforce</goal>
+ </goals>
+ <configuration>
+ <fail>true</fail>
+ <rules>
+ <bannedDependencies>
+ <includes>
+ <include>org.ow2.asm:asm-tree</include>
+ </includes>
+ </bannedDependencies>
+ <requireMavenVersion>
+ <version>[3.2.5,)</version>
+ </requireMavenVersion>
+ <requireJavaVersion>
+ <version>[1.6,)</version>
+ </requireJavaVersion>
+ </rules>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <!-- Integration profile that executes long-running tasks and additional static code analysis. -->
+ <profile>
+ <id>integration</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <properties>
+ <bytebuddy.integration>true</bytebuddy.integration>
+ </properties>
+ <build>
+ <plugins>
+ <!-- Run spotbugs if not specified differently in a module.-->
+ <plugin>
+ <groupId>com.github.spotbugs</groupId>
+ <artifactId>spotbugs-maven-plugin</artifactId>
+ <version>${version.plugin.spotbugs}</version>
+ <executions>
+ <execution>
+ <phase>verify</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ <configuration>
+ <skip>${spotbugs.skip}</skip>
+ <effort>Max</effort>
+ <threshold>Low</threshold>
+ <xmlOutput>true</xmlOutput>
+ <failOnError>true</failOnError>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <!-- Only build the Android test application on demand as it requires Android SDK installation. -->
+ <profile>
+ <id>android</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <modules>
+ <module>byte-buddy</module>
+ <module>byte-buddy-dep</module>
+ <module>byte-buddy-benchmark</module>
+ <module>byte-buddy-agent</module>
+ <module>byte-buddy-android</module>
+ <module>byte-buddy-android-test</module>
+ </modules>
+ </profile>
+ </profiles>
+
+</project>
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy-parent/1.9.3/byte-buddy-parent-1.9.3.pom.md5 b/common/m2/repository/net/bytebuddy/byte-buddy-parent/1.9.3/byte-buddy-parent-1.9.3.pom.md5
new file mode 100644
index 0000000..2ecc59c
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy-parent/1.9.3/byte-buddy-parent-1.9.3.pom.md5
@@ -0,0 +1 @@
+d63ddc27762ade7d4c5f3e25c2325f31
\ No newline at end of file
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy-parent/1.9.3/byte-buddy-parent-1.9.3.pom.sha1 b/common/m2/repository/net/bytebuddy/byte-buddy-parent/1.9.3/byte-buddy-parent-1.9.3.pom.sha1
new file mode 100644
index 0000000..2532221
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy-parent/1.9.3/byte-buddy-parent-1.9.3.pom.sha1
@@ -0,0 +1 @@
+547c6b68b029615a7d10a3df176f0cd86c0a295f
\ No newline at end of file
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy-parent/maven-metadata.xml b/common/m2/repository/net/bytebuddy/byte-buddy-parent/maven-metadata.xml
new file mode 100644
index 0000000..6913643
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy-parent/maven-metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+ <groupId>net.bytebuddy</groupId>
+ <artifactId>byte-buddy-parent</artifactId>
+ <versioning>
+ <release>1.9.3</release>
+ <versions>
+ <version>1.9.3</version>
+ </versions>
+ <lastUpdated>20220113130609</lastUpdated>
+ </versioning>
+</metadata>
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3-sources.jar b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3-sources.jar
new file mode 100644
index 0000000..400bdcb
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3-sources.jar
Binary files differ
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3-sources.jar.md5 b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3-sources.jar.md5
new file mode 100644
index 0000000..0b51414
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3-sources.jar.md5
@@ -0,0 +1 @@
+9e3ea2cd2dac097701248c494880332d
\ No newline at end of file
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3-sources.jar.sha1 b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3-sources.jar.sha1
new file mode 100644
index 0000000..f26b44b
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3-sources.jar.sha1
@@ -0,0 +1 @@
+ef8bdb760633510eed72e262193d6afbc451cc72
\ No newline at end of file
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.jar b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.jar
new file mode 100644
index 0000000..c1c2b07
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.jar
Binary files differ
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.jar.md5 b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.jar.md5
new file mode 100644
index 0000000..628c4a5
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.jar.md5
@@ -0,0 +1 @@
+01263e82b4a916b53c90b61e79b4c7b8
\ No newline at end of file
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.jar.sha1 b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.jar.sha1
new file mode 100644
index 0000000..a98a998
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.jar.sha1
@@ -0,0 +1 @@
+f32e510b239620852fc9a2387fac41fd053d6a4d
\ No newline at end of file
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.pom b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.pom
new file mode 100644
index 0000000..aebcbbc
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.pom
@@ -0,0 +1,254 @@
+<?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>byte-buddy-parent</artifactId>
+ <groupId>net.bytebuddy</groupId>
+ <version>1.9.3</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>byte-buddy</artifactId>
+ <name>Byte Buddy (without dependencies)</name>
+ <description>Byte Buddy is a Java library for creating Java classes at run time.
+ This artifact is a build of Byte Buddy with all ASM dependencies repackaged into its own name space.</description>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-shade-plugin</artifactId>
+ <version>${version.plugin.shade}</version>
+ <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.source}</pattern>
+ <shadedPattern>${shade.target}</shadedPattern>
+ </relocation>
+ </relocations>
+ <filters>
+ <filter>
+ <artifact>org.ow2.asm:asm-commons</artifact>
+ <includes>
+ <include>org/objectweb/asm/commons/Remapper.class</include>
+ <include>org/objectweb/asm/commons/SimpleRemapper.class</include>
+ <include>org/objectweb/asm/commons/ClassRemapper.class</include>
+ <include>org/objectweb/asm/commons/AnnotationRemapper.class</include>
+ <include>org/objectweb/asm/commons/FieldRemapper.class</include>
+ <include>org/objectweb/asm/commons/MethodRemapper.class</include>
+ <include>org/objectweb/asm/commons/ModuleRemapper.class</include>
+ <include>org/objectweb/asm/commons/SignatureRemapper.class</include>
+ </includes>
+ </filter>
+ </filters>
+ <transformers>
+ <transformer>
+ <mainClass>net.bytebuddy.build.Plugin$Engine$Default</mainClass>
+ </transformer>
+ </transformers>
+ </configuration>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm</artifactId>
+ <version>${version.asm}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm-commons</artifactId>
+ <version>${version.asm}</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ <plugin>
+ <groupId>org.pitest</groupId>
+ <artifactId>pitest-maven</artifactId>
+ <version>${version.plugin.pitest}</version>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>com.github.spotbugs</groupId>
+ <artifactId>spotbugs-maven-plugin</artifactId>
+ <version>${version.plugin.spotbugs}</version>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>${version.plugin.jar}</version>
+ <configuration>
+ <archive>
+ <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+ </archive>
+ </configuration>
+ </plugin>
+ <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>
+ <Export-Package>${packages.list}</Export-Package>
+ </instructions>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>codes.rafael.modulemaker</groupId>
+ <artifactId>modulemaker-maven-plugin</artifactId>
+ <version>${version.plugin.modulemaker}</version>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>inject-module</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm</artifactId>
+ <version>${version.asm}</version>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <name>net.bytebuddy</name>
+ <multirelease>true</multirelease>
+ <packages>${packages.list}</packages>
+ <exports>${packages.list}</exports>
+ <static-requires>java.instrument,
+ jdk.unsupported,
+ net.bytebuddy.agent</static-requires>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <profiles>
+ <profile>
+ <id>extras</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.10.4</version>
+ <executions>
+ <execution>
+ <id>attach-javadoc</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ <configuration>
+ <includeDependencySources>true</includeDependencySources>
+ <dependencySourceIncludes>
+ <dependencySourceInclude>net.bytebuddy:byte-buddy-dep</dependencySourceInclude>
+ </dependencySourceIncludes>
+ <detectJavaApiLink>true</detectJavaApiLink>
+ <links>
+ <link>http://asm.ow2.io/javadoc</link>
+ </links>
+ </configuration>
+ </execution>
+ <execution>
+ <id>aggregate-javadoc</id>
+ <phase>package</phase>
+ <goals>
+ <goal>aggregate</goal>
+ </goals>
+ <configuration>
+ <doctitle>Byte Buddy (full API), version 1.9.3</doctitle>
+ <failOnError>false</failOnError>
+ <includeDependencySources>true</includeDependencySources>
+ <dependencySourceIncludes>
+ <dependencySourceInclude>net.bytebuddy:byte-buddy-dep</dependencySourceInclude>
+ </dependencySourceIncludes>
+ <detectJavaApiLink>true</detectJavaApiLink>
+ <links>
+ <link>http://asm.ow2.io/javadoc</link>
+ </links>
+ </configuration>
+ </execution>
+ </executions>
+ <configuration>
+ <includeDependencySources>true</includeDependencySources>
+ <dependencySourceIncludes>
+ <dependencySourceInclude>net.bytebuddy:byte-buddy-dep</dependencySourceInclude>
+ </dependencySourceIncludes>
+ <detectJavaApiLink>true</detectJavaApiLink>
+ <links>
+ <link>http://asm.ow2.io/javadoc</link>
+ </links>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+ <dependencies>
+ <dependency>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>findbugs-annotations</artifactId>
+ <version>3.0.1</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ <properties>
+ <shade.source>org.objectweb.asm</shade.source>
+ <packages.list>net.bytebuddy,
+ net.bytebuddy.agent.builder,
+ net.bytebuddy.asm,
+ net.bytebuddy.build,
+ net.bytebuddy.description,
+ net.bytebuddy.description.annotation,
+ net.bytebuddy.description.enumeration,
+ net.bytebuddy.description.field,
+ net.bytebuddy.description.method,
+ net.bytebuddy.description.modifier,
+ net.bytebuddy.description.type,
+ net.bytebuddy.dynamic,
+ net.bytebuddy.dynamic.loading,
+ net.bytebuddy.dynamic.scaffold,
+ net.bytebuddy.dynamic.scaffold.inline,
+ net.bytebuddy.dynamic.scaffold.subclass,
+ net.bytebuddy.implementation,
+ net.bytebuddy.implementation.attribute,
+ net.bytebuddy.implementation.auxiliary,
+ net.bytebuddy.implementation.bind,
+ net.bytebuddy.implementation.bind.annotation,
+ net.bytebuddy.implementation.bytecode,
+ net.bytebuddy.implementation.bytecode.assign,
+ net.bytebuddy.implementation.bytecode.assign.primitive,
+ net.bytebuddy.implementation.bytecode.assign.reference,
+ net.bytebuddy.implementation.bytecode.collection,
+ net.bytebuddy.implementation.bytecode.constant,
+ net.bytebuddy.implementation.bytecode.member,
+ net.bytebuddy.matcher,
+ net.bytebuddy.pool,
+ net.bytebuddy.utility,
+ net.bytebuddy.utility.privilege,
+ net.bytebuddy.utility.visitor,
+ ${shade.target},
+ ${shade.target}.signature,
+ ${shade.target}.commons</packages.list>
+ <shade.target>net.bytebuddy.jar.asm</shade.target>
+ </properties>
+</project>
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.pom.md5 b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.pom.md5
new file mode 100644
index 0000000..a76eb5a
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.pom.md5
@@ -0,0 +1 @@
+a77d1cda72c3d3f995621cacd069d33e
\ No newline at end of file
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.pom.sha1 b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.pom.sha1
new file mode 100644
index 0000000..2217c14
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy/1.9.3/byte-buddy-1.9.3.pom.sha1
@@ -0,0 +1 @@
+2f357932a1ad37dae4d8aad4b68bd0901cbe9427
\ No newline at end of file
diff --git a/common/m2/repository/net/bytebuddy/byte-buddy/maven-metadata.xml b/common/m2/repository/net/bytebuddy/byte-buddy/maven-metadata.xml
new file mode 100644
index 0000000..74b8a0e
--- /dev/null
+++ b/common/m2/repository/net/bytebuddy/byte-buddy/maven-metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+ <groupId>net.bytebuddy</groupId>
+ <artifactId>byte-buddy</artifactId>
+ <versioning>
+ <release>1.9.3</release>
+ <versions>
+ <version>1.9.3</version>
+ </versions>
+ <lastUpdated>20220113124343</lastUpdated>
+ </versioning>
+</metadata>