[jboss-svn-commits] JBL Code SVN: r11557 - in labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src: test/resources/org/jboss/test/maven/plugins/deploy and 1 other directory.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Tue May 1 11:15:40 EDT 2007
Author: pgier
Date: 2007-05-01 11:15:40 -0400 (Tue, 01 May 2007)
New Revision: 11557
Modified:
labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/main/resources/org/jboss/maven/plugins/deploy/component-info-template.txt
labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/main/resources/org/jboss/maven/plugins/deploy/component-info.xsd
labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/test/resources/org/jboss/test/maven/plugins/deploy/component-info-test-bad.xml_test
labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/test/resources/org/jboss/test/maven/plugins/deploy/component-info-test-good.xml_test
Log:
Removing namespace information so that component-info.xml will be compatible with current ant based builds.
Modified: labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/main/resources/org/jboss/maven/plugins/deploy/component-info-template.txt
===================================================================
--- labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/main/resources/org/jboss/maven/plugins/deploy/component-info-template.txt 2007-05-01 14:18:26 UTC (rev 11556)
+++ labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/main/resources/org/jboss/maven/plugins/deploy/component-info-template.txt 2007-05-01 15:15:40 UTC (rev 11557)
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project>
+<project name="${project.name}">
<component id="${component.id}"
licenseType="${project.license}"
version="${project.version}"
Modified: labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/main/resources/org/jboss/maven/plugins/deploy/component-info.xsd
===================================================================
--- labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/main/resources/org/jboss/maven/plugins/deploy/component-info.xsd 2007-05-01 14:18:26 UTC (rev 11556)
+++ labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/main/resources/org/jboss/maven/plugins/deploy/component-info.xsd 2007-05-01 15:15:40 UTC (rev 11557)
@@ -1,7 +1,5 @@
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://www.jboss.org/component-info/1.0"
- xmlns="http://www.jboss.org/component-info/1.0"
elementFormDefault="qualified">
<xs:element name="project">
Modified: labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/test/resources/org/jboss/test/maven/plugins/deploy/component-info-test-bad.xml_test
===================================================================
--- labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/test/resources/org/jboss/test/maven/plugins/deploy/component-info-test-bad.xml_test 2007-05-01 14:18:26 UTC (rev 11556)
+++ labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/test/resources/org/jboss/test/maven/plugins/deploy/component-info-test-bad.xml_test 2007-05-01 15:15:40 UTC (rev 11557)
@@ -1,8 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://www.jboss.org/component-info/1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.jboss.org/component-info/1.0 component-info.xsd"
- name="jboss/microcontainer-component-info">
+<project name="jboss/microcontainer-component-info">
<component id="test" licenseType="stuff" version="1.0">
<artifact id="test"/>
<artifact id="test2"/>
Modified: labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/test/resources/org/jboss/test/maven/plugins/deploy/component-info-test-good.xml_test
===================================================================
--- labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/test/resources/org/jboss/test/maven/plugins/deploy/component-info-test-good.xml_test 2007-05-01 14:18:26 UTC (rev 11556)
+++ labs/jbossbuild/maven-plugins/trunk/jboss-deploy-maven-plugin/src/test/resources/org/jboss/test/maven/plugins/deploy/component-info-test-good.xml_test 2007-05-01 15:15:40 UTC (rev 11557)
@@ -1,8 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://www.jboss.org/component-info/1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.jboss.org/component-info/1.0 component-info.xsd"
- name="jboss/microcontainer-component-info">
+<project name="jboss/microcontainer-component-info">
<component id="jboss/microcontainer" licenseType="lgpl"
version="${jbossbuild.repository.version}">
More information about the jboss-svn-commits
mailing list