Skip to content

Commit

Permalink
[SHRINKWRAP-357] Add a BOM POM
Browse files Browse the repository at this point in the history
  • Loading branch information
ALRubinger committed Nov 17, 2011
1 parent a80a1b2 commit 011f87b
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
56 changes: 56 additions & 0 deletions bom/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-bom</artifactId>
<name>ShrinkWrap Bill of Materials</name>
<description>Centralized dependencyManagement for the ShrinkWrap Project</description>


<!-- Properties -->
<properties>

<!-- Versioning -->

</properties>

<!-- Dependency Management -->
<dependencyManagement>

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

</dependencyManagement>

</project>
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@
<!-- Aggregate Modules -->
<modules>
<module>api</module>
<module>bom</module>
<module>build-resources</module>
<module>dist</module>
<module>impl-base</module>
Expand Down

0 comments on commit 011f87b

Please sign in to comment.