| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367 |
- <?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.15.11</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>https://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 that are long-running (activated on CI server)
- - analysis: 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)
- - native-compile: Compiles the native extensions required by Byte Buddy agent.
- 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
- - versions:update-properties - Automated dependency version update.
- At last, two pseudo-profiles are available that allow for handling checksum data for all downloaded artifacts.
- These profiles are only effective if the Maven wrapper is used, which is configured to install the Maven
- checksum extension:
- - checksum-collect: collects checksums for all used artifacts.
- - checksum-enforce: enforces that all downloaded artifacts represent a known checksum
- -->
- <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>
- <module>byte-buddy-maven-plugin</module>
- <module>byte-buddy-gradle-plugin</module>
- </modules>
- <properties>
- <copyright.holder>Rafael Winterhalter</copyright.holder>
- <bytebuddy.extras>false</bytebuddy.extras>
- <bytebuddy.integration>false</bytebuddy.integration>
- <bytebuddy.experimental>false</bytebuddy.experimental>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.build.outputTimestamp>1734253541</project.build.outputTimestamp>
- <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>
- <nexus.url>https://s01.oss.sonatype.org</nexus.url>
- <version.asm>9.7.1</version.asm>
- <version.jna>5.12.1</version.jna>
- <version.junit>4.13.2</version.junit>
- <version.mockito>2.28.2</version.mockito>
- <version.plugin.clean>3.2.0</version.plugin.clean>
- <version.plugin.bundle>5.1.9</version.plugin.bundle>
- <version.plugin.compiler>3.10.1</version.plugin.compiler>
- <version.plugin.install>3.0.1</version.plugin.install>
- <version.plugin.deploy>3.0.0</version.plugin.deploy>
- <version.plugin.staging>1.7.0</version.plugin.staging>
- <version.plugin.versions>2.18.0</version.plugin.versions>
- <version.plugin.javadoc>3.4.0</version.plugin.javadoc>
- <version.plugin.source>3.2.1</version.plugin.source>
- <version.plugin.shade>3.5.2</version.plugin.shade>
- <version.plugin.gpg>3.0.1</version.plugin.gpg>
- <version.plugin.jxr>3.2.0</version.plugin.jxr>
- <version.plugin.buildhelper>3.3.0</version.plugin.buildhelper>
- <version.plugin.jar>3.2.2</version.plugin.jar>
- <version.plugin.site>3.12.0</version.plugin.site>
- <version.plugin.exec>3.1.0</version.plugin.exec>
- <version.plugin.plugin>3.6.4</version.plugin.plugin>
- <version.plugin.release>3.1.1</version.plugin.release>
- <version.plugin.resources>3.2.0</version.plugin.resources>
- <version.plugin.assembly>3.4.2</version.plugin.assembly>
- <version.plugin.dependency>3.3.0</version.plugin.dependency>
- <version.plugin.help>3.2.0</version.plugin.help>
- <version.plugin.surefire>2.22.2</version.plugin.surefire>
- <version.plugin.pitest>1.17.2</version.plugin.pitest>
- <version.plugin.animal-sniffer>1.21</version.plugin.animal-sniffer>
- <version.plugin.enforcer>3.1.0</version.plugin.enforcer>
- <version.plugin.jacoco>0.8.12</version.plugin.jacoco>
- <version.plugin.coveralls>4.3.0</version.plugin.coveralls>
- <version.plugin.checkstyle>3.1.2</version.plugin.checkstyle>
- <version.plugin.jitwatch>1.1</version.plugin.jitwatch>
- <version.plugin.spotbugs>4.8.3.1</version.plugin.spotbugs>
- <version.plugin.modulemaker>1.11</version.plugin.modulemaker>
- <version.plugin.license>3.0</version.plugin.license>
- <version.plugin.japicmp>0.15.7</version.plugin.japicmp>
- <version.plugin.antrun>3.1.0</version.plugin.antrun>
- <version.plugin.bytecode-update>1.0</version.plugin.bytecode-update>
- <version.checkstyle>9.3</version.checkstyle>
- <version.android.sdk>4.1.1.4</version.android.sdk>
- <version.utility.findbugs>3.0.1</version.utility.findbugs>
- <version.utility.jsr305>3.0.2</version.utility.jsr305>
- <version.jmh>1.35</version.jmh>
- <version.cglib>3.3.0</version.cglib>
- <version.javassist>3.29.0-GA</version.javassist>
- <spotbugs.skip>false</spotbugs.skip>
- <jacoco.skip>false</jacoco.skip>
- <japicmp.skip>false</japicmp.skip>
- <modulemaker.skip>false</modulemaker.skip>
- <javadoc.download.skip>false</javadoc.download.skip>
- <repository.url>git@github.com:raphw/byte-buddy.git</repository.url>
- <surefire.arguments />
- </properties>
- <licenses>
- <license>
- <name>Apache License, Version 2.0</name>
- <url>https://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>https://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:${repository.url}</connection>
- <developerConnection>scm:git:${repository.url}</developerConnection>
- <url>${repository.url}</url>
- <tag>byte-buddy-1.15.11</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>
- <!-- Allow for marking nullability of values.-->
- <dependency>
- <groupId>com.google.code.findbugs</groupId>
- <artifactId>jsr305</artifactId>
- <version>${version.utility.jsr305}</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,gradle-release,multi-release</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>
- <!-- Do not include JMH generated classes (both modern and legacy JMH).-->
- <exclude>net/bytebuddy/benchmark/generated/*</exclude>
- <exclude>net/bytebuddy/benchmark/jmh_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/main/java-6</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>
- <excludeFilterFile>${project.basedir}/../spotbugs-exclude.xml</excludeFilterFile>
- </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>
- <!-- 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>
- <copyright.holder>${copyright.holder}</copyright.holder>
- </properties>
- <includes>
- <include>**/main/java/**/*.java</include>
- <include>**/main/java-*/**/*.java</include>
- <include>**/main/c/**/*.c</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>
- <!-- Setup plugin for deployment to Maven Central. -->
- <plugin>
- <groupId>org.sonatype.plugins</groupId>
- <artifactId>nexus-staging-maven-plugin</artifactId>
- <version>${version.plugin.staging}</version>
- <extensions>true</extensions>
- <configuration>
- <serverId>central</serverId>
- <nexusUrl>${nexus.url}</nexusUrl>
- <autoReleaseAfterClose>true</autoReleaseAfterClose>
- </configuration>
- </plugin>
- <!-- Allow for automated version updates. -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>versions-maven-plugin</artifactId>
- <version>${version.plugin.versions}</version>
- <configuration>
- <rulesUri>file://${session.executionRootDirectory}/version-rules.xml</rulesUri>
- </configuration>
- </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>
- <configuration>
- <!-- Setting this property suppresses a warning on implicit setting the filter encoding. -->
- <encoding>${project.build.sourceEncoding}</encoding>
- <propertiesEncoding>${project.build.sourceEncoding}</propertiesEncoding>
- </configuration>
- </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>
- <argLine>${surefire.arguments}</argLine>
- <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>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-site-plugin</artifactId>
- <version>${version.plugin.site}</version>
- </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>
- <showWarnings>true</showWarnings>
- <showDeprecation>true</showDeprecation>
- <compilerArgument>-Xlint:all,-options,-processing</compilerArgument>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>${version.plugin.javadoc}</version>
- <configuration>
- <source>${sourcecode.main.version}</source>
- <failOnWarnings>true</failOnWarnings>
- <detectOfflineLinks>false</detectOfflineLinks>
- </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>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>${version.plugin.assembly}</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <version>${version.plugin.dependency}</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-help-plugin</artifactId>
- <version>${version.plugin.help}</version>
- </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>
- <snapshotRepository>
- <id>central</id>
- <url>${nexus.url}/content/repositories/snapshots</url>
- </snapshotRepository>
- <repository>
- <id>central</id>
- <url>${nexus.url}/service/local/staging/deploy/maven2</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.asm.deprecated>7.1</version.asm.deprecated>
- <version.plugin.clean>3.0.0</version.plugin.clean>
- <version.plugin.bundle>2.5.4</version.plugin.bundle>
- <version.plugin.compiler>3.6.2</version.plugin.compiler>
- <version.plugin.install>2.5.2</version.plugin.install>
- <version.plugin.deploy>2.8.2</version.plugin.deploy>
- <version.plugin.staging>1.6.8</version.plugin.staging>
- <version.plugin.versions>2.4</version.plugin.versions>
- <version.plugin.source>2.4</version.plugin.source>
- <version.plugin.gpg>1.6</version.plugin.gpg>
- <version.plugin.jxr>2.5</version.plugin.jxr>
- <version.plugin.buildhelper>1.12</version.plugin.buildhelper>
- <version.plugin.jar>3.0.2</version.plugin.jar>
- <version.plugin.site>3.7.1</version.plugin.site>
- <version.plugin.exec>1.5.0</version.plugin.exec>
- <version.plugin.plugin>3.5.2</version.plugin.plugin>
- <version.plugin.resources>3.0.2</version.plugin.resources>
- <version.plugin.assembly>2.6</version.plugin.assembly>
- <version.plugin.dependency>2.10</version.plugin.dependency>
- <version.plugin.help>2.2</version.plugin.help>
- <version.plugin.animal-sniffer>1.16</version.plugin.animal-sniffer>
- <version.plugin.enforcer>1.4.1</version.plugin.enforcer>
- <version.plugin.jacoco>0.7.9</version.plugin.jacoco>
- <version.plugin.checkstyle>2.15</version.plugin.checkstyle>
- <version.plugin.spotbugs>3.1.0-RC8</version.plugin.spotbugs>
- <version.plugin.license>3.0</version.plugin.license>
- <version.plugin.shade>3.1.1</version.plugin.shade>
- <version.plugin.surefire>2.22.1</version.plugin.surefire>
- <version.plugin.javadoc>2.10.4</version.plugin.javadoc>
- <version.plugin.antrun>1.8</version.plugin.antrun>
- <version.checkstyle>6.1.1</version.checkstyle>
- <version.jmh>1.16</version.jmh>
- <version.cglib>3.2.12</version.cglib>
- <version.javassist>3.22.0-GA</version.javassist>
- <modulemaker.skip>true</modulemaker.skip>
- <spotbugs.skip>true</spotbugs.skip>
- <javadoc.download.skip>true</javadoc.download.skip>
- </properties>
- <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>
- <build>
- <pluginManagement>
- <plugins>
- <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.deprecated}</version>
- </dependency>
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm-commons</artifactId>
- <version>${version.asm.deprecated}</version>
- </dependency>
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm-deprecated</artifactId>
- <version>${version.asm.deprecated}</version>
- </dependency>
- </dependencies>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- </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.clean>3.1.0</version.plugin.clean>
- <version.plugin.bundle>3.5.1</version.plugin.bundle>
- <version.plugin.compiler>3.8.1</version.plugin.compiler>
- <version.plugin.staging>1.6.8</version.plugin.staging>
- <version.plugin.versions>2.8.1</version.plugin.versions>
- <version.plugin.jxr>3.1.1</version.plugin.jxr>
- <version.plugin.buildhelper>3.2.0</version.plugin.buildhelper>
- <version.plugin.site>3.11.0</version.plugin.site>
- <version.plugin.exec>3.0.0</version.plugin.exec>
- <version.plugin.assembly>3.3.0</version.plugin.assembly>
- <version.plugin.spotbugs>3.1.0-RC8</version.plugin.spotbugs>
- <version.plugin.javadoc>3.2.0</version.plugin.javadoc>
- <version.plugin.animal-sniffer>1.17</version.plugin.animal-sniffer>
- <version.plugin.enforcer>1.4.1</version.plugin.enforcer>
- <version.plugin.jacoco>0.7.9</version.plugin.jacoco>
- <version.plugin.checkstyle>3.0.0</version.plugin.checkstyle>
- <version.plugin.japicmp>0.13.1</version.plugin.japicmp>
- <version.plugin.shade>3.2.4</version.plugin.shade>
- <version.plugin.antrun>3.0.0</version.plugin.antrun>
- <version.checkstyle>6.19</version.checkstyle>
- <version.cglib>3.2.12</version.cglib>
- <version.javassist>3.23.2-GA</version.javassist>
- <spotbugs.skip>true</spotbugs.skip>
- <javadoc.download.skip>true</javadoc.download.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.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 12 JVMs. -->
- <profile>
- <id>java12-compatibility</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>12</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 13 JVMs. -->
- <profile>
- <id>java13-compatibility</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>13</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 14 JVMs. -->
- <profile>
- <id>java14-compatibility</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>14</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 15 JVMs. -->
- <profile>
- <id>java15-compatibility</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>15</jdk>
- </activation>
- <properties>
- <sourcecode.main.version>8</sourcecode.main.version>
- <sourcecode.test.version>8</sourcecode.test.version>
- <bytecode.main.version>8</bytecode.main.version>
- <bytecode.test.version>8</bytecode.test.version>
- </properties>
- </profile>
- <!-- Runs the build with compatibility for Java 16 JVMs. -->
- <profile>
- <id>java16-compatibility</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>16</jdk>
- </activation>
- <properties>
- <sourcecode.main.version>8</sourcecode.main.version>
- <sourcecode.test.version>8</sourcecode.test.version>
- <bytecode.main.version>8</bytecode.main.version>
- <bytecode.test.version>8</bytecode.test.version>
- <jacoco.skip>true</jacoco.skip>
- </properties>
- </profile>
- <!-- Runs the build with compatibility for Java 17 JVMs. -->
- <profile>
- <id>java17-compatibility</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>17</jdk>
- </activation>
- <properties>
- <sourcecode.main.version>8</sourcecode.main.version>
- <sourcecode.test.version>8</sourcecode.test.version>
- <bytecode.main.version>8</bytecode.main.version>
- <bytecode.test.version>8</bytecode.test.version>
- <jacoco.skip>true</jacoco.skip>
- </properties>
- </profile>
- <!-- Runs the build with compatibility for Java 18 JVMs. -->
- <profile>
- <id>java18-compatibility</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>18</jdk>
- </activation>
- <properties>
- <sourcecode.main.version>8</sourcecode.main.version>
- <sourcecode.test.version>8</sourcecode.test.version>
- <bytecode.main.version>8</bytecode.main.version>
- <bytecode.test.version>8</bytecode.test.version>
- <jacoco.skip>true</jacoco.skip>
- </properties>
- </profile>
- <!-- Runs the build with compatibility for Java 19 JVMs. -->
- <profile>
- <id>java19-compatibility</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>19</jdk>
- </activation>
- <properties>
- <sourcecode.main.version>8</sourcecode.main.version>
- <sourcecode.test.version>8</sourcecode.test.version>
- <bytecode.main.version>8</bytecode.main.version>
- <bytecode.test.version>8</bytecode.test.version>
- <jacoco.skip>true</jacoco.skip>
- </properties>
- </profile>
- <!-- Runs the build with compatibility for Java 20 JVMs. -->
- <profile>
- <id>java20-compatibility</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>20</jdk>
- </activation>
- <properties>
- <sourcecode.main.version>8</sourcecode.main.version>
- <sourcecode.test.version>8</sourcecode.test.version>
- <bytecode.main.version>8</bytecode.main.version>
- <bytecode.test.version>8</bytecode.test.version>
- <jacoco.skip>true</jacoco.skip>
- </properties>
- </profile>
- <!-- Runs the build with compatibility for Java 21 JVMs. -->
- <profile>
- <id>java21-compatibility</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>21</jdk>
- </activation>
- <properties>
- <sourcecode.main.version>8</sourcecode.main.version>
- <sourcecode.test.version>8</sourcecode.test.version>
- <bytecode.main.version>8</bytecode.main.version>
- <bytecode.test.version>8</bytecode.test.version>
- <jacoco.skip>true</jacoco.skip>
- </properties>
- </profile>
- <!-- Runs the build with compatibility for Java 22 JVMs. -->
- <profile>
- <id>java22-compatibility</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>22</jdk>
- </activation>
- <properties>
- <sourcecode.main.version>8</sourcecode.main.version>
- <sourcecode.test.version>8</sourcecode.test.version>
- <bytecode.main.version>8</bytecode.main.version>
- <bytecode.test.version>8</bytecode.test.version>
- <jacoco.skip>true</jacoco.skip>
- </properties>
- </profile>
- <!-- Runs the build with compatibility for Java 23 JVMs. -->
- <profile>
- <id>java23-compatibility</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>23</jdk>
- </activation>
- <properties>
- <sourcecode.main.version>8</sourcecode.main.version>
- <sourcecode.test.version>8</sourcecode.test.version>
- <bytecode.main.version>8</bytecode.main.version>
- <bytecode.test.version>8</bytecode.test.version>
- <jacoco.skip>true</jacoco.skip>
- </properties>
- </profile>
- <!-- Runs the build with compatibility for Java 24 JVMs. -->
- <profile>
- <id>java24-compatibility</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>24</jdk>
- </activation>
- <properties>
- <sourcecode.main.version>8</sourcecode.main.version>
- <sourcecode.test.version>8</sourcecode.test.version>
- <bytecode.main.version>8</bytecode.main.version>
- <bytecode.test.version>8</bytecode.test.version>
- <jacoco.skip>true</jacoco.skip>
- </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>
- </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>
- </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>
- </properties>
- </profile>
- <!-- Builds using a byte code target for Java 13. -->
- <profile>
- <id>java13</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <properties>
- <bytecode.main.version>13</bytecode.main.version>
- <bytecode.test.version>13</bytecode.test.version>
- </properties>
- </profile>
- <!-- Builds using a byte code target for Java 14. -->
- <profile>
- <id>java14</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <properties>
- <bytecode.main.version>14</bytecode.main.version>
- <bytecode.test.version>14</bytecode.test.version>
- </properties>
- </profile>
- <!-- Builds using a byte code target for Java 15. -->
- <profile>
- <id>java15</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <properties>
- <bytecode.main.version>15</bytecode.main.version>
- <bytecode.test.version>15</bytecode.test.version>
- </properties>
- </profile>
- <!-- Builds using a byte code target for Java 16. -->
- <profile>
- <id>java16</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <properties>
- <bytecode.main.version>16</bytecode.main.version>
- <bytecode.test.version>16</bytecode.test.version>
- </properties>
- </profile>
- <!-- Builds using a byte code target for Java 17. -->
- <profile>
- <id>java17</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <properties>
- <bytecode.main.version>17</bytecode.main.version>
- <bytecode.test.version>17</bytecode.test.version>
- </properties>
- </profile>
- <!-- Builds using a byte code target for Java 18. -->
- <profile>
- <id>java18</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <properties>
- <bytecode.main.version>18</bytecode.main.version>
- <bytecode.test.version>18</bytecode.test.version>
- <spotbugs.skip>true</spotbugs.skip>
- </properties>
- </profile>
- <!-- Builds using a byte code target for Java 19. -->
- <profile>
- <id>java19</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <properties>
- <bytecode.main.version>19</bytecode.main.version>
- <bytecode.test.version>19</bytecode.test.version>
- <spotbugs.skip>true</spotbugs.skip>
- </properties>
- </profile>
- <!-- Builds using a byte code target for Java 20. -->
- <profile>
- <id>java20</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <properties>
- <bytecode.main.version>20</bytecode.main.version>
- <bytecode.test.version>20</bytecode.test.version>
- <spotbugs.skip>true</spotbugs.skip>
- </properties>
- </profile>
- <!-- Builds using a byte code target for Java 21. -->
- <profile>
- <id>java21</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <properties>
- <bytecode.main.version>21</bytecode.main.version>
- <bytecode.test.version>21</bytecode.test.version>
- <spotbugs.skip>true</spotbugs.skip>
- </properties>
- </profile>
- <!-- Builds using a byte code target for Java 22. -->
- <profile>
- <id>java22</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <properties>
- <bytecode.main.version>22</bytecode.main.version>
- <bytecode.test.version>22</bytecode.test.version>
- <spotbugs.skip>true</spotbugs.skip>
- </properties>
- </profile>
- <!-- Builds using a byte code target for Java 23. -->
- <profile>
- <id>java23</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <properties>
- <bytecode.main.version>23</bytecode.main.version>
- <bytecode.test.version>23</bytecode.test.version>
- <spotbugs.skip>true</spotbugs.skip>
- </properties>
- </profile>
- <!-- Builds using a byte code target for Java 24. -->
- <profile>
- <id>java24</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <properties>
- <bytecode.main.version>24</bytecode.main.version>
- <bytecode.test.version>24</bytecode.test.version>
- <spotbugs.skip>true</spotbugs.skip>
- </properties>
- </profile>
- <!-- Enables dynamic agent loading when running a JDK 22 or newer. -->
- <profile>
- <id>surefire-enable-dynamic-attach</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>[21,)</jdk>
- </activation>
- <properties>
- <surefire.arguments>-XX:+EnableDynamicAgentLoading</surefire.arguments>
- </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>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </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>
- <configuration>
- <gpgArguments>
- <arg>--pinentry-mode</arg>
- <arg>loopback</arg>
- </gpgArguments>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <!-- Basic checks that are not requiring too much runtime. -->
- <profile>
- <id>checks</id>
- <activation>
- <activeByDefault>false</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>
- <includeResources>false</includeResources>
- </configuration>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>com.puppycrawl.tools</groupId>
- <artifactId>checkstyle</artifactId>
- <version>${version.checkstyle}</version>
- </dependency>
- </dependencies>
- </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>
- <dependencies>
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm</artifactId>
- <version>${version.asm}</version>
- </dependency>
- </dependencies>
- </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. -->
- <profile>
- <id>integration</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <properties>
- <bytebuddy.integration>true</bytebuddy.integration>
- </properties>
- </profile>
- <!-- Integration profile that executes static code analysis. -->
- <profile>
- <id>analysis</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <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>
- <!-- Avoid violating semantic versioning. -->
- <plugin>
- <groupId>com.github.siom79.japicmp</groupId>
- <artifactId>japicmp-maven-plugin</artifactId>
- <version>${version.plugin.japicmp}</version>
- <executions>
- <execution>
- <phase>verify</phase>
- <goals>
- <goal>cmp</goal>
- </goals>
- <configuration>
- <skip>${japicmp.skip}</skip>
- <newVersion>
- <file>
- <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
- </file>
- </newVersion>
- <parameter>
- <accessModifier>public</accessModifier>
- <oldVersionPattern>\d+\.\d+\.\d+</oldVersionPattern>
- <ignoreMissingClasses>true</ignoreMissingClasses>
- <onlyBinaryIncompatible>true</onlyBinaryIncompatible>
- <breakBuildBasedOnSemanticVersioning>true</breakBuildBasedOnSemanticVersioning>
- </parameter>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <!-- Pseudo profiles for checksum collection (only available via Maven wrapper). -->
- <profile>
- <id>checksum-collect</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>${version.plugin.antrun}</version>
- <inherited>false</inherited>
- <executions>
- <execution>
- <id>checksum-collect</id>
- <phase>initialize</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <echo level="info" message="Checksum collection is enabled (only if using mvnw)." />
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <!-- Pseudo profiles for checksum collection (only available via Maven wrapper). -->
- <profile>
- <id>checksum-enforce</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>${version.plugin.antrun}</version>
- <inherited>false</inherited>
- <executions>
- <execution>
- <id>checksum-enforce</id>
- <phase>initialize</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <echo level="info" message="Checksum enforcement is enabled (only if using mvnw)." />
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>byte-buddy</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>byte-buddy-dep</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>byte-buddy-agent</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>byte-buddy-benchmark</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>byte-buddy-android</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>byte-buddy-maven-plugin</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>byte-buddy-gradle-plugin</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|