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-alpha-6</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 table lists the most popular artifacts which are depending on shrinkwrap-api-1.0.0-alpha-6. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JPA Hibernate | hibernate-entitymanager 3.6.8.Final Hibernate Entity Manager | 6 |
JPA Hibernate | hibernate-entitymanager 3.6.10.Final Hibernate Entity Manager | 32 |
JPA Hibernate | hibernate-entitymanager 3.6.7.Final Hibernate Entity Manager | 23 |
The following plugins are used in the shrinkwrap-api-1.0.0-alpha-6.jar
The following packages are defined in the shrinkwrap-api-1.0.0-alpha-6.jar
org.jboss.shrinkwrap.api org.jboss.shrinkwrap.api.container org.jboss.shrinkwrap.api.exporter org.jboss.shrinkwrap.api.formatter org.jboss.shrinkwrap.api.importer 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-build</artifactId> <version>1.0.0-alpha-6</version> <relativePath>../build/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> </dependencies> <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>