[jboss-cvs] JBossAS SVN: r87938 - projects/jboss-osgi/bundles/apache/xerces.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Apr 28 08:41:26 EDT 2009


Author: thomas.diesler at jboss.com
Date: 2009-04-28 08:41:26 -0400 (Tue, 28 Apr 2009)
New Revision: 87938

Removed:
   projects/jboss-osgi/bundles/apache/xerces/.classpath
Modified:
   projects/jboss-osgi/bundles/apache/xerces/.project
   projects/jboss-osgi/bundles/apache/xerces/pom.xml
Log:
apache-xerces-2.9.1-SNAPSHOT

Deleted: projects/jboss-osgi/bundles/apache/xerces/.classpath
===================================================================
--- projects/jboss-osgi/bundles/apache/xerces/.classpath	2009-04-28 11:55:11 UTC (rev 87937)
+++ projects/jboss-osgi/bundles/apache/xerces/.classpath	2009-04-28 12:41:26 UTC (rev 87938)
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
-	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
-	<classpathentry kind="output" path="target/classes"/>
-</classpath>

Modified: projects/jboss-osgi/bundles/apache/xerces/.project
===================================================================
--- projects/jboss-osgi/bundles/apache/xerces/.project	2009-04-28 11:55:11 UTC (rev 87937)
+++ projects/jboss-osgi/bundles/apache/xerces/.project	2009-04-28 12:41:26 UTC (rev 87938)
@@ -6,8 +6,13 @@
 	</projects>
 	<buildSpec>
 		<buildCommand>
-			<name>org.eclipse.jdt.core.javabuilder</name>
+			<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
+			<triggers>full,incremental,</triggers>
 			<arguments>
+				<dictionary>
+					<key>LaunchConfigHandle</key>
+					<value>&lt;project&gt;/.externalToolBuilders/org.eclipse.jdt.core.javabuilder.launch</value>
+				</dictionary>
 			</arguments>
 		</buildCommand>
 		<buildCommand>

Modified: projects/jboss-osgi/bundles/apache/xerces/pom.xml
===================================================================
--- projects/jboss-osgi/bundles/apache/xerces/pom.xml	2009-04-28 11:55:11 UTC (rev 87937)
+++ projects/jboss-osgi/bundles/apache/xerces/pom.xml	2009-04-28 12:41:26 UTC (rev 87938)
@@ -5,12 +5,65 @@
   <name>JBossOSGi - Bundles Apache Xerces</name>
   <groupId>org.jboss.osgi.bundles.apache</groupId>
   <artifactId>apache-xerces</artifactId>
-  <packaging>pom</packaging>
+  <packaging>jar</packaging>
 
+  <version>2.9.1-SNAPSHOT</version>
+
   <parent>
     <groupId>org.jboss.osgi.bundles.apache</groupId>
     <artifactId>jboss-bundles-apache-parent</artifactId>
     <version>1.0.0</version>
   </parent>
 
+  <properties>
+    <version.apache.xerces>2.9.1</version.apache.xerces>
+    <version.wutka.dtdparser>1.2.1</version.wutka.dtdparser>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>apache-xerces</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>${version.apache.xerces}</version>
+    </dependency>
+    <dependency>
+      <groupId>apache-xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+      <version>${version.apache.xerces}</version>
+    </dependency>
+    <dependency>
+      <groupId>wutka-dtdparser</groupId>
+      <artifactId>dtdparser121</artifactId>
+      <version>${version.wutka.dtdparser}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>bundle</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <instructions>
+            <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
+            <Export-Package>
+              com.wutka.dtd;version=${version.wutka.dtdparser},
+              org.apache.xml*;version=${version.apache.xerces},
+              org.apache.xerces*;version=${version.apache.xerces},
+            </Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>




More information about the jboss-cvs-commits mailing list