| 
What this is
 Other links
 The source code
<?xml version="1.0"?>
<!-- ====================================================================== 
     Mar 14, 2007 11:17:02 AM                                                        
     project    
     description
                   
     Administrator                                                                
     ====================================================================== -->
<project name="project" default="default">
	<description>
            description
    </description>
	<!-- ================================= 
          target: default              
         ================================= -->
	<target name="default" description="--> description">
		<echo message="bd is ${buildDirectory}"/>
		<echo message="bd is ${baseLocation}"/>
		<echo message="bd is  ${thisPlugin}/features"/>
		<eclipse.buildScript elements="plugin@org.eclipse.update.configurator:3.3.0.qualifier" 
			buildDirectory="${buildDirectory}" 
			configInfo="*,*,*" 
			baseLocation="${baseLocation}" 
			buildingOSGi="true" 
			outputUpdateJars="false"
			pluginpath="${thisPlugin}"
			/>
		<ant antfile="build.xml" target="build.jars"/>
		<ant antfile="build.xml" target="build.update.jar"/>
		<move todir="${targetFolder}" includeEmptyDirs="no" failonerror="yes">
			<fileset dir="${basedir}">
				<include name="*.jar"/>
			</fileset>
			<regexpmapper from="^(.*)_.*$" to="\1.jar"/>
		</move>
		<ant antfile="build.xml" target="clean"/>
		<delete file="build.xml"/>
		<delete file="javaCompiler...args"/>
	</target>
</project>
 | 
| ... this post is sponsored by my books ... | |
         
           #1 New Release!  | 
      
         
           FP Best Seller  | 
  
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse 
URI on this website is
paid back to open source projects.