You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ace.apache.org by ma...@apache.org on 2012/07/12 23:15:18 UTC

svn commit: r1360951 - in /ace/sandbox/marrs/org.apache.ace.ant.tasks: .classpath .project bnd.bnd build-example.xml build.xml src/org/apache/ace/ant/deploymentpackage/packageinfo

Author: marrs
Date: Thu Jul 12 21:15:18 2012
New Revision: 1360951

URL: http://svn.apache.org/viewvc?rev=1360951&view=rev
Log:
Converted into bnd project.

Added:
    ace/sandbox/marrs/org.apache.ace.ant.tasks/.classpath
    ace/sandbox/marrs/org.apache.ace.ant.tasks/.project
    ace/sandbox/marrs/org.apache.ace.ant.tasks/bnd.bnd
    ace/sandbox/marrs/org.apache.ace.ant.tasks/build-example.xml
    ace/sandbox/marrs/org.apache.ace.ant.tasks/src/org/apache/ace/ant/deploymentpackage/packageinfo
Modified:
    ace/sandbox/marrs/org.apache.ace.ant.tasks/build.xml

Added: ace/sandbox/marrs/org.apache.ace.ant.tasks/.classpath
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/org.apache.ace.ant.tasks/.classpath?rev=1360951&view=auto
==============================================================================
--- ace/sandbox/marrs/org.apache.ace.ant.tasks/.classpath (added)
+++ ace/sandbox/marrs/org.apache.ace.ant.tasks/.classpath Thu Jul 12 21:15:18 2012
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+	<classpathentry kind="con" path="aQute.bnd.classpath.container"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>

Added: ace/sandbox/marrs/org.apache.ace.ant.tasks/.project
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/org.apache.ace.ant.tasks/.project?rev=1360951&view=auto
==============================================================================
--- ace/sandbox/marrs/org.apache.ace.ant.tasks/.project (added)
+++ ace/sandbox/marrs/org.apache.ace.ant.tasks/.project Thu Jul 12 21:15:18 2012
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>org.apache.ace.ant.tasks</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>bndtools.core.bndbuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>bndtools.core.bndnature</nature>
+	</natures>
+</projectDescription>

Added: ace/sandbox/marrs/org.apache.ace.ant.tasks/bnd.bnd
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/org.apache.ace.ant.tasks/bnd.bnd?rev=1360951&view=auto
==============================================================================
--- ace/sandbox/marrs/org.apache.ace.ant.tasks/bnd.bnd (added)
+++ ace/sandbox/marrs/org.apache.ace.ant.tasks/bnd.bnd Thu Jul 12 21:15:18 2012
@@ -0,0 +1,3 @@
+-buildpath: ../cnf/lib/ant.jar;version=file,\
+	org.apache.ace.builder;version=latest
+Export-Package: org.apache.ace.ant.deploymentpackage
\ No newline at end of file

Added: ace/sandbox/marrs/org.apache.ace.ant.tasks/build-example.xml
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/org.apache.ace.ant.tasks/build-example.xml?rev=1360951&view=auto
==============================================================================
--- ace/sandbox/marrs/org.apache.ace.ant.tasks/build-example.xml (added)
+++ ace/sandbox/marrs/org.apache.ace.ant.tasks/build-example.xml Thu Jul 12 21:15:18 2012
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+    <!--
+
+        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.
+    -->
+
+<!-- be sure to run 'mvn install' to create the library before trying this -->
+<project name="sample-build" default="build">
+	<!-- defines the deployment package task as 'dp' -->
+    <taskdef name="dp" classname="org.apache.ace.ant.deploymentpackage.DeploymentPackageTask" classpath="target/org.apache.ace.ant.tasks-0.8.1-SNAPSHOT.jar:../ace-builder/target/org.apache.ace.builder-0.8.1-SNAPSHOT.jar" />
+
+    <!-- builds a deployment package based on some existing jar files -->
+	<target name="build">
+		<dp name="org.apache.ace.dp.sample" version="1.0.0" dir=".." destination="sample-dp.jar">
+			<!-- uses two completely arbitrary bundles -->
+            <orderedinclude name="ace-log-listener/target/org.apache.ace.log.listener-0.8.1-SNAPSHOT.jar" />
+			<orderedinclude name="ace-log/target/org.apache.ace.log-0.8.1-SNAPSHOT.jar" />
+			<include name="ace-range-api/target/org.apache.ace.range.api-0.8.1-SNAPSHOT.jar" />
+		</dp>
+	</target>
+</project>

Modified: ace/sandbox/marrs/org.apache.ace.ant.tasks/build.xml
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/org.apache.ace.ant.tasks/build.xml?rev=1360951&r1=1360950&r2=1360951&view=diff
==============================================================================
--- ace/sandbox/marrs/org.apache.ace.ant.tasks/build.xml (original)
+++ ace/sandbox/marrs/org.apache.ace.ant.tasks/build.xml Thu Jul 12 21:15:18 2012
@@ -1,34 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-    <!--
-
-        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.
-    -->
-
-<!-- be sure to run 'mvn install' to create the library before trying this -->
-<project name="sample-build" default="build">
-	<!-- defines the deployment package task as 'dp' -->
-    <taskdef name="dp" classname="org.apache.ace.ant.deploymentpackage.DeploymentPackageTask" classpath="target/org.apache.ace.ant.tasks-0.8.1-SNAPSHOT.jar:../ace-builder/target/org.apache.ace.builder-0.8.1-SNAPSHOT.jar" />
-
-    <!-- builds a deployment package based on some existing jar files -->
-	<target name="build">
-		<dp name="org.apache.ace.dp.sample" version="1.0.0" dir=".." destination="sample-dp.jar">
-			<!-- uses two completely arbitrary bundles -->
-            <orderedinclude name="ace-log-listener/target/org.apache.ace.log.listener-0.8.1-SNAPSHOT.jar" />
-			<orderedinclude name="ace-log/target/org.apache.ace.log-0.8.1-SNAPSHOT.jar" />
-			<include name="ace-range-api/target/org.apache.ace.range.api-0.8.1-SNAPSHOT.jar" />
-		</dp>
-	</target>
+<project name="project" default="build"> 
+	<import file="../cnf/build.xml"/>
 </project>

Added: ace/sandbox/marrs/org.apache.ace.ant.tasks/src/org/apache/ace/ant/deploymentpackage/packageinfo
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/org.apache.ace.ant.tasks/src/org/apache/ace/ant/deploymentpackage/packageinfo?rev=1360951&view=auto
==============================================================================
--- ace/sandbox/marrs/org.apache.ace.ant.tasks/src/org/apache/ace/ant/deploymentpackage/packageinfo (added)
+++ ace/sandbox/marrs/org.apache.ace.ant.tasks/src/org/apache/ace/ant/deploymentpackage/packageinfo Thu Jul 12 21:15:18 2012
@@ -0,0 +1 @@
+version 1.0
\ No newline at end of file