Skip to content

Commit

Permalink
[SHRINKWRAP-360] Add a "depchain" module
Browse files Browse the repository at this point in the history
  • Loading branch information
ALRubinger committed Nov 17, 2011
1 parent 011f87b commit 0a97090
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
56 changes: 56 additions & 0 deletions depchain/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<?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-cr-2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

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

<!-- Artifact Configuration -->
<artifactId>shrinkwrap-depchain</artifactId>
<name>ShrinkWrap Dependency Chain</name>
<description>Single-POM Definition to export the ShrinkWrap artifacts in proper scope</description>
<packaging>pom</packaging>


<!-- Properties -->
<properties>

<!-- Versioning -->

</properties>

<!-- Dependencies -->
<dependencies>

<dependency>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-spi</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-impl-base</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>

</dependencies>

</project>

1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@
<module>api</module>
<module>bom</module>
<module>build-resources</module>
<module>depchain</module>
<module>dist</module>
<module>impl-base</module>
<module>spi</module>
Expand Down

1 comment on commit 0a97090

@kpiwko
Copy link

@kpiwko kpiwko commented on 0a97090 Nov 21, 2011

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is the right approach.

Please sign in to comment.