Author: dwoods
Date: Wed Jun 30 12:24:04 2010
New Revision: 959279
URL: http://svn.apache.org/viewvc?rev=959279&view=rev
Log:
add empty relativePath to remove maven warning as suggested by David Jencks. also upgraded
to latest apache-7.pom
Modified:
openjpa/trunk/pom.xml
Modified: openjpa/trunk/pom.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/pom.xml?rev=959279&r1=959278&r2=959279&view=diff
==============================================================================
--- openjpa/trunk/pom.xml (original)
+++ openjpa/trunk/pom.xml Wed Jun 30 12:24:04 2010
@@ -26,7 +26,8 @@
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
- <version>6</version>
+ <version>7</version>
+ <relativePath/>
</parent>
<groupId>org.apache.openjpa</groupId>
@@ -712,11 +713,21 @@
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
+ <dependency>
+ <groupId>net.sourceforge.findbugs</groupId>
+ <artifactId>annotations</artifactId>
+ <version>1.3.2</version>
+ </dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
+ <groupId>net.sourceforge.findbugs</groupId>
+ <artifactId>annotations</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
|