You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2008/08/01 21:14:54 UTC

svn commit: r681785 - in /servicemix/smx4/bundles/trunk: antlr-3.0.1/ antlr-3.0.1/pom.xml antlr-runtime-3.0.1/ antlr-runtime-3.0.1/pom.xml drools-4.0.7/ drools-4.0.7/pom.xml groovy-1.5.6/ groovy-1.5.6/pom.xml jdt-core-3.2.3/ jdt-core-3.2.3/pom.xml pom.xml

Author: gnodet
Date: Fri Aug  1 12:14:53 2008
New Revision: 681785

URL: http://svn.apache.org/viewvc?rev=681785&view=rev
Log:
Add a few bundles

Added:
    servicemix/smx4/bundles/trunk/antlr-3.0.1/   (with props)
    servicemix/smx4/bundles/trunk/antlr-3.0.1/pom.xml
    servicemix/smx4/bundles/trunk/antlr-runtime-3.0.1/   (with props)
    servicemix/smx4/bundles/trunk/antlr-runtime-3.0.1/pom.xml
    servicemix/smx4/bundles/trunk/drools-4.0.7/   (with props)
    servicemix/smx4/bundles/trunk/drools-4.0.7/pom.xml
    servicemix/smx4/bundles/trunk/groovy-1.5.6/   (with props)
    servicemix/smx4/bundles/trunk/groovy-1.5.6/pom.xml
    servicemix/smx4/bundles/trunk/jdt-core-3.2.3/   (with props)
    servicemix/smx4/bundles/trunk/jdt-core-3.2.3/pom.xml
Modified:
    servicemix/smx4/bundles/trunk/pom.xml

Propchange: servicemix/smx4/bundles/trunk/antlr-3.0.1/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Aug  1 12:14:53 2008
@@ -0,0 +1,10 @@
+target
+*.iml
+*.ipr
+*.iws
+.classpath
+.project
+.settings
+bin
+
+

Added: servicemix/smx4/bundles/trunk/antlr-3.0.1/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/antlr-3.0.1/pom.xml?rev=681785&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/antlr-3.0.1/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/antlr-3.0.1/pom.xml Fri Aug  1 12:14:53 2008
@@ -0,0 +1,94 @@
+<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">
+
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements.  See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version 2.0
+        (the "License"); you may not use this file except in compliance with
+        the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software
+        distributed under the License is distributed on an "AS IS" BASIS,
+        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+        See the License for the specific language governing permissions and
+        limitations under the License.
+    -->
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+	    <groupId>org.apache.servicemix.bundles</groupId>
+	    <artifactId>bundles-pom</artifactId>
+	    <version>1</version>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.antlr</artifactId>
+    <version>3.0.1_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix Bundles: ${pkgArtifactId}-${pkgVersion}</name>
+    <description>
+        This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
+    </description>
+
+    <properties>
+        <pkgGroupId>org.antlr</pkgGroupId>
+        <pkgArtifactId>antlr</pkgArtifactId>
+        <pkgVersion>3.0.1</pkgVersion>
+        <servicemix.osgi.import.pkg>
+            javax.swing*;resolution:=optional,
+            *
+        </servicemix.osgi.import.pkg>
+        <servicemix.osgi.export>
+            antlr*;version=${pkgVersion};-split-package:=merge-first,
+        </servicemix.osgi.export>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${pkgGroupId}:${pkgArtifactId}</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Propchange: servicemix/smx4/bundles/trunk/antlr-runtime-3.0.1/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Aug  1 12:14:53 2008
@@ -0,0 +1,10 @@
+target
+*.iml
+*.ipr
+*.iws
+.classpath
+.project
+.settings
+bin
+
+

Added: servicemix/smx4/bundles/trunk/antlr-runtime-3.0.1/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/antlr-runtime-3.0.1/pom.xml?rev=681785&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/antlr-runtime-3.0.1/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/antlr-runtime-3.0.1/pom.xml Fri Aug  1 12:14:53 2008
@@ -0,0 +1,95 @@
+<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">
+
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements.  See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version 2.0
+        (the "License"); you may not use this file except in compliance with
+        the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software
+        distributed under the License is distributed on an "AS IS" BASIS,
+        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+        See the License for the specific language governing permissions and
+        limitations under the License.
+    -->
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+	    <groupId>org.apache.servicemix.bundles</groupId>
+	    <artifactId>bundles-pom</artifactId>
+	    <version>1</version>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.antlr-runtime</artifactId>
+    <version>3.0.1_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix Bundles: ${pkgArtifactId}-${pkgVersion}</name>
+    <description>
+        This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
+    </description>
+
+    <properties>
+        <pkgGroupId>org.antlr</pkgGroupId>
+        <pkgArtifactId>antlr-runtime</pkgArtifactId>
+        <pkgVersion>3.0.1</pkgVersion>
+        <servicemix.osgi.import.pkg>
+            javax.swing*;resolution:=optional,
+            org.antlr.stringtemplate*;resolution:=optional,
+            *
+        </servicemix.osgi.import.pkg>
+        <servicemix.osgi.export>
+            org.antlr.runtime*;version=${pkgVersion};-split-package:=merge-first,
+        </servicemix.osgi.export>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${pkgGroupId}:${pkgArtifactId}</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Propchange: servicemix/smx4/bundles/trunk/drools-4.0.7/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Aug  1 12:14:53 2008
@@ -0,0 +1,10 @@
+target
+*.iml
+*.ipr
+*.iws
+.classpath
+.project
+.settings
+bin
+
+

Added: servicemix/smx4/bundles/trunk/drools-4.0.7/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/drools-4.0.7/pom.xml?rev=681785&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/drools-4.0.7/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/drools-4.0.7/pom.xml Fri Aug  1 12:14:53 2008
@@ -0,0 +1,149 @@
+<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">
+
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements.  See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version 2.0
+        (the "License"); you may not use this file except in compliance with
+        the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software
+        distributed under the License is distributed on an "AS IS" BASIS,
+        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+        See the License for the specific language governing permissions and
+        limitations under the License.
+    -->
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+	    <groupId>org.apache.servicemix.bundles</groupId>
+	    <artifactId>bundles-pom</artifactId>
+	    <version>1</version>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.drools</artifactId>
+    <version>4.0.7_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix Bundles: ${pkgArtifactId}-${pkgVersion}</name>
+    <description>
+        This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
+    </description>
+
+    <properties>
+        <pkgGroupId>org.drools</pkgGroupId>
+        <pkgArtifactId>drools</pkgArtifactId>
+        <pkgVersion>4.0.7</pkgVersion>
+        <servicemix.osgi.import.pkg>
+            COM.jrockit*;resolution:=optional,
+            com.thoughtworks.xstream*;resolution:=optional,
+            javax.jcr*;resolution:=optional,
+            javax.rules*;resolution:=optional,
+            jrockit*;resolution:=optional,
+            jxl*;resolution:=optional,
+            org.apache.jackrabbit*;resolution:=optional,
+            org.apache.tools.ant*;resolution:=optional,
+            org.codehaus.janino*;resolution:=optional,
+            org.eclipse.jdt*;resolution:=optional,
+            org.tmatesoft*;resolution:=optional,
+            sun*;resolution:=optional,
+            *
+        </servicemix.osgi.import.pkg>
+        <servicemix.osgi.export>
+            org.drools*;version=${pkgVersion};-split-package:=merge-first,
+            org.mvel*;version=${pkgVersion};-split-package:=merge-first,
+        </servicemix.osgi.export>
+    </properties>
+
+    <repositories>
+      <repository>
+        <id>jboss</id>
+        <url>http://repository.jboss.com/maven2</url>
+      </repository>
+    </repositories>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>drools-analytics</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>drools-ant</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>drools-compiler</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>drools-core</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>drools-decisiontables</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>drools-jsr94</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>drools-repository</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${pkgGroupId}:${pkgArtifactId}</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Propchange: servicemix/smx4/bundles/trunk/groovy-1.5.6/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Aug  1 12:14:53 2008
@@ -0,0 +1,10 @@
+target
+*.iml
+*.ipr
+*.iws
+.classpath
+.project
+.settings
+bin
+
+

Added: servicemix/smx4/bundles/trunk/groovy-1.5.6/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/groovy-1.5.6/pom.xml?rev=681785&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/groovy-1.5.6/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/groovy-1.5.6/pom.xml Fri Aug  1 12:14:53 2008
@@ -0,0 +1,104 @@
+<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">
+
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements.  See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version 2.0
+        (the "License"); you may not use this file except in compliance with
+        the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software
+        distributed under the License is distributed on an "AS IS" BASIS,
+        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+        See the License for the specific language governing permissions and
+        limitations under the License.
+    -->
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+	    <groupId>org.apache.servicemix.bundles</groupId>
+	    <artifactId>bundles-pom</artifactId>
+	    <version>1</version>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.groovy</artifactId>
+    <version>1.5.6_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix Bundles: ${pkgArtifactId}-${pkgVersion}</name>
+    <description>
+        This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
+    </description>
+
+    <properties>
+        <pkgGroupId>org.codehaus.groovy</pkgGroupId>
+        <pkgArtifactId>groovy</pkgArtifactId>
+        <pkgVersion>1.5.6</pkgVersion>
+        <servicemix.osgi.import.pkg>
+            com.mockobjects*;resolution:=optional,
+            com.thoughtworks.xstream*;resolution:=optional,
+            javax.servlet*;resolution:=optional,
+            javax.swing*;resolution:=optional,
+            jline*;resolution:=optional,
+            junit*;resolution:=optional,
+            org.apache.bsf*;resolution:=optional,
+            org.apache.commons.cli*;resolution:=optional,
+            org.apache.commons.lang*;resolution:=optional,
+            org.apache.tools.ant*;resolution:=optional,
+            *
+        </servicemix.osgi.import.pkg>
+        <servicemix.osgi.export>
+            groovy*;version=${pkgVersion};-split-package:=merge-first,
+            org.codehaus.groovy*;version=${pkgVersion};-split-package:=merge-first
+        </servicemix.osgi.export>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${pkgGroupId}:${pkgArtifactId}</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Propchange: servicemix/smx4/bundles/trunk/jdt-core-3.2.3/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Aug  1 12:14:53 2008
@@ -0,0 +1,10 @@
+target
+*.iml
+*.ipr
+*.iws
+.classpath
+.project
+.settings
+bin
+
+

Added: servicemix/smx4/bundles/trunk/jdt-core-3.2.3/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/jdt-core-3.2.3/pom.xml?rev=681785&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/jdt-core-3.2.3/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/jdt-core-3.2.3/pom.xml Fri Aug  1 12:14:53 2008
@@ -0,0 +1,97 @@
+<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">
+
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements.  See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version 2.0
+        (the "License"); you may not use this file except in compliance with
+        the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software
+        distributed under the License is distributed on an "AS IS" BASIS,
+        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+        See the License for the specific language governing permissions and
+        limitations under the License.
+    -->
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+	    <groupId>org.apache.servicemix.bundles</groupId>
+	    <artifactId>bundles-pom</artifactId>
+	    <version>1</version>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.jdt-core</artifactId>
+    <version>3.2.3_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix Bundles: ${pkgArtifactId}-${pkgVersion}</name>
+    <description>
+        This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
+    </description>
+
+    <properties>
+        <pkgGroupId>org.eclipse.jdt</pkgGroupId>
+        <pkgArtifactId>core</pkgArtifactId>
+        <pkgVersion>3.2.3.v_686_R32x</pkgVersion>
+        <servicemix.osgi.import.pkg>
+            org.eclipse.core*;resolution:=optional,
+            org.eclipse.jface*;resolution:=optional,
+            org.eclipse.osgi.util*;resolution:=optional,
+            org.eclipse.text.edits*;resolution:=optional,
+            *
+        </servicemix.osgi.import.pkg>
+        <servicemix.osgi.export>
+            org.eclipse.jdt*;version=${pkgVersion};-split-package:=merge-first,
+        </servicemix.osgi.export>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${pkgGroupId}:${pkgArtifactId}</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Modified: servicemix/smx4/bundles/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/pom.xml?rev=681785&r1=681784&r2=681785&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/pom.xml Fri Aug  1 12:14:53 2008
@@ -44,6 +44,10 @@
         <!--
         <module>bundles-pom</module>
         <module>ant-1.7.0</module>
+        -->
+        <module>antlr-3.0.1</module>
+        <module>antlr-runtime-3.0.1</module>
+        <!--
         <module>aopalliance-1.0</module>
         <module>asm-2.2.3</module>
         <module>cglib-2.1_3</module>
@@ -55,10 +59,13 @@
         <module>commons-jxpath-1.2</module>
         <module>commons-httpclient-3.1</module>
         <module>commons-net-1.4.1</module>
+        <module>drools-4.0.7</module>
         <module>fastinfoset-1.2.2</module>
+        <module>groovy-1.5.6</module>
         <module>howl-1.0.1-1</module>
         <module>jasper-6.0.14</module>
         <module>jaxb-impl-2.1.6</module>
+        <module>jdt-core-3.2.3</module>
         <module>jencks-2.1</module>
         <module>jetty-client-6.1.11</module>
         <module>jetty-sslengine-6.1.11</module>