You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2010/11/19 11:36:20 UTC

svn commit: r1036793 - in /servicemix/components/engines/servicemix-scripting/trunk: .gitignore pom.xml

Author: jbonofre
Date: Fri Nov 19 10:36:19 2010
New Revision: 1036793

URL: http://svn.apache.org/viewvc?rev=1036793&view=rev
Log:
Cleanup POM.

Added:
    servicemix/components/engines/servicemix-scripting/trunk/.gitignore
Modified:
    servicemix/components/engines/servicemix-scripting/trunk/pom.xml

Added: servicemix/components/engines/servicemix-scripting/trunk/.gitignore
URL: http://svn.apache.org/viewvc/servicemix/components/engines/servicemix-scripting/trunk/.gitignore?rev=1036793&view=auto
==============================================================================
--- servicemix/components/engines/servicemix-scripting/trunk/.gitignore (added)
+++ servicemix/components/engines/servicemix-scripting/trunk/.gitignore Fri Nov 19 10:36:19 2010
@@ -0,0 +1,5 @@
+target
+.project
+.classpath
+.settings
+*.i??
\ No newline at end of file

Modified: servicemix/components/engines/servicemix-scripting/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/engines/servicemix-scripting/trunk/pom.xml?rev=1036793&r1=1036792&r2=1036793&view=diff
==============================================================================
--- servicemix/components/engines/servicemix-scripting/trunk/pom.xml (original)
+++ servicemix/components/engines/servicemix-scripting/trunk/pom.xml Fri Nov 19 10:36:19 2010
@@ -1,185 +1,194 @@
 <?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">
-<!--
+<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/xsd/maven-4.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</groupId>
+        <artifactId>components-pom</artifactId>
+        <version>6-SNAPSHOT</version>
+        <relativePath>../../components-pom/pom.xml</relativePath>
+    </parent>
 
-    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</groupId>
-    <artifactId>components-pom</artifactId>
-    <version>6-SNAPSHOT</version>
-    <relativePath>../../components-pom/pom.xml</relativePath>    
-  </parent>
-  
-  <groupId>org.apache.servicemix</groupId>
-  <artifactId>servicemix-scripting</artifactId>
-  <version>2010.02-SNAPSHOT</version>
-  <packaging>jbi-component</packaging>
-  
-  <name>Apache ServiceMix :: Components :: JSR-223 Scripting Service Engine</name>
-  
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/servicemix/components/engines/servicemix-scripting/trunk</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/servicemix/components/engines/servicemix-scripting/trunk</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/servicemix/components/engines/servicemix-scripting/trunk</url>
-  </scm>
-
-  <properties>
-    <groovy-version>1.5.6</groovy-version>
-    <jruby-version>1.3.1</jruby-version>
-    <rhino-version>1.7R1</rhino-version>
-    <jsr223-version>20080611</jsr223-version>
-
-    <servicemix.osgi.import>
-      !org.apache.servicemix.scripting*,
-      !META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.scripting,
-      org.apache.servicemix.common,
-      org.apache.servicemix.common.osgi,
-      org.apache.servicemix.executors.impl,
-      org.apache.xbean.spring.context.v2,
-      org.springframework.beans.factory.xml,
-      com.google.code.scriptengines.groovy;resolution:=optional,
-      sun.misc;resolution:=optional,
-      *
-    </servicemix.osgi.import>
-    <servicemix.osgi.export>
-      org.apache.servicemix.scripting*;version=${project.version},
-      META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.scripting
-    </servicemix.osgi.export>
-    <servicemix.osgi.bundles>
-        org.springframework.core,
-        org.springframework.beans,
-        org.springframework.context
-    </servicemix.osgi.bundles>
-  </properties>
-  
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.servicemix</groupId>
-      <artifactId>servicemix-shared</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.servicemix.specs</groupId>
-      <artifactId>org.apache.servicemix.specs.jbi-api-1.0</artifactId>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <groupId>commons-io</groupId>
-      <artifactId>commons-io</artifactId>
-      <version>1.4</version>
-    </dependency>
-    <dependency>
-      <groupId>org.livetribe</groupId>
-      <artifactId>livetribe-jsr223</artifactId>
-      <version>2.0.5</version>
-    </dependency>
-    <dependency>
-      <groupId>com.sun.script</groupId>
-      <artifactId>groovy-engine</artifactId>
-      <version>${jsr223-version}</version>
-    </dependency>
-    <dependency>
-      <groupId>com.sun.script</groupId>
-      <artifactId>jruby-engine</artifactId>
-      <version>${jsr223-version}</version>
-    </dependency>
-    <dependency>
-      <groupId>com.sun.script</groupId>
-      <artifactId>js-engine</artifactId>
-      <version>${jsr223-version}</version>
-    </dependency>
-    <dependency>
-      <groupId>commons-logging</groupId>
-      <artifactId>commons-logging</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.jruby</groupId>
-      <artifactId>jruby</artifactId>
-      <version>${jruby-version}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.codehaus.groovy</groupId>
-      <artifactId>groovy-all</artifactId>
-      <version>${groovy-version}</version>
-    </dependency>
-    <dependency>
-      <groupId>rhino</groupId>
-      <artifactId>js</artifactId>
-      <version>${rhino-version}</version>
-    </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.geronimo.specs</groupId>
-      <artifactId>geronimo-jta_1.1_spec</artifactId>
-    </dependency>
-    <!-- for unit/integration testing -->
-    <dependency>
-      <groupId>org.apache.servicemix</groupId>
-      <artifactId>servicemix-core</artifactId>
-      <scope>test</scope>
-      <exclusions>
-        <exclusion>
-          <groupId>org.springframework</groupId>
-          <artifactId>spring-jmx</artifactId>
-        </exclusion>
-      </exclusions>
-    </dependency>
-  </dependencies>
-  
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.servicemix.tooling</groupId>
-        <artifactId>jbi-maven-plugin</artifactId>
-        <extensions>true</extensions>
-        <configuration>
-          <type>service-engine</type>
-          <component>org.apache.servicemix.scripting.ScriptingComponent</component>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.xbean</groupId>
-        <artifactId>maven-xbean-plugin</artifactId>
-        <executions>
-          <execution>
-            <configuration>
-              <namespace>
-                  http://servicemix.apache.org/scripting/1.0
-			  </namespace>
-            </configuration>
-            <goals>
-              <goal>mapping</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
-  
-  <repositories>
-    <!-- Holds the scripting engine jars -->
-    <repository>
-      <id>servicemix-m2-repo</id>
-      <name>Servicemix Maven2 Repository</name>
-      <url>http://svn.apache.org/repos/asf/servicemix/m2-repo/</url>
-    </repository>
-  </repositories>
-  
+    <artifactId>servicemix-scripting</artifactId>
+    <version>2010.02-SNAPSHOT</version>
+    <packaging>jbi-component</packaging>
+
+    <name>Apache ServiceMix :: Components :: JSR-223 Scripting Service Engine</name>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/servicemix/components/engines/servicemix-scripting/trunk</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/servicemix/components/engines/servicemix-scripting/trunk</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/servicemix/components/engines/servicemix-scripting/trunk</url>
+    </scm>
+
+    <repositories>
+        <!-- required for scripting engine jars -->
+        <repository>
+            <id>servicemix-m2-repo</id>
+            <name>Servicemix Maven2 Repository</name>
+            <url>http://svn.apache.org/repos/asf/servicemix/m2-repo/</url>
+        </repository>
+    </repositories>    
+
+    <properties>
+        <commons-io.version>1.4</commons-io.version>
+        <groovy.version>1.5.6</groovy.version>
+        <livetribe-jsr223.version>2.0.5</livetribe-jsr223.version>
+        <jsr223.version>20080611</jsr223.version>
+        <jruby.version>1.3.1</jruby.version>
+        <rhino.version>1.7R1</rhino.version>
+
+        <servicemix.osgi.import>
+            !org.apache.servicemix.scripting*,
+            !META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.scripting,
+            org.apache.servicemix.common,
+            org.apache.servicemix.common.osgi,
+            org.apache.servicemix.executors.impl,
+            org.apache.xbean.spring.context.v2,
+            org.springframework.beans.factory.xml,
+            com.google.code.scriptengines.groovy;resolution:=optional,
+            sun.misc;resolution:=optional,
+            *
+        </servicemix.osgi.import>
+        <servicemix.osgi.export>
+            org.apache.servicemix.scripting*;version=${project.version},
+            META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.scripting
+        </servicemix.osgi.export>
+        <servicemix.osgi.bundles>
+            org.springframework.core,
+            org.springframework.beans,
+            org.springframework.context
+        </servicemix.osgi.bundles>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>com.sun.script</groupId>
+            <artifactId>groovy-engine</artifactId>
+            <version>${jsr223.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>com.sun.script</groupId>
+            <artifactId>jruby-engine</artifactId>
+            <version>${jsr223.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>com.sun.script</groupId>
+            <artifactId>js-engine</artifactId>
+            <version>${jsr223.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>${commons-io.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-jta_1.1_spec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.servicemix</groupId>
+            <artifactId>servicemix-shared</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.groovy</groupId>
+            <artifactId>groovy-all</artifactId>
+            <version>${groovy.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.jruby</groupId>
+            <artifactId>jruby</artifactId>
+            <version>${jruby.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.livetribe</groupId>
+            <artifactId>livetribe-jsr223</artifactId>
+            <version>${livetribe-jsr223.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>rhino</groupId>
+            <artifactId>js</artifactId>
+            <version>${rhino.version}</version>
+        </dependency>
+
+        <!-- provided -->
+        <dependency>
+            <groupId>org.apache.servicemix.specs</groupId>
+            <artifactId>org.apache.servicemix.specs.jbi-api-1.0</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <!-- test -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.servicemix</groupId>
+            <artifactId>servicemix-core</artifactId>
+            <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-jmx</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.servicemix.tooling</groupId>
+                <artifactId>jbi-maven-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <type>service-engine</type>
+                    <component>org.apache.servicemix.scripting.ScriptingComponent</component>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.xbean</groupId>
+                <artifactId>maven-xbean-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <configuration>
+                            <namespace>
+                                http://servicemix.apache.org/scripting/1.0
+                            </namespace>
+                        </configuration>
+                        <goals>
+                            <goal>mapping</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>