byte-buddy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>0.2</version>
</dependency><?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>0.2</version>
<relativePath>../../pom.xml</relativePath>
</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>
<profiles>
<profile>
<id>extras</id>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>true</createDependencyReducedPom>
<dependencyReducedPomLocation>C:\Users\rafwin\workspace\byte-buddy-parent\target\checkout\byte-buddy\target/dependency-reduced-pom.xml</dependencyReducedPomLocation>
<createSourcesJar>true</createSourcesJar>
<shadeSourcesContent>true</shadeSourcesContent>
<relocations>
<relocation>
<pattern>org.objectweb.asm</pattern>
<shadedPattern>net.bytebuddy.jar.asm</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.goldin</groupId>
<artifactId>copy-maven-plugin</artifactId>
<version>0.2.5</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<resources>
<resource>
<targetPath>C:\Users\rafwin\workspace\byte-buddy-parent\target\checkout\byte-buddy\target</targetPath>
<file>C:\Users\rafwin\workspace\byte-buddy-parent\target\checkout\byte-buddy/../byte-buddy-dep/target/byte-buddy-dep-0.2-javadoc.jar</file>
<destFileName>byte-buddy-0.2-javadoc.jar</destFileName>
</resource>
<resource>
<targetPath>C:\Users\rafwin\workspace\byte-buddy-parent\target\checkout\byte-buddy\target</targetPath>
<file>C:\Users\rafwin\workspace\byte-buddy-parent\target\checkout\byte-buddy/../byte-buddy-dep/target/byte-buddy-dep-0.2-javadoc.jar.asc</file>
<destFileName>byte-buddy-0.2-javadoc.jar.asc</destFileName>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.1</version>
<executions>
<execution>
<id>default-install</id>
<phase>install</phase>
<goals>
<goal>install</goal>
</goals>
</execution>
<execution>
<id>install-javadoc</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>0.2</version>
<packaging>jar</packaging>
<classifier>javadoc</classifier>
<file>C:\Users\rafwin\workspace\byte-buddy-parent\target\checkout\byte-buddy\target/byte-buddy-0.2-javadoc.jar</file>
</configuration>
</execution>
<execution>
<id>install-javadoc-asc</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>0.2</version>
<packaging>jar.asc</packaging>
<classifier>javadoc</classifier>
<file>C:\Users\rafwin\workspace\byte-buddy-parent\target\checkout\byte-buddy\target/byte-buddy-0.2-javadoc.jar.asc</file>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<properties>
<version.plugin.copy>0.2.5</version.plugin.copy>
<shade.source>org.objectweb.asm</shade.source>
<shade.target>net.bytebuddy.jar.asm</shade.target>
</properties>
</project>