Author: steve.ebersole(a)jboss.com
Date: 2007-12-06 15:26:39 -0500 (Thu, 06 Dec 2007)
New Revision: 14215
Modified:
maven-poms/trunk/core-parent/pom.xml
Log:
added <dependencyManagement/> section and related changes
Modified: maven-poms/trunk/core-parent/pom.xml
===================================================================
--- maven-poms/trunk/core-parent/pom.xml 2007-12-06 00:14:49 UTC (rev 14214)
+++ maven-poms/trunk/core-parent/pom.xml 2007-12-06 20:26:39 UTC (rev 14215)
@@ -100,7 +100,7 @@
</mailingList>
</mailingLists>
- <build>
+ <build>
<plugins>
<plugin>
<!-- require at least JDK 1.5 to run the build -->
@@ -149,18 +149,29 @@
<manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
- </manifest>
+ </manifest>
+ <manifestEntries>
+
<Implementation-URL>${pom.url}</Implementation-URL>
+ </manifestEntries>
</archive>
</configuration>
</plugin>
- </plugins>
+ </plugins>
+ <extensions>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-webdav</artifactId>
+ <version>1.0-beta-2</version>
+ </extension>
+ </extensions>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.3</version>
<configuration>
<aggregate>${hibernate.core.reports.aggregate}</aggregate>
<links>
@@ -218,24 +229,47 @@
</plugins>
</reporting>
- <properties>
-
<hibernate.core.reports.aggregate>false</hibernate.core.reports.aggregate>
- </properties>
-
<dependencies>
- <!-- The basic slf4j API -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
- <version>1.4.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>1.4.2</version>
+ </dependency>
+ <dependency>
+ <groupId>antlr</groupId>
+ <artifactId>antlr</artifactId>
+ <version>2.7.6</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.1</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ </dependency>
+ <dependency>
+ <groupId>dom4j</groupId>
+ <artifactId>dom4j</artifactId>
+ <version>1.6.1</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
<distributionManagement>
<repository>
@@ -252,4 +286,9 @@
</snapshotRepository>
</distributionManagement>
+
+ <properties>
+
<hibernate.core.reports.aggregate>false</hibernate.core.reports.aggregate>
+ </properties>
+
</project>
Show replies by date