You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by sm...@apache.org on 2012/09/18 18:00:25 UTC

svn commit: r1387224 - /pivot/trunk/build.xml

Author: smartini
Date: Tue Sep 18 16:00:25 2012
New Revision: 1387224

URL: http://svn.apache.org/viewvc?rev=1387224&view=rev
Log:
add environment-classpath target to display the classpath used

Modified:
    pivot/trunk/build.xml

Modified: pivot/trunk/build.xml
URL: http://svn.apache.org/viewvc/pivot/trunk/build.xml?rev=1387224&r1=1387223&r2=1387224&view=diff
==============================================================================
--- pivot/trunk/build.xml (original)
+++ pivot/trunk/build.xml Tue Sep 18 16:00:25 2012
@@ -344,6 +344,7 @@ limitations under the License.
         </sequential>
     </macrodef>
 
+
     <!-- Return some environmental info -->
     <target name="environment-info" description="Gives some info on Environment and Compiler flags"
         depends=""
@@ -363,6 +364,14 @@ limitations under the License.
         <echo message=""/>
     </target>
 
+    <!-- Display the classpath -->
+    <target name="environment-classpath" description="Gives some info on Environment and classpath"
+        depends="environment-info"
+    >
+		<property name="classpath" refid="classpath.javalib"/>
+		<echo message="Using Classpath: ${classpath}"/>
+    </target>
+
 
     <!-- Compile all classes (tests included) -->
     <target name="compile" description="Compiles all projects"