Author: chirino
Date: Fri Jun 20 08:37:41 2008
New Revision: 669945

URL: http://svn.apache.org/viewvc?rev=669945&view=rev
Log:
updated pom so that it builds using the new release structure.

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

Modified: servicemix/components/engines/servicemix-scripting/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/servicemix/components/engines/servicemix-scripting/trunk/pom.xml?rev=669945&r1=669944&r2=669945&view=diff
==============================================================================
--- servicemix/components/engines/servicemix-scripting/trunk/pom.xml (original)
+++ servicemix/components/engines/servicemix-scripting/trunk/pom.xml Fri Jun 20 
08:37:41 2008
@@ -1,6 +1,5 @@
 <?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";>
-
 <!--
 
     Licensed to the Apache Software Foundation (ASF) under one or more
@@ -18,120 +17,136 @@
     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>serviceengines</artifactId>
-               <version>3.3-SNAPSHOT</version>
-       </parent>
-
-       <groupId>org.apache.servicemix</groupId>
-       <artifactId>servicemix-scripting</artifactId>
-       <packaging>jbi-component</packaging>
-
-       <name>ServiceMix :: JSR-223 Scripting Service Engine</name>
-
-       <dependencies>
-               <dependency>
-                       <groupId>org.apache.servicemix</groupId>
-                       <artifactId>servicemix-shared</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.servicemix</groupId>
-                       <artifactId>servicemix-core</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.3</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>
-                       <scope>provided</scope>
-               </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>
-                       <version>3.8.1</version>
-                       <scope>test</scope>
-               </dependency>
-       </dependencies>
-       <build>
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.servicemix.tooling</groupId>
-                               <artifactId>jbi-maven-plugin</artifactId>
-                               <version>${servicemix-version}</version>
-                               <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>
-                               <version>${xbean-version}</version>
-                               <executions>
-                                       <execution>
-                                               <configuration>
-                                                       <namespace>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.servicemix</groupId>
+    <artifactId>components-pom</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+  
+  <groupId>org.apache.servicemix</groupId>
+  <artifactId>servicemix-scripting</artifactId>
+  <version>4.0-SNAPSHOT</version>
+  <packaging>jbi-component</packaging>
+  
+  <name>ServiceMix :: 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>
+    <previous.releases>3.1.2,3.2,3.2.1</previous.releases>
+    <servicemix-version>3.2.1</servicemix-version>
+    <servicemix-shared-version>4.0-SNAPSHOT</servicemix-shared-version>
+
+    <groovy-version>1.5.6</groovy-version>
+    <jruby-version>1.1.2</jruby-version>
+    <rhino-version>1.7R1</rhino-version>
+    <jsr223-version>20080611</jsr223-version>
+  </properties>
+  
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.servicemix</groupId>
+      <artifactId>servicemix-shared</artifactId>
+      <version>${servicemix-shared-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.servicemix</groupId>
+      <artifactId>servicemix-core</artifactId>
+      <version>${servicemix-version}</version>
+      <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.3</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>
+  </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://org.apache.servicemix/scripting/1.0
                                                        </namespace>
-                                               </configuration>
-                                               <goals>
-                                                       <goal>mapping</goal>
-                                               </goals>
-                                       </execution>
-                               </executions>
-                       </plugin>
-               </plugins>
-       </build>
-
-    <properties>
-        <groovy-version>1.5.6</groovy-version>
-        <jruby-version>1.1.2</jruby-version>
-        <rhino-version>1.7R1</rhino-version>
-        <jsr223-version>20080611</jsr223-version>
-    </properties>
-    
+            </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>
+  
 </project>


Reply via email to