Maven Repository - POM file for JEE shrinkwrap-descriptors-spi 2.0.0-alpha-1 2.0.0-alpha-1

Summary

ShrinkWrap Descriptors SPI.

Service Provider Interface of the ShrinkWrap Descriptors Project.

Declaration

Here is the list of declaration for shrinkwrap-descriptors-spi. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.jboss.shrinkwrap.descriptors</groupId>
   <artifactId>shrinkwrap-descriptors-spi</artifactId>
   <version>2.0.0-alpha-1</version>
</dependency>

If you think this Maven repository POM file listing for shrinkwrap-descriptors-spi is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Packages

The following packages are defined in the shrinkwrap-descriptors-spi-2.0.0-alpha-1.jar

org.jboss.shrinkwrap.descriptor.api
org.jboss.shrinkwrap.descriptor.spi
org.jboss.shrinkwrap.descriptor.spi.node
org.jboss.shrinkwrap.descriptor.spi.node.dom




POM File Source

Here is the content of the POM file.

<?xml version="1.0"?>
<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.descriptors</groupId>
    <artifactId>shrinkwrap-descriptors-parent</artifactId>
    <version>2.0.0-alpha-1</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

  <!-- Model Version -->
  <modelVersion>4.0.0</modelVersion>

  <!-- Artifact Configuration -->
  <artifactId>shrinkwrap-descriptors-spi</artifactId>
  <name>ShrinkWrap Descriptors SPI</name>
  <description>Service Provider Interface of the ShrinkWrap Descriptors Project</description>

  <dependencies>

    <dependency>
      <groupId>org.jboss.shrinkwrap.descriptors</groupId>
      <artifactId>shrinkwrap-descriptors-api-base</artifactId>
      <version>${project.version}</version>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    
    <dependency>
      <groupId>org.jboss.shrinkwrap.descriptors</groupId>
      <artifactId>shrinkwrap-descriptors-test-util</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
    </dependency>

  </dependencies>

</project>