Author: pete.muir(a)jboss.org
Date: 2009-11-24 09:36:56 -0500 (Tue, 24 Nov 2009)
New Revision: 5149
Modified:
wicket/trunk/pom.xml
Log:
fix build
Modified: wicket/trunk/pom.xml
===================================================================
--- wicket/trunk/pom.xml 2009-11-24 14:12:40 UTC (rev 5148)
+++ wicket/trunk/pom.xml 2009-11-24 14:36:56 UTC (rev 5149)
@@ -1,13 +1,13 @@
<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>
<groupId>org.jboss.weld</groupId>
- <artifactId>weld-extensions-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
+ <artifactId>weld-parent</artifactId>
+ <version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-wicket</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
<name>Weld Wicket support</name>
<description>Weld support for Apache Wicket</description>
@@ -26,12 +26,39 @@
<
url>https://jira.jboss.org/jira/browse/WELDX/component/12312752</ur...
</issueManagement>
+ <properties>
+ <weld.api.version>1.0</weld.api.version>
+ <weld.core.version>1.0.0</weld.core.version>
+ <testng.version>5.10</testng.version>
+ <wicket.version>1.4.1</wicket.version>
+ </properties>
+
+ <!-- Import the BOMs -->
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.weld</groupId>
+ <artifactId>weld-api-bom</artifactId>
+ <version>${weld.api.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.weld</groupId>
+ <artifactId>weld-core-bom</artifactId>
+ <version>${weld.core.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
<dependencies>
-
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
+ <version>${testng.version}</version>
<classifier>jdk15</classifier>
<exclusions>
<exclusion>
@@ -60,16 +87,17 @@
</dependency>
<dependency>
- <groupId>org.apache.wicket</groupId>
- <artifactId>wicket</artifactId>
- </dependency>
-
- <dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>org.apache.wicket</groupId>
+ <artifactId>wicket</artifactId>
+ <version>${wicket.version}</version>
+ </dependency>
+
</dependencies>
</project>