byteman-download
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-download</artifactId> <version>4.0.25</version> </dependency>
<!-- ~ JBoss, Home of Professional Open Source. ~ Copyright 2011, Red Hat and individual contributors ~ as indicated by the @author tags. See the copyright.txt file in the ~ distribution for a full listing of individual contributors. ~ ~ This is free software; you can redistribute it and/or modify it ~ under the terms of the GNU Lesser General Public License as ~ published by the Free Software Foundation; either version 2.1 of ~ the License, or (at your option) any later version. ~ ~ This software is distributed in the hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the implied warranty of ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ~ Lesser General Public License for more details. ~ ~ You should have received a copy of the GNU Lesser General Public ~ License along with this software; if not, write to the Free ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org. --> <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"> <modelVersion>4.0.0</modelVersion> <artifactId>byteman-download</artifactId> <packaging>pom</packaging> <parent> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-root</artifactId> <version>4.0.25</version> </parent> <description> The Byteman download includes the byteman agent, submit and install jars. the contributed tool jars, the binary scripts used to drive byteman, the Byteman user guide plus the sample jar and scripts which provide some simple examples of how to use Byteman. </description> <name>byteman-download</name> <url>http://www.jboss.org/byteman</url> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>create-bin-zip</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <attach>true</attach> <descriptors> <descriptor>assembly-bin.xml</descriptor> </descriptors> </configuration> </execution> <execution> <id>create-full-zip</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <attach>true</attach> <descriptors> <descriptor>assembly-full.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-submit</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-install</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-sample</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-bmunit</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-bmunit5</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-dtest</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-asciidoc</artifactId> <version>${project.version}</version> </dependency> <!-- javadoc jars --> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman</artifactId> <classifier>javadoc</classifier> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-submit</artifactId> <classifier>javadoc</classifier> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-install</artifactId> <classifier>javadoc</classifier> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-sample</artifactId> <classifier>javadoc</classifier> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-bmunit</artifactId> <classifier>javadoc</classifier> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-bmunit5</artifactId> <classifier>javadoc</classifier> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-dtest</artifactId> <classifier>javadoc</classifier> <version>${project.version}</version> </dependency> <!-- source jars --> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman</artifactId> <classifier>sources</classifier> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-submit</artifactId> <classifier>sources</classifier> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-install</artifactId> <classifier>sources</classifier> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-sample</artifactId> <classifier>sources</classifier> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-bmunit</artifactId> <classifier>sources</classifier> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-bmunit5</artifactId> <classifier>sources</classifier> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-dtest</artifactId> <classifier>sources</classifier> <version>${project.version}</version> </dependency> </dependencies> </project>