Maven Repository - POM file for Development shrinkwrap-descriptors-impl-base 2.0.0-alpha-1 2.0.0-alpha-1

Summary

ShrinkWrap Descriptors Implementation.

Implementation of the ShrinkWrap Descriptors Project.

Declaration

Here is the list of declaration for shrinkwrap-descriptors-impl-base. 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-impl-base</artifactId>
   <version>2.0.0-alpha-1</version>
</dependency>

If you think this Maven repository POM file listing for shrinkwrap-descriptors-impl-base 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-descriptors-impl-base-2.0.0-alpha-1.jar

  1. maven-jar-plugin
  2. maven-surefire-plugin




Packages

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

org.jboss.shrinkwrap.descriptor.impl.base
org.jboss.shrinkwrap.descriptor.impl.base.spec.se.manifest

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-impl-base</artifactId>
  <name>ShrinkWrap Descriptors Implementation</name>
  <description>Implementation of the ShrinkWrap Descriptors Project</description>

  <dependencies>

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

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>

    <!-- TODO: Remove this when all POC stuff is gone from impl-base -->
    <dependency>
      <groupId>org.jboss.spec</groupId>
      <artifactId>jboss-javaee-6.0</artifactId>
      <type>pom</type>
      <version>1.0.0.Beta7</version>
    </dependency>

  </dependencies>

  <build>
    <plugins>
      <!-- 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>
      
      <!-- Export test JAR for use in other modules -->
      <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>
    </plugins>
  </build>
</project>