Jjustbk2015merge 3.0.0
49d0ffa2创建于 2022年4月8日历史提交
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2008 (http://www.altova.com) by user (Corp.)-->
<project name="compile" default="compile">
	<property name="project.path" value="D:\TSG\Gauss\DBTools\MPP DB\Code\Gauss_MMPDB_IDE\src\client"/>
	<property name="ECLIPSE_HOME" value="D:\softwares\eclipse-rcp-kepler-SR1-RC3-win32\eclipse"/>
	<property name="target" value="1.6"/>
	<property name="source" value="1.6"/>
	
	<property name="srcCodePath" value="${project.path}/org.opengauss.mppdbide.bl/src" />
	<property name="destPath" value="${project.path}/org.opengauss.mppdbide.bl/bin" />	
 	
 	<!-- list of jars from ecplise that this module depends on-->
 	<path id="ecplise.dependent.path">     
 		<!-- currently nothing-->   
    	</path>
    	
    	<!-- path of the class files of the plsql ide plugins on which this module depends on-->
    	<path id="path.id.mppdbide.dependent">
	        <pathelement location="${project.path}/org.opengauss.mppdbide.adapter.gauss/bin"/>
	        <pathelement location="${project.path}/org.opengauss.mppdbide.adapter.gmdb/bin"/>
	        <pathelement location="${project.path}/org.opengauss.mppdbide.utils/bin"/>
	</path>	
	
	<!-- list of the 3rd party jars on which this module depends on-->
	<path id="path.id.3rdparty.dependent">	 
		<!-- currently nothing-->        
	</path>
	
	<!--make a path id out of all the dependent stuff as declared and identified above-->
	<path id="path.id.classpath">		
		<path refid="ecplise.dependent.path" />
		<path refid="path.id.mppdbide.dependent" />
		<path refid="path.id.3rdparty.dependent" />
	</path>
	
	<target name="compile" >
		<delete dir="${destPath}" failonerror="false" />		
		<mkdir dir="${destPath}" />		
		<javac srcdir="${srcCodePath}" classpathref="path.id.classpath" destdir="${destPath}" debug="true" encoding="UTF-8" fork="true" memoryMaximumSize="512m" failonerror="false" source="${source}" target="${target}"/>		
        </target>
	
</project>