Maven Repository - POM file for JEE shrinkwrap-spi 1.0.0 1.0.0

Summary

ShrinkWrap SPI.

Generic Service Provider Contract of the ShrinkWrap Project.

Declaration

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</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.

Plugin

The following plugins are used in the shrinkwrap-spi-1.0.0.jar

  1. maven-checkstyle-plugin




Packages

The following packages are defined in the shrinkwrap-spi-1.0.0.jar

org.jboss.shrinkwrap.spi

POM File Source

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</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>
  
  <build>
    <plugins>
      <!-- Checkstyle -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-checkstyle-plugin</artifactId>
      </plugin>
    </plugins>
  </build>

</project>