Index: Keditor.Java/branches/2.4/build.properties
===================================================================
--- /FCKeditor.Java/branches/2.4/build.properties	(revision 1476)
+++ 	(revision )
@@ -1,36 +1,0 @@
-## FCKeditor - The text editor for Internet - http://www.fckeditor.net
-## Copyright (C) 2003-2008 Frederico Caldeira Knabben
-##
-## == BEGIN LICENSE ==
-##
-## Licensed under the terms of any of the following licenses at your
-## choice:
-##
-##  - GNU General Public License Version 2 or later (the "GPL")
-##    http://www.gnu.org/licenses/gpl.html
-##
-##  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
-##    http://www.gnu.org/licenses/lgpl.html
-##
-##  - Mozilla Public License Version 1.1 or later (the "MPL")
-##    http://www.mozilla.org/MPL/MPL-1.1.html
-##
-## == END LICENSE ==
-
-app.name=FCKeditor.Java
-app.version=2.4ALPHA
-
-# compiler options
-compile.debug=true
-compile.deprecation=true
-compile.optimize=true
-compile.source=1.4
-compile.target=1.4
-
-# javadoc options
-javadoc.author=true
-javadoc.version=true
-javadoc.windowstitle=FCKEditor.Java - API
-javadoc.doctitle=<h1>FCKeditor - The text editor for Internet</h1><p>FCKeditor.Java - The java package of the FCKeditor</p>
-javadoc.bottom=Copyright (C) 2003-2007 Frederico Caldeira Knabben
-javadoc.link=http://java.sun.com/j2se/1.4.2/docs/api
Index: /FCKeditor.Java/branches/2.4/build.xml
===================================================================
--- /FCKeditor.Java/branches/2.4/build.xml	(revision 1476)
+++ /FCKeditor.Java/branches/2.4/build.xml	(revision 1477)
@@ -19,56 +19,5 @@
  * == END LICENSE ==  
 -->
-
-
 <project name="fckeditor-java" basedir=".">
-
-	<!-- *** properties *** -->
-	<property file="build.properties" />
-
-	<!-- dirs and files -->
-	<property name="dir.source" value="source/main" />
-	<property name="dir.web" value="server" />
-	<property name="dir.build" value="${dir.web}/WEB-INF/classes" />
-	<property name="dir.lib" value="lib_ext" />
-	<property name="dir.jsp-samples" value="${dir.web}/jsp" />
-
-
-	<property name="dir.javadoc" value="docs/api" />
-	<property name="dir.dist" value="dist" />
-	<property name="file.binary" value="${dir.dist}/${app.name}_${app.version}.jar" />
-	<property name="file.dist" value="${dir.dist}/${app.name}.zip" />
-
-	<property name="file.tld" value="${dir.source}/FCKeditor.tld" />
-	<property name="file.license" value="LICENSE" />
-	<property name="file.readme" value="README.txt" />
-
-
-
-	<!-- classpath -->
-	<path id="compile.classpath">
-		<fileset dir="${dir.lib}">
-			<include name="*.jar" />
-		</fileset>
-	</path>
-
-
-	<!-- *** common targets *** -->
-
-	<target name="init.dirs" description="Cleanup and build the directories.">
-		<antcall target="cleandir">
-			<param name="dir" value="${dir.build}" />
-		</antcall>
-		<antcall target="cleandir">
-			<param name="dir" value="${dir.dist}" />
-		</antcall>
-		<antcall target="cleandir">
-			<param name="dir" value="${dir.javadoc}" />
-		</antcall>
-	</target>
-
-	<target name="cleandir">
-		<delete dir="${dir}" />
-		<mkdir dir="${dir}" />
-	</target>
 
 	<target name="deploy-fckeditor" description="Deploys the FCKeditor into the webapp for testing purposes">
@@ -89,72 +38,3 @@
 	</target>
 
-	<target name="compile" description="Compile the sources.">
-		<!-- compilation -->
-		<javac srcdir="${dir.source}" destdir="${dir.build}" debug="${compile.debug}" optimize="${compile.optimize}" deprecation="${compile.deprecation}" source="${compile.source}" target="${compile.target}">
-			<classpath refid="compile.classpath" />
-		</javac>
-		<!-- copy tld and properties -->
-		<copy todir="${dir.build}">
-			<fileset dir="${dir.source}">
-				<include name="**/*.tld" />
-				<include name="**/*.properties" />
-			</fileset>
-		</copy>
-	</target>
-
-
-	<target name="javadoc" description="Create Javadoc API documentation">
-		<!-- cleanup javadoc dir -->
-		<antcall target="cleandir">
-			<param name="dir" value="${dir.javadoc}" />
-		</antcall>
-		<!-- genarate the javadoc -->
-		<javadoc destdir="${dir.javadoc}" sourcepath="${dir.source}" source="${compile.source}" windowtitle="${javadoc.windowstitle}" classpathref="compile.classpath" author="${javadoc.author}" version="${javadoc.version}" link="${dir.javadoc}">
-			<doctitle>
-				<![CDATA[${javadoc.doctitle}]]>
-			</doctitle>
-			<bottom>
-				<![CDATA[${javadoc.bottom}]]>
-			</bottom>
-		</javadoc>
-	</target>
-
-
-	<!-- *** dist targets *** -->
-
-	<target name="build.binary" depends="compile" description="Build the application jar">
-		<tstamp>
-			<format property="buildno" pattern="yyMMdd" />
-		</tstamp>
-		<jar jarfile="${file.binary}">
-			<fileset dir="${dir.build}">
-				<include name="**/*.class" />
-				<include name="**/*.properties" />
-				<exclude name="**/*.tld" />
-			</fileset>
-			<metainf file="${file.tld}" />
-			<metainf file="${file.license}" />
-			<manifest>
-				<attribute name="Url" value="http://www.fckeditor.net" />
-				<attribute name="Specification-Title" value="FCKeditor" />
-				<attribute name="Specification-Version" value="${app.version}" />
-				<attribute name="Implementation-Title" value="${app.name}" />
-				<attribute name="Implementation-Version" value="${app.version} - ${buildno}" />
-			</manifest>
-		</jar>
-	</target>
-
-
-	<target name="build.dist" depends="javadoc,build.binary" description="Build the distribution zip.">
-		<delete file="${file.dist}" />
-		<zip destfile="${file.dist}">
-			<zipfileset dir="${basedir}" includes="${file.license}" prefix="" />
-			<zipfileset dir="${basedir}" includes="${file.readme}" prefix="" />
-			<zipfileset dir="${dir.dist}" includes="*.jar" prefix="" />
-			<zipfileset dir="${dir.javadoc}" prefix="api" />
-			<zipfileset dir="${dir.jsp-samples}" prefix="jsp-samples" />
-			<zipfileset dir="${dir.source}" prefix="source" />
-		</zip>
-	</target>
-
 </project>
