* fixed eclipse classpath
This commit is contained in:
parent
4e03a1cf66
commit
3a2da6377f
|
@ -1,13 +0,0 @@
|
||||||
<?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="src" path="/dbPort"/>
|
|
||||||
<classpathentry kind="src" path="/tools"/>
|
|
||||||
<classpathentry kind="src" path="/looks"/>
|
|
||||||
<classpathentry kind="lib" path="/tools/lib/barbecue-1.0.6d.jar"/>
|
|
||||||
<classpathentry kind="lib" path="/lib/CCTools.jar"/>
|
|
||||||
<classpathentry kind="lib" path="/tools/lib/itext-1.4.8.jar"/>
|
|
||||||
<classpathentry kind="lib" path="/tools/lib/jpedal.jar"/>
|
|
||||||
<classpathentry kind="output" path="build"/>
|
|
||||||
</classpath>
|
|
|
@ -1,21 +0,0 @@
|
||||||
@Title Build Print
|
|
||||||
@Rem $Header: /cvsroot/adempiere/print/RUN_build.bat,v 1.9 2005/09/16 00:50:35 jjanke Exp $
|
|
||||||
|
|
||||||
@CALL ..\utils_dev\myDevEnv.bat
|
|
||||||
|
|
||||||
@IF %ADEMPIERE_ENV%==N GOTO NOBUILD
|
|
||||||
@IF NOT %ADEMPIERE_ENV%==Y GOTO NOBUILD
|
|
||||||
|
|
||||||
@echo Cleanup ...
|
|
||||||
@"%JAVA_HOME%\bin\java" -Dant.home="." %ANT_PROPERTIES% org.apache.tools.ant.Main clean
|
|
||||||
|
|
||||||
@echo Building ...
|
|
||||||
@"%JAVA_HOME%\bin\java" -Dant.home="." %ANT_PROPERTIES% org.apache.tools.ant.Main printDistribute
|
|
||||||
|
|
||||||
@Echo Done ...
|
|
||||||
@sleep 60
|
|
||||||
@exit
|
|
||||||
|
|
||||||
:NOBUILD
|
|
||||||
@Echo Check myDevEnv.bat (copy from myDevEnvTemplate.bat)
|
|
||||||
@Pause
|
|
|
@ -1,18 +0,0 @@
|
||||||
# Module compiling script
|
|
||||||
# Ported from Windows script Marek Mosiewicz<marek.mosiewicz@jotel.com.pl>
|
|
||||||
|
|
||||||
|
|
||||||
SAVED_DIR=`pwd` #save current dir
|
|
||||||
cd `dirname $0`/../utils_dev #change dir to place where script resides - doesn not work with sym links
|
|
||||||
UTILS_DEV=`pwd` #this is adempiere source
|
|
||||||
cd $SAVED_DIR #back to the saved directory
|
|
||||||
|
|
||||||
. $UTILS_DEV/myDevEnv.sh #call environment
|
|
||||||
echo done
|
|
||||||
if [ ! $ADEMPIERE_ENV==Y ] ; then
|
|
||||||
echo "Can't set developemeent environemnt - check myDevEnv.sh"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo running Ant
|
|
||||||
$JAVA_HOME/bin/java -Dant.home="." $ANT_PROPERTIES org.apache.tools.ant.Main
|
|
|
@ -1,89 +0,0 @@
|
||||||
<!-- ============================================= -->
|
|
||||||
<!-- Print -->
|
|
||||||
<!-- ============================================= -->
|
|
||||||
<!-- $Header: /cvs/adempiere/print/build.xml,v 1.2 2006/07/03 16:52:01 jjanke Exp $ -->
|
|
||||||
|
|
||||||
<project name="print" default="printDistribute" basedir=".">
|
|
||||||
|
|
||||||
<description>
|
|
||||||
This buildfile is used to build the print subproject within
|
|
||||||
the Adempiere project.
|
|
||||||
</description>
|
|
||||||
|
|
||||||
<!-- set global properties for this build -->
|
|
||||||
<!--<property environment="env"/>-->
|
|
||||||
<import file="../utils_dev/properties.xml"/>
|
|
||||||
<property name="src" value="src"/>
|
|
||||||
<property name="build.dir" value="build"/>
|
|
||||||
<property name="dist.dir" value="."/>
|
|
||||||
<property name="jar.path" value="../lib"/>
|
|
||||||
<property name="jar.name" value="Print"/>
|
|
||||||
|
|
||||||
<!-- set path to include the necessary jar files for javac -->
|
|
||||||
<path id="project.class.path">
|
|
||||||
<pathelement path="${classpath}"/>
|
|
||||||
<pathelement path="../lib/CCTools.jar"/>
|
|
||||||
<pathelement path="../looks/CLooks.jar"/>
|
|
||||||
<pathelement path="../dbPort/dbPort.jar"/>
|
|
||||||
<pathelement path="../lib/customization.jar"/>
|
|
||||||
<pathelement path="../lib/patches.jar"/>
|
|
||||||
<pathelement path="../tools/lib/jpedal.jar"/>
|
|
||||||
<pathelement path="../tools/lib/itext-1.4.8.jar"/>
|
|
||||||
</path>
|
|
||||||
|
|
||||||
|
|
||||||
<target name="printInit" description="initialization target">
|
|
||||||
<echo message="=========== Build Print"/>
|
|
||||||
<!-- create the time stamp -->
|
|
||||||
<tstamp/>
|
|
||||||
<!-- create the build directory structure used by compile -->
|
|
||||||
<mkdir dir="${build.dir}"/>
|
|
||||||
<!-- check for the distribution directory -->
|
|
||||||
<available file="${dist.dir}" type="dir" property="dist.dir.exists"/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<target name="printMakedir" depends="printInit" unless="dist.dir.exists">
|
|
||||||
<!-- create the distribution directory if not available -->
|
|
||||||
<mkdir dir="${dist}/${dist.dir}"/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
|
|
||||||
<target name="printCompile" depends="printMakedir">
|
|
||||||
<!-- compile the java code from ${src} into ${build.dir} -->
|
|
||||||
<javac srcdir="${src}" destdir="${build.dir}"
|
|
||||||
deprecation="on" debug="on" encoding="${env.ENCODING}">
|
|
||||||
<classpath refid="project.class.path"/>
|
|
||||||
</javac>
|
|
||||||
<!-- copy all image & sound files from src to the build directory -->
|
|
||||||
<copy todir="${build.dir}">
|
|
||||||
<fileset dir="${src}">
|
|
||||||
<include name="**/images/*"/>
|
|
||||||
<include name="**/*.gif"/>
|
|
||||||
<include name="**/*.png"/>
|
|
||||||
<include name="**/*.jpg"/>
|
|
||||||
<include name="**/*.wav"/>
|
|
||||||
<include name="**/*.htm"/>
|
|
||||||
<include name="**/*.html"/>
|
|
||||||
<include name="**/*.properties"/>
|
|
||||||
<exclude name="**/package.html"/>
|
|
||||||
</fileset>
|
|
||||||
</copy>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- =========================================== -->
|
|
||||||
<!-- Distribution -->
|
|
||||||
<!-- =========================================== -->
|
|
||||||
<target name="printDistribute" depends="printCompile">
|
|
||||||
<!-- put everything from ${build.dir} into the ${jar.name}.jar file -->
|
|
||||||
<jar jarfile="${dist.dir}/${jar.name}.jar" basedir="${build.dir}"/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
|
|
||||||
<target name="clean">
|
|
||||||
<!-- Delete the ${build.dir} directory trees -->
|
|
||||||
<delete dir="${build.dir}"/>
|
|
||||||
<delete file="${dist.dir}/${jar.name}.jar" failonerror="false"/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
</project>
|
|
|
@ -1,5 +0,0 @@
|
||||||
@Rem API Documentation for Base
|
|
||||||
|
|
||||||
call ..\doc\documentation.bat src doc -private
|
|
||||||
|
|
||||||
@pause
|
|
|
@ -1,2 +0,0 @@
|
||||||
org.compiere.print
|
|
||||||
org.compiere.print.layout
|
|
|
@ -1,33 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
|
||||||
<title>JBuilder Project print.jpx</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>Project print Notes</h1>
|
|
||||||
<hr><table border="0">
|
|
||||||
<tr><th align="left" valign="top">Title:</th><td align="left" valign="top">
|
|
||||||
<!-- Type Title below -->
|
|
||||||
|
|
||||||
</td></tr>
|
|
||||||
<tr><th align="left" valign="top">Author:</th><td align="left" valign="top">
|
|
||||||
<!-- Type Author below -->
|
|
||||||
|
|
||||||
</td></tr>
|
|
||||||
<tr><th align="left" valign="top">Company:</th><td align="left" valign="top">
|
|
||||||
<!-- Type Company below -->
|
|
||||||
|
|
||||||
</td></tr>
|
|
||||||
<tr><th align="left" valign="top">Description:</th><td align="left" valign="top">
|
|
||||||
<!-- Type Description below -->
|
|
||||||
|
|
||||||
</td></tr>
|
|
||||||
</table><hr>
|
|
||||||
<h2>Things to do... </h2>
|
|
||||||
<ol>
|
|
||||||
<!-- Edit this section to keep track of your to do items -->
|
|
||||||
<li>First
|
|
||||||
<li>Second
|
|
||||||
</ol>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,10 +0,0 @@
|
||||||
<?xml version='1.0' encoding='UTF-8' ?>
|
|
||||||
|
|
||||||
<!--Generated by XML Authority-->
|
|
||||||
|
|
||||||
<!ELEMENT printData (element | printData)+>
|
|
||||||
|
|
||||||
<!ATTLIST printData name CDATA #IMPLIED >
|
|
||||||
<!ELEMENT element (#PCDATA)>
|
|
||||||
|
|
||||||
<!ATTLIST element name CDATA #IMPLIED >
|
|
Loading…
Reference in New Issue