|
From: Jeff J. <jef...@us...> - 2006-05-13 14:15:11
|
jeffjensen 06/05/13 07:15:10
Modified: findbugs project.xml
Log:
Add schema ref to project.xml for validation use.
Revision Changes Path
1.35 +5 -2 maven-plugins/findbugs/project.xml
Index: project.xml
===================================================================
RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/project.xml,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- project.xml 3 May 2006 05:32:21 -0000 1.34
+++ project.xml 13 May 2006 14:15:10 -0000 1.35
@@ -1,7 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project>
- <extend>${basedir}/../plugin-project.xml</extend>
+<project xmlns="http://maven.apache.org/POM/3.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
+
+ <extend>${basedir}/../plugin-project.xml</extend>
<!--pomVersion is in parent -->
<artifactId>maven-findbugs-plugin</artifactId>
|