Skip to content

Commit

Permalink
workaround bug in maven
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir committed May 20, 2010
1 parent 9cc227a commit 3e3b735
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parent/pom.xml
Expand Up @@ -8,7 +8,7 @@
<groupId>org.jboss.weld</groupId>
<artifactId>weld-core-bom</artifactId>
<version>1.0.2-SNAPSHOT</version>
<relativePath>../bom</relativePath>
<relativePath>../bom/pom.xml</relativePath>
</parent>

<name>Weld Core Parent</name>
Expand Down
12 changes: 11 additions & 1 deletion pom.xml
@@ -1,4 +1,5 @@
<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">
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-core-build-aggregator</artifactId>
Expand All @@ -21,6 +22,15 @@
<!-- Minimal metadata -->
<description>The build aggregator for Weld, which takes care of calling the modules which make up Weld</description>

<!-- Workaround bug in Maven 2.? where it can't download a unique version snapshot on import scope -->
<dependencies>
<dependency>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-api-bom</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>

<!-- SCM and distribution management -->
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/weld/core/trunk</connection>
Expand Down

0 comments on commit 3e3b735

Please sign in to comment.