ShrinkWrap SPI.
Generic Service Provider Contract of the ShrinkWrap Project.
Here is the list of declaration for shrinkwrap-spi. 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-spi</artifactId> <version>1.0.0-beta-3</version> </dependency>
If you think this Maven repository POM file listing for shrinkwrap-spi is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following packages are defined in the shrinkwrap-spi-1.0.0-beta-3.jar
org.jboss.shrinkwrap.spi
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-beta-3</version> <relativePath>../pom.xml</relativePath> </parent> <!-- Model Version --> <modelVersion>4.0.0</modelVersion> <!-- Artifact Configuration --> <artifactId>shrinkwrap-spi</artifactId> <name>ShrinkWrap SPI</name> <description>Generic Service Provider Contract of the ShrinkWrap Project</description> <!-- Properties --> <properties> </properties> <!-- Dependencies --> <dependencies> <dependency> <groupId>org.jboss.shrinkwrap</groupId> <artifactId>shrinkwrap-api</artifactId> <version>${project.version}</version> </dependency> </dependencies> </project>