mirror of
https://github.com/LibreOffice/loeclipse.git
synced 2025-07-31 20:58:45 +00:00
Remove noise from file header
This commit is contained in:
@ -1,12 +1,6 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- ======================================================================
|
||||
* $RCSfile: build.xml,v $
|
||||
*
|
||||
* $Revision: 1.8 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2008/12/13 13:43:02 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
<!-- ======================================================================
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
* Sun Microsystems Inc., October, 2000
|
||||
@ -30,49 +24,49 @@
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
*
|
||||
*
|
||||
* The Initial Developer of the Original Code is: Sun Microsystems, Inc..
|
||||
*
|
||||
* Copyright: 2002 by Sun Microsystems, Inc.
|
||||
*
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Cedric Bosdonnat
|
||||
* Contributor(s): Cedric Bosdonnat
|
||||
====================================================================== -->
|
||||
|
||||
<project name="java" default="java.error">
|
||||
|
||||
|
||||
|
||||
<target name="java.error">
|
||||
<fail>Wrong target!
|
||||
|
||||
|
||||
This script should not be executed directly.
|
||||
Please, use the one in the build project
|
||||
</fail>
|
||||
</target>
|
||||
|
||||
|
||||
|
||||
|
||||
<target name="init-env" unless="java.nobuild">
|
||||
<dirname property="java.basedir" file="${ant.file.java}"/>
|
||||
|
||||
|
||||
<property file = "../build.properties"/>
|
||||
<property name="java.out.path" value="${java.basedir}/bin/ant" />
|
||||
<property name="java.out.classes" value="${java.out.path}/classes"/>
|
||||
<property name="java.sources" value="${java.basedir}/source"/>
|
||||
<property name="jodconnector.classes" value="${java.out.path}/jodconnector"/>
|
||||
|
||||
|
||||
<path id="java.dependencies.path">
|
||||
<pathelement location="${core.out.classes}"/>
|
||||
|
||||
|
||||
<fileset dir="${eclipse.home}/plugins/">
|
||||
<include name="org.eclipse*.jar"/>
|
||||
</fileset>
|
||||
</path>
|
||||
|
||||
|
||||
<mkdir dir="${java.out.path}/plugins" />
|
||||
<mkdir dir="${java.out.classes}" />
|
||||
</target>
|
||||
|
||||
|
||||
<target name="java.version" depends="init-env">
|
||||
<property name="manifest.properties" value="MANIFEST-MF.properties"/>
|
||||
<copy tofile="${manifest.properties}" file="${java.basedir}/META-INF/MANIFEST.MF"/>
|
||||
@ -80,7 +74,7 @@
|
||||
<property file="${manifest.properties}" prefix="java"/>
|
||||
<delete file="${manifest.properties}" />
|
||||
</target>
|
||||
|
||||
|
||||
<target name="purge" depends="init-env">
|
||||
<property name="java.out.path" value="${java.basedir}/bin/ant" />
|
||||
<delete dir="${java.out.path}" />
|
||||
@ -92,27 +86,27 @@
|
||||
<javac srcdir="${java.sources}" destdir="${jodconnector.classes}"
|
||||
target="${java_target}" source="${java_source}"
|
||||
debug="true"
|
||||
classpathref="office.class.path"
|
||||
classpathref="office.class.path"
|
||||
includes="com/artofsolving/**" defaultexcludes="true">
|
||||
</javac>
|
||||
</target>
|
||||
|
||||
|
||||
<target name="jodconnector.package" depends="jodconnector.compile">
|
||||
<jar destfile="${java.basedir}/jodconnector.jar">
|
||||
<zipfileset prefix="" dir="${jodconnector.classes}"/>
|
||||
<zipfileset prefix="" dir="${java.sources}" defaultexcludes="true" includes="com/artofsolving/**"/>
|
||||
</jar>
|
||||
</target>
|
||||
|
||||
|
||||
<target name="java.compile" depends="init-env" unless="java.nobuild">
|
||||
<javac srcdir="${java.sources}" destdir="${java.out.classes}"
|
||||
target="${java_target}" source="${java_source}"
|
||||
debug="${debug}"
|
||||
classpathref="java.dependencies.path"
|
||||
classpathref="java.dependencies.path"
|
||||
excludes="**/*Test.*,com/artofsolving/**">
|
||||
</javac>
|
||||
</target>
|
||||
|
||||
|
||||
<target name="java.plugin" depends="java.version, java.compile, jodconnector.package" unless="java.nobuild">
|
||||
<jar destfile="${java.out.path}/plugins/${package.prefix}.java_${java.Bundle-Version}.jar"
|
||||
manifest="${java.basedir}/META-INF/MANIFEST.MF">
|
||||
@ -120,13 +114,13 @@
|
||||
<exclude name="**/*.java"/>
|
||||
</zipfileset>
|
||||
<zipfileset prefix="" dir="${java.out.classes}"/>
|
||||
|
||||
|
||||
<zipfileset prefix="icons" dir="${java.basedir}/icons"/>
|
||||
<zipfileset prefix="" file="${java.basedir}/plugin.xml" />
|
||||
<zipfileset prefix="" file="${java.basedir}/jodconnector.jar" />
|
||||
</jar>
|
||||
</target>
|
||||
|
||||
|
||||
<target name="java.site" depends="java.plugin" unless="java.nobuild">
|
||||
|
||||
<!-- Echo the needed bits for site.xml -->
|
||||
@ -142,6 +136,6 @@
|
||||
<mapper type="flatten" />
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
|
||||
</project>
|
||||
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: JavaBuilder.java,v $
|
||||
*
|
||||
* $Revision: 1.7 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2008/12/13 13:43:02 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: JavaMainProvider.java,v $
|
||||
*
|
||||
* $Revision: 1.2 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2007/11/25 20:32:38 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: JavaProjectHandler.java,v $
|
||||
*
|
||||
* $Revision: 1.10 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2008/12/13 13:43:02 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: JavaResourceDeltaVisitor.java,v $
|
||||
*
|
||||
* $Revision: 1.3 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2007/12/07 07:31:20 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: JavaUnoResourceChangeHandler.java,v $
|
||||
*
|
||||
* $Revision: 1.3 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2007/11/25 20:32:38 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: JavaWizardPage.java,v $
|
||||
*
|
||||
* $Revision: 1.5 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2007/11/25 20:32:38 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: Language.java,v $
|
||||
*
|
||||
* $Revision: 1.6 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2007/11/25 20:32:38 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: Messages.java,v $
|
||||
*
|
||||
* $Revision: 1.3 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2007/11/25 20:32:38 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: OOoJavaPlugin.java,v $
|
||||
*
|
||||
* $Revision: 1.4 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2007/11/25 20:32:38 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: OOoClasspathContainer.java,v $
|
||||
*
|
||||
* $Revision: 1.1 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2007/12/26 14:40:18 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: OOoContainerPage.java,v $
|
||||
*
|
||||
* $Revision: 1.1 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2007/12/26 14:40:18 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: OooClasspathContainerInitializer.java,v $
|
||||
*
|
||||
* $Revision: 1.3 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2009/04/20 06:15:53 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
*$RCSfile: BuildScriptExportWizard.java,v $
|
||||
*
|
||||
* $Revision: 1.0 $
|
||||
*
|
||||
* last change: $Author: shobhanmandal $ $Date: 2018/03/03 18:36:29 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: FileRefreshJob.java,v $
|
||||
*
|
||||
* $Revision: 1.2 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2007/11/25 20:32:38 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: RegistrationHelper.java,v $
|
||||
*
|
||||
* $Revision: 1.3 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2007/12/07 07:30:55 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
@ -1,11 +1,4 @@
|
||||
/*************************************************************************
|
||||
*
|
||||
* $RCSfile: Messages.java,v $
|
||||
*
|
||||
* $Revision: 1.2 $
|
||||
*
|
||||
* last change: $Author: cedricbosdo $ $Date: 2007/11/25 20:32:39 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
|
Reference in New Issue
Block a user