You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ge...@apache.org on 2010/07/01 11:44:03 UTC

svn commit: r959572 - in /servicemix/smx4/bundles/trunk: jetty-bundle-6.1.24/ pom.xml quartz-1.8.3/ scala-compiler-2.8.0.RC7/ scala-compiler-2.8.0.RC7/pom.xml scala-library-2.8.0.RC7/ scala-library-2.8.0.RC7/pom.xml

Author: gertv
Date: Thu Jul  1 09:44:02 2010
New Revision: 959572

URL: http://svn.apache.org/viewvc?rev=959572&view=rev
Log:
SMX4-546: Add a bundle for Scala 2.8.0.RC7 (library and compiler)

Added:
    servicemix/smx4/bundles/trunk/scala-compiler-2.8.0.RC7/   (with props)
    servicemix/smx4/bundles/trunk/scala-compiler-2.8.0.RC7/pom.xml
    servicemix/smx4/bundles/trunk/scala-library-2.8.0.RC7/   (with props)
    servicemix/smx4/bundles/trunk/scala-library-2.8.0.RC7/pom.xml
Modified:
    servicemix/smx4/bundles/trunk/jetty-bundle-6.1.24/   (props changed)
    servicemix/smx4/bundles/trunk/pom.xml
    servicemix/smx4/bundles/trunk/quartz-1.8.3/   (props changed)

Propchange: servicemix/smx4/bundles/trunk/jetty-bundle-6.1.24/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Jul  1 09:44:02 2010
@@ -0,0 +1,6 @@
+.classpath
+.project
+.settings
+*.i??
+target
+

Modified: servicemix/smx4/bundles/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/pom.xml?rev=959572&r1=959571&r2=959572&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/pom.xml Thu Jul  1 09:44:02 2010
@@ -46,6 +46,8 @@
       <module>jsmpp-2.1.0</module>
       <module>commons-vfs-1.0</module>
       <module>quartz-1.8.3</module>
+      <module>scala-compiler-2.8.0.RC7</module>
+      <module>scala-library-2.8.0.RC7</module>
     </modules>
 
 </project>

Propchange: servicemix/smx4/bundles/trunk/quartz-1.8.3/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Jul  1 09:44:02 2010
@@ -0,0 +1,6 @@
+.classpath
+.project
+.settings
+*.i??
+target
+

Propchange: servicemix/smx4/bundles/trunk/scala-compiler-2.8.0.RC7/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Jul  1 09:44:02 2010
@@ -0,0 +1,5 @@
+.classpath
+.project
+.settings
+*.i??
+target

Added: servicemix/smx4/bundles/trunk/scala-compiler-2.8.0.RC7/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/scala-compiler-2.8.0.RC7/pom.xml?rev=959572&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/scala-compiler-2.8.0.RC7/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/scala-compiler-2.8.0.RC7/pom.xml Thu Jul  1 09:44:02 2010
@@ -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>4</version>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.scala-compiler</artifactId>
+    <version>2.8.0.RC7_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.scala-lang</pkgGroupId>
+        <pkgArtifactId>scala-compiler</pkgArtifactId>
+        <pkgVersion>2.8.0.RC7</pkgVersion>
+        <servicemix.osgi.import.pkg>
+            javax.swing*;resolution:=optional,
+            jline;resolution:=optional,
+            org.apache.tools.ant*;resolution:=optional,
+            *
+        </servicemix.osgi.import.pkg>
+        <servicemix.osgi.export>
+            scala.tools*;version=${pkgVersion};-noimport:=true,
+            ch.epfl*;version=${pkgVersion};-noimport:=true
+        </servicemix.osgi.export>
+        <servicemix.osgi.failok>true</servicemix.osgi.failok>
+    </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/scala-library-2.8.0.RC7/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Jul  1 09:44:02 2010
@@ -0,0 +1,5 @@
+.classpath
+.project
+.settings
+*.i??
+target

Added: servicemix/smx4/bundles/trunk/scala-library-2.8.0.RC7/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/scala-library-2.8.0.RC7/pom.xml?rev=959572&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/scala-library-2.8.0.RC7/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/scala-library-2.8.0.RC7/pom.xml Thu Jul  1 09:44:02 2010
@@ -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>4</version>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.scala-library</artifactId>
+    <version>2.8.0.RC7_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.scala-lang</pkgGroupId>
+        <pkgArtifactId>scala-library</pkgArtifactId>
+        <pkgVersion>2.8.0.RC7</pkgVersion>
+        <servicemix.osgi.import.pkg>
+            sun.misc;resolution:=optional,
+            *
+        </servicemix.osgi.import.pkg>
+        <servicemix.osgi.export>
+            scala*;version=${pkgVersion};-noimport:=true
+        </servicemix.osgi.export>
+        <servicemix.osgi.failok>true</servicemix.osgi.failok>
+    </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>