Version 5
    Traditional Downloads

     

    The standard distribution contains bundled JavaDoc, sources, and binaries, and is available in ZIP, TAR.GZ, and TAR.BZ formats.

     

    http://www.jboss.org/shrinkwrap/downloads.html

     

    Maven2 POM Configuration

     

    Binaries, sources, and JavaDocs JBoss Maven Repository:

     

    https://repository.jboss.org/nexus

     

    We recommend this is configured in ${userHomeDir}/.m2/settings.xml, as opposed to your project POMs.  This way the repository location will not be baked into all future releases of your artifacts.

     

    <settings> 
    ...
      <profiles>
    ...
        <profile>
          <id>jboss.repository</id>
            <repositories>
              <repository>
                <id>repository.jboss.org</id>
                <url>http://repository.jboss.org/maven2</url>
                <snapshots>
                  <enabled>false</enabled>
                </snapshots>
              </repository>
            </repositories>
        </profile> 
    ... 
      </profiles>
    ...
    </settings>

     

    ShrinkWrap may then be declared as a dependency:

    <project>
     ...
       <dependencies>
     ...
         <dependency>
           <groupId>org.jboss.shrinkwrap</groupId>
           <artifactId>shrinkwrap-api</artifactId>
         </dependency>
         <dependency>
           <groupId>org.jboss.shrinkwrap</groupId>
           <artifactId>shrinkwrap-impl-base</artifactId>
           <scope>test</scope> <!-- Don't rely upon internals for compilation -->
         </dependency>
     ...
       </dependencies>
     ...
     </project>