Changes between Initial Version and Version 1 of JavaBuild


Ignore:
Timestamp:
Feb 19, 2012 2:20:46 PM (13 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • JavaBuild

    v1 v1  
     1 == Procédure de construction du package février 2012 == 
     2 
     3Retour à la page de démarrage [..] 
     4 
     5Note : ce fichier est pour mémoire pour Cédric 
     6Aller chercher le plugins fatJar de éclipse le décompresser dans les plugins [[BR]] 
     7 
     8 
     9{{{ 
     10<project name="FatJar STACOMI0.3.4665.jar (experimental)" default="main" basedir="."> 
     11    <!-- this file was created by Fat-Jar Eclipse Plug-in --> 
     12    <!-- the ANT-Export is in a very early stage, so this --> 
     13    <!-- is only experimental, ANT 1.6 or above is        --> 
     14    <!-- required, feedback is always welcome:            --> 
     15    <!--       http://sourceforge.net/projects/fjep       --> 
     16    <!-- uncomment the following lines if using ANT outside Eclipse --> 
     17    <!-- 
     18        <property name="fjepPath" value="reference:file:plugins/net.sf.fjep.fatjar_0.0.31.jarfatjar.jar"/> 
     19        <taskdef name="fatjar.build" classname="net.sf.fjep.anttask.FJBuildTask" classpath="${fjepPath}"/> 
     20        <typedef name="fatjar.manifest" classname="net.sf.fjep.anttask.FJManifestType" classpath="${fjepPath}"/> 
     21        <typedef name="fatjar.exclude" classname="net.sf.fjep.anttask.FJExcludeType" classpath="${fjepPath}"/> 
     22        <typedef name="fatjar.jarsource" classname="net.sf.fjep.anttask.FJJarSourceType" classpath="${fjepPath}"/> 
     23        <typedef name="fatjar.filesource" classname="net.sf.fjep.anttask.FJFileSourceType" classpath="${fjepPath}"/> 
     24    --> 
     25    <!-- uncomment the above lines to use ANT outside of Eclipse --> 
     26    <target name="main"> 
     27        <fatjar.build onejar="true" output="STACOMI0.3.4665.jar"> 
     28            <fatjar.manifest mainclass="commun.LoginWindow"/> 
     29            <fatjar.filesource path="E:\workspace\StacomiJAVA0.3" relpath=""> 
     30                <fatjar.exclude relpath=".apt_generated/"/> 
     31                <fatjar.exclude relpath=".settings/"/> 
     32                <fatjar.exclude relpath=".svn/"/> 
     33                <fatjar.exclude relpath="doc/"/> 
     34                <fatjar.exclude relpath="out/"/> 
     35                <fatjar.exclude relpath="sql/"/> 
     36                <fatjar.exclude relpath="UML/"/> 
     37            </fatjar.filesource> 
     38            <fatjar.jarsource file="E:\workspace\StacomiJAVA0.3\jaxen-1.1.1\jaxen-1.1.1.jar" relpath=""/> 
     39            <fatjar.jarsource file="E:\workspace\StacomiJAVA0.3\dom4j-1.6.1\dom4j-1.6.1.jar" relpath=""/> 
     40            <fatjar.jarsource file="E:\workspace\StacomiJAVA0.3\postgresql-8.4-702.jdbc4.jar" relpath=""/> 
     41        </fatjar.build> 
     42    </target> 
     43</project> 
     44}}}