[seam-commits] Seam SVN: r14856 - in branches/enterprise/WFK-2_0: build/embedded and 4 other directories.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Thu Jun 7 06:34:27 EDT 2012
Author: manaRH
Date: 2012-06-07 06:34:26 -0400 (Thu, 07 Jun 2012)
New Revision: 14856
Removed:
branches/enterprise/WFK-2_0/build/embedded/build.xml
branches/enterprise/WFK-2_0/build/embedded/hibernate-all.pom.xml
branches/enterprise/WFK-2_0/build/embedded/jboss-embedded-all.pom.xml
branches/enterprise/WFK-2_0/build/embedded/jboss-embedded.pom.xml
branches/enterprise/WFK-2_0/build/embedded/shaded/hibernate-all.pom.xml
branches/enterprise/WFK-2_0/build/embedded/shaded/jboss-embedded-all.pom.xml
branches/enterprise/WFK-2_0/build/embedded/shaded/jboss-embedded.pom.xml
branches/enterprise/WFK-2_0/build/embedded/shaded/thirdparty-all.pom.xml
branches/enterprise/WFK-2_0/build/embedded/thirdparty-all.pom.xml
Modified:
branches/enterprise/WFK-2_0/jboss-seam-pdf/src/main/resources/org/jboss/seam/pdf/pdf-2.3.xsd
branches/enterprise/WFK-2_0/jboss-seam-remoting/pom.xml
branches/enterprise/WFK-2_0/jboss-seam-resteasy/src/main/resources/org/jboss/seam/resteasy/resteasy-2.3.xsd
branches/enterprise/WFK-2_0/pom.xml
Log:
removed forgotten old support for deploying jboss-embedded artifacts
Deleted: branches/enterprise/WFK-2_0/build/embedded/build.xml
===================================================================
--- branches/enterprise/WFK-2_0/build/embedded/build.xml 2012-06-07 10:34:05 UTC (rev 14855)
+++ branches/enterprise/WFK-2_0/build/embedded/build.xml 2012-06-07 10:34:26 UTC (rev 14856)
@@ -1,99 +0,0 @@
-<?xml version="1.0"?>
-<project name="Embedded Build Utilities" basedir="." xmlns:artifact="urn:maven-artifact-ant">
-
- <property file="../build.properties" />
-
- <property name="seam.dir" value="${basedir}/../../" />
- <property name="build.dir" value="${seam.dir}/build" />
- <property name="tmp.dir" value="${seam.dir}/classes" />
- <property name="lib.dir" value="${seam.dir}/lib" />
- <import file="../utilities.build.xml" />
-
- <property name="maven.settings.xml" value="../settings.xml" />
-
- <path id="maven-ant-tasks.classpath" path="${build.dir}/lib/maven-ant-tasks.jar" />
- <typedef resource="org/apache/maven/artifact/ant/antlib.xml" uri="urn:maven-artifact-ant" classpathref="maven-ant-tasks.classpath" />
-
- <property name="shaded.embedded.jars.dir" value="${tmp.dir}/embedded"/>
- <property name="embedded.jars.dir" value="${embedded.dir}/output/lib/embedded-jboss/lib" />
- <property name="embedded.dist.zip" value="${embedded.dir}/embedded-jboss-${embedded.version}.zip" />
-
- <artifact:remoteRepository id="snapshots.jboss.org" url="dav:https://snapshots.jboss.org/maven2" />
- <artifact:remoteRepository id="offline.repository.jboss.org" url="file:///${offline.repository.jboss.org}" />
-
- <target name="initdav">
- <artifact:install-provider artifactId="wagon-webdav" version="1.0-beta-2"/>
- </target>
-
- <target name="shadeEmbedded">
- <delete dir="${shaded.embedded.jars.dir}" failonerror="off"/>
- <mkdir dir="${shaded.embedded.jars.dir}" />
- <jar destfile="${shaded.embedded.jars.dir}/hibernate-all.jar" >
- <zipfileset src="${embedded.jars.dir}/hibernate-all.jar" />
- <zipfileset src="${lib.dir}/hibernate-search.jar" />
- </jar>
- <jar destfile="${shaded.embedded.jars.dir}/thirdparty-all.jar">
- <zipfileset src="${embedded.jars.dir}/thirdparty-all.jar" />
- <zipfileset src="${lib.dir}/lucene-core.jar"/>
- <zipfileset src="${lib.dir}/slf4j-log4j12.jar"/>
- <zipfileset src="${lib.dir}/slf4j-api.jar"/>
- </jar>
- <copy file="${embedded.jars.dir}/jboss-embedded.jar" todir="${shaded.embedded.jars.dir}" />
- <copy file="${embedded.jars.dir}/jboss-embedded-all.jar" todir="${shaded.embedded.jars.dir}" />
- </target>
-
- <target name="installEmbedded" depends="shadeEmbedded">
- <install pom="${embedded.poms.dir}/shaded/jboss-embedded.pom.xml" jar="${shaded.embedded.jars.dir}/jboss-embedded.jar" />
- <install pom="${embedded.poms.dir}/shaded/jboss-embedded-all.pom.xml" jar="${shaded.embedded.jars.dir}/jboss-embedded-all.jar" />
- <install pom="${embedded.poms.dir}/shaded/hibernate-all.pom.xml" jar="${shaded.embedded.jars.dir}/hibernate-all.jar" />
- <install pom="${embedded.poms.dir}/shaded/thirdparty-all.pom.xml" jar="${shaded.embedded.jars.dir}/thirdparty-all.jar" />
- <install pom="${embedded.poms.dir}/jboss-embedded.pom.xml" jar="${embedded.jars.dir}/jboss-embedded.jar" />
- <install pom="${embedded.poms.dir}/jboss-embedded-all.pom.xml" jar="${embedded.jars.dir}/jboss-embedded-all.jar" />
- <install pom="${embedded.poms.dir}/hibernate-all.pom.xml" jar="${embedded.jars.dir}/hibernate-all.jar" />
- <install pom="${embedded.poms.dir}/thirdparty-all.pom.xml" jar="${embedded.jars.dir}/thirdparty-all.jar" />
- </target>
-
- <target name="deployEmbeddedSnapshot" depends="initdav, shadeEmbedded">
- <input addproperty="username"
- message="JBoss.org username:" />
- <input addproperty="password"
- message="JBoss.org password:" />
- <deploy pom="${embedded.poms.dir}/shaded/jboss-embedded.pom.xml" jar="${shaded.embedded.jars.dir}/jboss-embedded.jar" repositoryId="snapshots.jboss.org" unique="false">
- <authentication username="${username}" password="${password}" />
- </deploy>
- <deploy pom="${embedded.poms.dir}/shaded/jboss-embedded-all.pom.xml" jar="${shaded.embedded.jars.dir}/jboss-embedded-all.jar" repositoryId="snapshots.jboss.org" unique="false">
- <authentication username="${username}" password="${password}" />
- </deploy>
- <deploy pom="${embedded.poms.dir}/shaded/hibernate-all.pom.xml" jar="${shaded.embedded.jars.dir}/hibernate-all.jar" repositoryId="snapshots.jboss.org" unique="false">
- <authentication username="${username}" password="${password}" />
- </deploy>
- <deploy pom="${embedded.poms.dir}/shaded/thirdparty-all.pom.xml" jar="${shaded.embedded.jars.dir}/thirdparty-all.jar" repositoryId="snapshots.jboss.org" unique="false">
- <authentication username="${username}" password="${password}" />
- </deploy>
- <deployWithAttachment pom="${embedded.poms.dir}/jboss-embedded.pom.xml" jar="${embedded.jars.dir}/jboss-embedded.jar" repositoryId="snapshots.jboss.org" attachment="${embedded.dir}/embedded-jboss-${embedded.version}.zip" unique="false">
- <authentication username="${username}" password="${password}" />
- </deployWithAttachment>
- <deploy pom="${embedded.poms.dir}/jboss-embedded-all.pom.xml" jar="${embedded.jars.dir}/jboss-embedded-all.jar" repositoryId="snapshots.jboss.org" unique="false">
- <authentication username="${username}" password="${password}" />
- </deploy>
- <deploy pom="${embedded.poms.dir}/hibernate-all.pom.xml" jar="${embedded.jars.dir}/hibernate-all.jar" repositoryId="snapshots.jboss.org" unique="false">
- <authentication username="${username}" password="${password}" />
- </deploy>
- <deploy pom="${embedded.poms.dir}/thirdparty-all.pom.xml" jar="${embedded.jars.dir}/thirdparty-all.jar" repositoryId="snapshots.jboss.org" unique="false">
- <authentication username="${username}" password="${password}" />
- </deploy>
- </target>
-
- <target name="deployEmbeddedRelease" depends="initdav, shadeEmbedded">
- <echo>Using Jars from ${embedded.jars.dir}</echo>
- <deploy pom="${embedded.poms.dir}/shaded/jboss-embedded.pom.xml" jar="${shaded.embedded.jars.dir}/jboss-embedded.jar" repositoryId="offline.repository.jboss.org" unique="false"/>
- <deploy pom="${embedded.poms.dir}/shaded/jboss-embedded-all.pom.xml" jar="${shaded.embedded.jars.dir}/jboss-embedded-all.jar" repositoryId="offline.repository.jboss.org" unique="false"/>
- <deploy pom="${embedded.poms.dir}/shaded/hibernate-all.pom.xml" jar="${shaded.embedded.jars.dir}/hibernate-all.jar" repositoryId="offline.repository.jboss.org" unique="false"/>
- <deploy pom="${embedded.poms.dir}/shaded/thirdparty-all.pom.xml" jar="${shaded.embedded.jars.dir}/thirdparty-all.jar" repositoryId="offline.repository.jboss.org" unique="false"/>
- <deployWithAttachment pom="${embedded.poms.dir}/jboss-embedded.pom.xml" jar="${embedded.jars.dir}/jboss-embedded.jar" repositoryId="offline.repository.jboss.org" attachment="${embedded.dist.zip}" unique="false"/>
- <deploy pom="${embedded.poms.dir}/jboss-embedded-all.pom.xml" jar="${embedded.jars.dir}/jboss-embedded-all.jar" repositoryId="offline.repository.jboss.org" unique="false"/>
- <deploy pom="${embedded.poms.dir}/hibernate-all.pom.xml" jar="${embedded.jars.dir}/hibernate-all.jar" repositoryId="offline.repository.jboss.org" unique="false"/>
- <deploy pom="${embedded.poms.dir}/thirdparty-all.pom.xml" jar="${embedded.jars.dir}/thirdparty-all.jar" repositoryId="offline.repository.jboss.org" unique="false"/>
- </target>
-
-</project>
\ No newline at end of file
Deleted: branches/enterprise/WFK-2_0/build/embedded/hibernate-all.pom.xml
===================================================================
--- branches/enterprise/WFK-2_0/build/embedded/hibernate-all.pom.xml 2012-06-07 10:34:05 UTC (rev 14855)
+++ branches/enterprise/WFK-2_0/build/embedded/hibernate-all.pom.xml 2012-06-07 10:34:26 UTC (rev 14856)
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.embedded</groupId>
- <artifactId>hibernate-all</artifactId>
- <version>beta3.SP10</version>
- <description>The hibernate-all.jar distributed with JBoss Embedded. This contains Hibernate
- for running in an EJB3 enviroment (Hibernate, Hibernate Annotations, Hibernate EntityManager, Hibernate Validator, Hibernate Commons Annotations)</description>
-</project>
Deleted: branches/enterprise/WFK-2_0/build/embedded/jboss-embedded-all.pom.xml
===================================================================
--- branches/enterprise/WFK-2_0/build/embedded/jboss-embedded-all.pom.xml 2012-06-07 10:34:05 UTC (rev 14855)
+++ branches/enterprise/WFK-2_0/build/embedded/jboss-embedded-all.pom.xml 2012-06-07 10:34:26 UTC (rev 14856)
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.embedded</groupId>
- <artifactId>jboss-embedded-all</artifactId>
- <version>beta3.SP10</version>
- <description>The jboss-embedded-all.jar distributed with JBoss Embedded. This contains all depdencies
- from JBoss AS that originate in JBoss. This jar has has the org.jboss.embedded packages split out.</description>
-
- <dependencies>
- <dependency>
- <groupId>org.jboss.embedded</groupId>
- <artifactId>jboss-embedded</artifactId>
- <version>beta3.SP10</version>
- <exclusions>
- <exclusion></exclusion>
- </exclusions>
- </dependency>
- </dependencies>
-</project>
Deleted: branches/enterprise/WFK-2_0/build/embedded/jboss-embedded.pom.xml
===================================================================
--- branches/enterprise/WFK-2_0/build/embedded/jboss-embedded.pom.xml 2012-06-07 10:34:05 UTC (rev 14855)
+++ branches/enterprise/WFK-2_0/build/embedded/jboss-embedded.pom.xml 2012-06-07 10:34:26 UTC (rev 14856)
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.embedded</groupId>
- <artifactId>jboss-embedded</artifactId>
- <version>beta3.SP10</version>
- <description>This jar has the org.jboss.embedded packages split out from jboss-embedded-all.</description>
-
- <dependencies>
- <dependency>
- <groupId>org.jboss.microcontainer</groupId>
- <artifactId>jboss-deployers-client-spi</artifactId>
- <version>2.0.0.Beta6</version>
- <exclusions>
- <exclusion>
- <groupId>org.jboss.microcontainer</groupId>
- <artifactId>jboss-managed</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.jboss</groupId>
- <artifactId>jboss-common-core</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
-</project>
Deleted: branches/enterprise/WFK-2_0/build/embedded/shaded/hibernate-all.pom.xml
===================================================================
--- branches/enterprise/WFK-2_0/build/embedded/shaded/hibernate-all.pom.xml 2012-06-07 10:34:05 UTC (rev 14855)
+++ branches/enterprise/WFK-2_0/build/embedded/shaded/hibernate-all.pom.xml 2012-06-07 10:34:26 UTC (rev 14856)
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.seam.embedded</groupId>
- <artifactId>hibernate-all</artifactId>
- <version>beta3.SP10</version>
- <description>The hibernate-all.jar distributed with JBoss Embedded. This contains Hibernate
- for running in an EJB3 enviroment (Hibernate, Hibernate Annotations, Hibernate EntityManager, Hibernate Validator, Hibernate Commons Annotations) and Hibernate Search (specific to this seam version of hibernate-all)</description>
-</project>
Deleted: branches/enterprise/WFK-2_0/build/embedded/shaded/jboss-embedded-all.pom.xml
===================================================================
--- branches/enterprise/WFK-2_0/build/embedded/shaded/jboss-embedded-all.pom.xml 2012-06-07 10:34:05 UTC (rev 14855)
+++ branches/enterprise/WFK-2_0/build/embedded/shaded/jboss-embedded-all.pom.xml 2012-06-07 10:34:26 UTC (rev 14856)
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.seam.embedded</groupId>
- <artifactId>jboss-embedded-all</artifactId>
- <version>beta3.SP10</version>
- <description>The jboss-embedded-all.jar distributed with JBoss Embedded. This contains all depdencies
- from JBoss AS that originate in JBoss. This jar has has the org.jboss.embedded packages split out.</description>
-
- <dependencies>
- <dependency>
- <groupId>org.jboss.seam.embedded</groupId>
- <artifactId>jboss-embedded-api</artifactId>
- <version>beta3.SP10</version>
- <exclusions>
- <exclusion></exclusion>
- </exclusions>
- </dependency>
- </dependencies>
-</project>
Deleted: branches/enterprise/WFK-2_0/build/embedded/shaded/jboss-embedded.pom.xml
===================================================================
--- branches/enterprise/WFK-2_0/build/embedded/shaded/jboss-embedded.pom.xml 2012-06-07 10:34:05 UTC (rev 14855)
+++ branches/enterprise/WFK-2_0/build/embedded/shaded/jboss-embedded.pom.xml 2012-06-07 10:34:26 UTC (rev 14856)
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.seam.embedded</groupId>
- <artifactId>jboss-embedded-api</artifactId>
- <version>beta3.SP10</version>
- <description>This jar has the org.jboss.embedded packages split out from jboss-embedded-all. This Seam specific version simply keeps the old jboss-embedded-api name for tooling compatibility</description>
-
- <dependencies>
- <dependency>
- <groupId>org.jboss.microcontainer</groupId>
- <artifactId>jboss-deployers-client-spi</artifactId>
- <version>2.0.0.Beta6</version>
- <exclusions>
- <exclusion>
- <groupId>org.jboss.microcontainer</groupId>
- <artifactId>jboss-managed</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.jboss</groupId>
- <artifactId>jboss-common-core</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
-</project>
Deleted: branches/enterprise/WFK-2_0/build/embedded/shaded/thirdparty-all.pom.xml
===================================================================
--- branches/enterprise/WFK-2_0/build/embedded/shaded/thirdparty-all.pom.xml 2012-06-07 10:34:05 UTC (rev 14855)
+++ branches/enterprise/WFK-2_0/build/embedded/shaded/thirdparty-all.pom.xml 2012-06-07 10:34:26 UTC (rev 14856)
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.seam.embedded</groupId>
- <artifactId>thirdparty-all</artifactId>
- <version>beta3.SP10</version>
- <description>The thirdparty-all.jar distributed with JBoss Embedded. This contains thirdparty
- dependencies distributed with JBoss AS. This Seam version also includes lucene, a dependency
- of hibernate search</description>
-</project>
Deleted: branches/enterprise/WFK-2_0/build/embedded/thirdparty-all.pom.xml
===================================================================
--- branches/enterprise/WFK-2_0/build/embedded/thirdparty-all.pom.xml 2012-06-07 10:34:05 UTC (rev 14855)
+++ branches/enterprise/WFK-2_0/build/embedded/thirdparty-all.pom.xml 2012-06-07 10:34:26 UTC (rev 14856)
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.embedded</groupId>
- <artifactId>thirdparty-all</artifactId>
- <version>beta3.SP10</version>
- <description>The thirdparty-all.jar distributed with JBoss Embedded. This contains thirdparty
- dependencies distributed with JBoss AS.</description>
-</project>
Modified: branches/enterprise/WFK-2_0/jboss-seam-pdf/src/main/resources/org/jboss/seam/pdf/pdf-2.3.xsd
===================================================================
--- branches/enterprise/WFK-2_0/jboss-seam-pdf/src/main/resources/org/jboss/seam/pdf/pdf-2.3.xsd 2012-06-07 10:34:05 UTC (rev 14855)
+++ branches/enterprise/WFK-2_0/jboss-seam-pdf/src/main/resources/org/jboss/seam/pdf/pdf-2.3.xsd 2012-06-07 10:34:26 UTC (rev 14856)
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
- targetNamespace="http://jboss.com/products/seam/pdf"
- xmlns:pdf="http://jboss.com/products/seam/pdf"
- xmlns:components="http://jboss.com/products/seam/components"
+ targetNamespace="http://jboss.org/schema/seam/pdf"
+ xmlns:pdf="http://jboss.org/schema/seam/pdf"
+ xmlns:components="http://jboss.org/schema/seam/components"
attributeFormDefault="unqualified">
- <xs:import namespace="http://jboss.com/products/seam/components"
+ <xs:import namespace="http://jboss.org/schema/seam/components"
schemaLocation="components-2.3.xsd" />
<xs:element name="key-store-config">
Modified: branches/enterprise/WFK-2_0/jboss-seam-remoting/pom.xml
===================================================================
--- branches/enterprise/WFK-2_0/jboss-seam-remoting/pom.xml 2012-06-07 10:34:05 UTC (rev 14855)
+++ branches/enterprise/WFK-2_0/jboss-seam-remoting/pom.xml 2012-06-07 10:34:26 UTC (rev 14856)
@@ -10,6 +10,10 @@
<artifactId>jboss-seam-remoting</artifactId>
<name>Seam Remoting</name>
+ <properties>
+ <main.basedir>${project.parent.basedir}</main.basedir>
+ </properties>
+
<build>
<plugins>
<plugin>
Modified: branches/enterprise/WFK-2_0/jboss-seam-resteasy/src/main/resources/org/jboss/seam/resteasy/resteasy-2.3.xsd
===================================================================
--- branches/enterprise/WFK-2_0/jboss-seam-resteasy/src/main/resources/org/jboss/seam/resteasy/resteasy-2.3.xsd 2012-06-07 10:34:05 UTC (rev 14855)
+++ branches/enterprise/WFK-2_0/jboss-seam-resteasy/src/main/resources/org/jboss/seam/resteasy/resteasy-2.3.xsd 2012-06-07 10:34:26 UTC (rev 14856)
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
- targetNamespace="http://jboss.com/products/seam/resteasy" xmlns:resteasy="http://jboss.com/products/seam/resteasy"
- xmlns:components="http://jboss.com/products/seam/components" attributeFormDefault="unqualified">
+ targetNamespace="http://jboss.org/schema/seam/resteasy" xmlns:resteasy="http://jboss.org/schema/seam/resteasy"
+ xmlns:components="http://jboss.org/schema/seam/components" attributeFormDefault="unqualified">
- <xs:import namespace="http://jboss.com/products/seam/components" schemaLocation="components-2.3.xsd"/>
+ <xs:import namespace="http://jboss.org/schema/seam/components" schemaLocation="components-2.3.xsd"/>
<xs:element name="application">
<xs:annotation>
Modified: branches/enterprise/WFK-2_0/pom.xml
===================================================================
--- branches/enterprise/WFK-2_0/pom.xml 2012-06-07 10:34:05 UTC (rev 14855)
+++ branches/enterprise/WFK-2_0/pom.xml 2012-06-07 10:34:26 UTC (rev 14856)
@@ -521,6 +521,28 @@
<module>seam-reference-guide</module>
</modules>
</profile>
+
+ <profile>
+ <id>validate</id>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>xml-maven-plugin</artifactId>
+ <version>1.0</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>validate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+ </profile>
</profiles>
</project>
More information about the seam-commits
mailing list