You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by fo...@apache.org on 2006/01/12 15:31:05 UTC

svn commit: r368381 - /incubator/servicemix/trunk/tooling/maven-jbi-plugin/src/plugin-resources/project.jsl

Author: foconer
Date: Thu Jan 12 06:30:57 2006
New Revision: 368381

URL: http://svn.apache.org/viewcvs?rev=368381&view=rev
Log:
added license and corrected the servicemix package.

Modified:
    incubator/servicemix/trunk/tooling/maven-jbi-plugin/src/plugin-resources/project.jsl

Modified: incubator/servicemix/trunk/tooling/maven-jbi-plugin/src/plugin-resources/project.jsl
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/tooling/maven-jbi-plugin/src/plugin-resources/project.jsl?rev=368381&r1=368380&r2=368381&view=diff
==============================================================================
--- incubator/servicemix/trunk/tooling/maven-jbi-plugin/src/plugin-resources/project.jsl (original)
+++ incubator/servicemix/trunk/tooling/maven-jbi-plugin/src/plugin-resources/project.jsl Thu Jan 12 06:30:57 2006
@@ -1,55 +1,78 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<j:whitespace xmlns:j="jelly:core" xmlns:util="jelly:util" xmlns:x="jelly:xml"
-	xmlns:ant="jelly:ant" xmlns="dummy" trim="true">
+
+<!--
+    Copyright 2005 The Apache Software Foundation
+
+    Licensed 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.
+-->
+
+<j:whitespace xmlns:j="jelly:core" 
+              xmlns:util="jelly:util" 
+              xmlns:x="jelly:xml"
+	      xmlns:ant="jelly:ant" 
+	      xmlns="dummy" 
+	      trim="true">
 <project>
-	<pomVersion>2</pomVersion>
+
+	<pomVersion>3</pomVersion>
 	<name>${projectName}</name>
 	<id>${projectName}</id>
-	<currentVersion>1.0</currentVersion>
-	<package>org.servicemix.demo</package>
+	<currentVersion>3.0-SNAPSHOT</currentVersion>
+	<package>org.apache.servicemix.demo</package>
 	<shortDescription>
-		A new JBI component
+          A new JBI component
 	</shortDescription>
 	<description>
-		A new JBI component
+          A new JBI component
 	</description>
 
 	<dependencies>
-		<dependency>
-			<id>servicemix</id>
-			<version>1.0</version>
-			<type>jar</type>
-			<url>http://www.servicemix.org</url>
-		</dependency>
-		<dependency>
-			<groupId>servicemix</groupId>
-			<artifactId>jaxp</artifactId>
-			<version>1.3</version>
-		</dependency>
-		<dependency>
-			<groupId>mx4j</groupId>
-			<artifactId>mx4j-jmx</artifactId>
-			<version>2.1.1</version>
-		</dependency>
-		<dependency>
-			<groupId>commons-logging</groupId>
-			<artifactId>commons-logging</artifactId>
-			<version>1.0.3</version>
-			<url>http://jakarta.apache.org/commons/logging/</url>
-		</dependency>
-		<dependency>
-			<groupId>servicemix</groupId>
-			<artifactId>servicemix-client</artifactId>
-			<version>1.0</version>
-			<properties>
-				<jbi.bundle>true</jbi.bundle>
-			</properties>
-		</dependency>
+	<dependency>
+	  <id>org.apache.servicemix</id>
+	  <version>3.0</version>
+	  <type>jar</type>
+	  <url>http://www.servicemix.org</url>
+        </dependency>
+        <dependency>
+          <groupId>servicemix</groupId>
+          <artifactId>jaxp</artifactId>
+          <version>1.3</version>
+        </dependency>
+	<dependency>
+	  <groupId>mx4j</groupId>
+	  <artifactId>mx4j-jmx</artifactId>
+	  <version>2.1.1</version>
+        </dependency>
+        <dependency>
+          <groupId>commons-logging</groupId>
+          <artifactId>commons-logging</artifactId>
+          <version>1.0.3</version>
+          <url>http://jakarta.apache.org/commons/logging/</url>
+        </dependency>
+        <dependency>
+          <groupId>servicemix</groupId>
+          <artifactId>servicemix-client</artifactId>
+          <version>1.0</version>
+          <properties>
+            <jbi.bundle>true</jbi.bundle>
+            </properties>
+          </dependency>
 	</dependencies>
 	
 	<build>
-		<sourceDirectory>src/main/java</sourceDirectory>
-		<unitTestSourceDirectory>src/test/java</unitTestSourceDirectory>
+	  <sourceDirectory>src/main/java</sourceDirectory>
+          <unitTestSourceDirectory>src/test/java</unitTestSourceDirectory>
 	</build>
+	
 </project>
 </j:whitespace>