ShrinkWrap API.
Client View of the ShrinkWrap Project.
Here is the list of declaration for shrinkwrap-api. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jboss.shrinkwrap</groupId> <artifactId>shrinkwrap-api</artifactId> <version>1.0.0-cr-2</version> </dependency>
If you think this Maven repository POM file listing for shrinkwrap-api is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following plugins are used in the shrinkwrap-api-1.0.0-cr-2.jar
The following packages are defined in the shrinkwrap-api-1.0.0-cr-2.jar
org.jboss.shrinkwrap.api org.jboss.shrinkwrap.api.asset org.jboss.shrinkwrap.api.classloader org.jboss.shrinkwrap.api.container org.jboss.shrinkwrap.api.exporter org.jboss.shrinkwrap.api.formatter org.jboss.shrinkwrap.api.importer org.jboss.shrinkwrap.api.serialization org.jboss.shrinkwrap.api.spec
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- vi:ts=2:sw=2:expandtab: --> <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 --> <parent> <groupId>org.jboss.shrinkwrap</groupId> <artifactId>shrinkwrap-parent</artifactId> <version>1.0.0-cr-2</version> <relativePath>../pom.xml</relativePath> </parent> <!-- Model Version --> <modelVersion>4.0.0</modelVersion> <!-- Artifact Configuration --> <artifactId>shrinkwrap-api</artifactId> <name>ShrinkWrap API</name> <description>Client View of the ShrinkWrap Project</description> <!-- Properties --> <properties> <!-- Versioning --> </properties> <!-- Dependencies --> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> </dependencies> <!-- Build Configuration --> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.2</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <!-- Surefire --> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <!-- Run in Java5; be build with a JDK6 compiler so ensure we don't use any JDK6 libs--> <jvm>${env.JAVA5_HOME}/bin/java</jvm> </configuration> </plugin> <!-- Checkstyle --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> </plugins> </build> <reporting> <plugins> <!-- JavaDoc / APIViz --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.6.1</version> <configuration> <doclet>org.jboss.apiviz.APIviz</doclet> <docletArtifact> <groupId>org.jboss.apiviz</groupId> <artifactId>apiviz</artifactId> <version>1.3.0.GA</version> </docletArtifact> <useStandardDocletOptions>true</useStandardDocletOptions> <charset>UTF-8</charset> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <breakiterator>true</breakiterator> <version>true</version> <author>true</author> <keywords>true</keywords> <additionalparam> -sourceclasspath ${project.build.outputDirectory} </additionalparam> <stylesheetfile>${basedir}/src/javadoc/stylesheet.css</stylesheetfile> <javadocDirectory>${basedir}/src/javadoc</javadocDirectory> <docfilessubdirs>true</docfilessubdirs> </configuration> </plugin> </plugins> </reporting> </project>