IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

NetBeans Java Discussion :

Créer une target d'exécution


Sujet :

NetBeans Java

  1. #1
    Membre averti Avatar de Razgriz
    Profil pro
    Professeur / chercheur en informatique / mathématiques
    Inscrit en
    Avril 2006
    Messages
    391
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations professionnelles :
    Activité : Professeur / chercheur en informatique / mathématiques

    Informations forums :
    Inscription : Avril 2006
    Messages : 391
    Points : 306
    Points
    306
    Par défaut Créer une target d'exécution
    Salut à tous,

    voilà j'ai dans mon projet une classe éxécutable qui n'est pas LA main de mon projet, je voudrais créer une target ant pour exécuter cette classe, je fais donc :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    <target name="createdb" description="Cree une base de donnees test" depends="init,compile-single">
            <j2seproject1:java classname="main.ManagSysCreator"/>
    </target>
    Mais ça ne marche pas, il me dit que je dois selectionner un fichier dans l'IDE...
    Comment faire donc, si je fais clic droit sur la target createdb (ou que je la lance en ligne de commande) pour qu'il exécute la classe main.ManagSysCreator ?


    Merci d'avance.

  2. #2
    Membre averti Avatar de Razgriz
    Profil pro
    Professeur / chercheur en informatique / mathématiques
    Inscrit en
    Avril 2006
    Messages
    391
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations professionnelles :
    Activité : Professeur / chercheur en informatique / mathématiques

    Informations forums :
    Inscription : Avril 2006
    Messages : 391
    Points : 306
    Points
    306
    Par défaut
    Bon alors personne ne sait? Personne n'a jamais fait ça?

  3. #3
    Expert éminent sénior


    Profil pro
    Inscrit en
    Mai 2003
    Messages
    3 240
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 3 240
    Points : 11 101
    Points
    11 101
    Par défaut
    Clic droit sur la classe pour l'exécuter. Ca marche.
    A moins que tu ai des paramètres à passer ?

    Vincent

  4. #4
    Membre averti Avatar de Razgriz
    Profil pro
    Professeur / chercheur en informatique / mathématiques
    Inscrit en
    Avril 2006
    Messages
    391
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations professionnelles :
    Activité : Professeur / chercheur en informatique / mathématiques

    Informations forums :
    Inscription : Avril 2006
    Messages : 391
    Points : 306
    Points
    306
    Par défaut
    Oui je sais comment lancer une classe lol.

    Le problème n'est pas là :
    Imaginons je suis en ligne de comande dans le répertoire de mon projet.

    Si je tape ant run, ça lance le projet.

    La target c'est run.

    Je voudrais créer une target, par exemple createdb, qui lorsque je la lance en faisant ant createdb m'exécute une classe de mon projet.

    Comment faire? Que mettre dans le build.xml / build-impl.xml pour que ça fonctionne?

  5. #5
    Expert éminent sénior


    Profil pro
    Inscrit en
    Mai 2003
    Messages
    3 240
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 3 240
    Points : 11 101
    Points
    11 101
    Par défaut
    Citation Envoyé par Razgriz
    Oui je sais comment lancer une classe lol.

    Le problème n'est pas là :
    Imaginons je suis en ligne de commande dans le répertoire de mon projet.

    Si je tape ant run, ça lance le projet.

    La target c'est run.

    Je voudrais créer une target, par exemple createdb, qui lorsque je la lance en faisant ant createdb m'exécute une classe de mon projet.

    Comment faire? Que mettre dans le build.xml / build-impl.xml pour que ça fonctionne?
    Deux possibilités:
    1. Tu ne mets rien du tout.
    En effet, tout est déjà dans le build, vu que NetBeans lui-même utilise le build pour exécuter ta classe.
    Tu tapes
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    ant run-single -Drun.class=main.ManagSysCreator
    Ca devrait suffire.
    L'important, c'est que run.class soit bien défini.

    2. Tu crées ta target dans le build.xml (pas le build-impl.xml), mais en mettant ceci
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
     
       <target name="coucou">
           <antcall target="run-single">
               <param name="run.class" value="main.Coucou"/>
           </antcall>
       </target>
    Que t'appelera par ant coucou

    Vincent

  6. #6
    Membre averti Avatar de Razgriz
    Profil pro
    Professeur / chercheur en informatique / mathématiques
    Inscrit en
    Avril 2006
    Messages
    391
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations professionnelles :
    Activité : Professeur / chercheur en informatique / mathématiques

    Informations forums :
    Inscription : Avril 2006
    Messages : 391
    Points : 306
    Points
    306
    Par défaut
    Ni la première ni la deuxième solution ne fonctionnent, j'ai le message d'erreur suivant :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    C:\Romain\Projets Informatique\ManagSys\build.xml:76: The following error occurred while executing this line:
    C:\Romain\Projets Informatique\ManagSys\nbproject\build-impl.xml:260: Must select some files in the IDE or set javac.includes
    BUILD FAILED (total time: 0 seconds)
    C'est la solution numéro 2 que je veux exploiter.

    Que faire ?

  7. #7
    Expert éminent sénior


    Profil pro
    Inscrit en
    Mai 2003
    Messages
    3 240
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 3 240
    Points : 11 101
    Points
    11 101
    Par défaut
    Citation Envoyé par Razgriz
    Ni la première ni la deuxième solution ne fonctionnent, j'ai le message d'erreur suivant :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    C:\Romain\Projets Informatique\ManagSys\build.xml:76: The following error occurred while executing this line:
    C:\Romain\Projets Informatique\ManagSys\nbproject\build-impl.xml:260: Must select some files in the IDE or set javac.includes
    BUILD FAILED (total time: 0 seconds)
    C'est la solution numéro 2 que je veux exploiter.

    Que faire ?
    Montre nous ton build.xml et ton build-impl.xml

  8. #8
    Membre averti Avatar de Razgriz
    Profil pro
    Professeur / chercheur en informatique / mathématiques
    Inscrit en
    Avril 2006
    Messages
    391
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations professionnelles :
    Activité : Professeur / chercheur en informatique / mathématiques

    Informations forums :
    Inscription : Avril 2006
    Messages : 391
    Points : 306
    Points
    306
    Par défaut
    voici le build.xml :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
     
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- You may freely edit this file. See commented blocks below for -->
    <!-- some examples of how to customize the build. -->
    <!-- (If you delete it and reopen the project it will be recreated.) -->
    <project name="ManagSys" default="default" basedir=".">
        <description>Builds, tests, and runs the project ManagSys.</description>
        <import file="nbproject/build-impl.xml"/>
        <!--
     
        There exist several targets which are by default empty and which can be 
        used for execution of your tasks. These targets are usually executed 
        before and after some main targets. They are: 
     
          -pre-init:                 called before initialization of project properties
          -post-init:                called after initialization of project properties
          -pre-compile:              called before javac compilation
          -post-compile:             called after javac compilation
          -pre-compile-single:       called before javac compilation of single file
          -post-compile-single:      called after javac compilation of single file
          -pre-compile-test:         called before javac compilation of JUnit tests
          -post-compile-test:        called after javac compilation of JUnit tests
          -pre-compile-test-single:  called before javac compilation of single JUnit test
          -post-compile-test-single: called after javac compilation of single JUunit test
          -pre-jar:                  called before JAR building
          -post-jar:                 called after JAR building
          -post-clean:               called after cleaning build products
     
        (Targets beginning with '-' are not intended to be called on their own.)
     
        Example of inserting an obfuscator after compilation could look like this:
     
            <target name="-post-compile">
                <obfuscate>
                    <fileset dir="${build.classes.dir}"/>
                </obfuscate>
            </target>
     
        For list of available properties check the imported 
        nbproject/build-impl.xml file. 
     
     
        Another way to customize the build is by overriding existing main targets.
        The targets of interest are: 
     
          -init-macrodef-javac:     defines macro for javac compilation
          -init-macrodef-junit:     defines macro for junit execution
          -init-macrodef-debug:     defines macro for class debugging
          -init-macrodef-java:      defines macro for class execution
          -do-jar-with-manifest:    JAR building (if you are using a manifest)
          -do-jar-without-manifest: JAR building (if you are not using a manifest)
          run:                      execution of project 
          -javadoc-build:           Javadoc generation
          test-report:              JUnit report generation
     
        An example of overriding the target for project execution could look like this:
     
            <target name="run" depends="ManagSys-impl.jar">
                <exec dir="bin" executable="launcher.exe">
                    <arg file="${dist.jar}"/>
                </exec>
            </target>
     
        Notice that the overridden target depends on the jar target and not only on 
        the compile target as the regular run target does. Again, for a list of available 
        properties which you can use, check the target you are overriding in the
        nbproject/build-impl.xml file. 
     
        -->
        <target name="createdb">
           <antcall target="run-single">
               <param name="run.class" value="main.ManagSysCreator"/>
           </antcall>
       </target>
     
       <target name="mgsys">
           <antcall target="run-single">
               <param name="run.class" value="main.Main"/>
           </antcall>
       </target>
     
    </project>

  9. #9
    Membre averti Avatar de Razgriz
    Profil pro
    Professeur / chercheur en informatique / mathématiques
    Inscrit en
    Avril 2006
    Messages
    391
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations professionnelles :
    Activité : Professeur / chercheur en informatique / mathématiques

    Informations forums :
    Inscription : Avril 2006
    Messages : 391
    Points : 306
    Points
    306
    Par défaut
    et voici le build-impl.xml (trop longs à deux, affcihe rien si je les mets tous les deux dans le même post) :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
     
    <?xml version="1.0" encoding="UTF-8"?>
     
    <project name="ManagSys-impl" default="default" basedir=".." xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:j2seproject2="http://www.netbeans.org/ns/j2se-project/2" xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:jaxws="http://www.netbeans.org/ns/jax-ws/1">
        <target name="default" depends="test,jar,javadoc" description="Build and test whole project."/>
        <!-- 
        ======================
        INITIALIZATION SECTION 
        ======================
        -->
        <target name="-pre-init">
            <!-- Empty placeholder for easier customization. -->
            <!-- You can override this target in the ../build.xml file. -->
        </target>
        <target name="-init-private" depends="-pre-init">
            <property file="nbproject/private/private.properties"/>
        </target>
        <target name="-init-user" depends="-pre-init,-init-private">
            <property file="${user.properties.file}"/>
            <!-- The two properties below are usually overridden -->
            <!-- by the active platform. Just a fallback. -->
            <property name="default.javac.source" value="1.4"/>
            <property name="default.javac.target" value="1.4"/>
        </target>
        <target name="-init-project" depends="-pre-init,-init-private,-init-user">
            <property file="nbproject/project.properties"/>
        </target>
        <target name="-do-init" depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property">
            <available file="${manifest.file}" property="manifest.available"/>
            <condition property="manifest.available+main.class">
                <and>
                    <isset property="manifest.available"/>
                    <isset property="main.class"/>
                    <not>
                        <equals arg1="${main.class}" arg2="" trim="true"/>
                    </not>
                </and>
            </condition>
            <condition property="manifest.available+main.class+mkdist.available">
                <and>
                    <istrue value="${manifest.available+main.class}"/>
                    <isset property="libs.CopyLibs.classpath"/>
                </and>
            </condition>
            <condition property="have.tests">
                <or>
                    <available file="${test.src.dir}"/>
                </or>
            </condition>
            <condition property="have.sources">
                <or>
                    <available file="${src.dir}"/>
                </or>
            </condition>
            <condition property="netbeans.home+have.tests">
                <and>
                    <isset property="netbeans.home"/>
                    <isset property="have.tests"/>
                </and>
            </condition>
            <condition property="no.javadoc.preview">
                <isfalse value="${javadoc.preview}"/>
            </condition>
            <property name="run.jvmargs" value=""/>
            <property name="javac.compilerargs" value=""/>
            <property name="work.dir" value="${basedir}"/>
            <condition property="no.deps">
                <and>
                    <istrue value="${no.dependencies}"/>
                </and>
            </condition>
            <property name="javac.debug" value="true"/>
            <property name="javadoc.preview" value="true"/>
        </target>
        <target name="-post-init">
            <!-- Empty placeholder for easier customization. -->
            <!-- You can override this target in the ../build.xml file. -->
        </target>
        <target name="-init-check" depends="-pre-init,-init-private,-init-user,-init-project,-do-init">
            <fail unless="src.dir">Must set src.dir</fail>
            <fail unless="test.src.dir">Must set test.src.dir</fail>
            <fail unless="build.dir">Must set build.dir</fail>
            <fail unless="dist.dir">Must set dist.dir</fail>
            <fail unless="build.classes.dir">Must set build.classes.dir</fail>
            <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
            <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
            <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
            <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
            <fail unless="dist.jar">Must set dist.jar</fail>
        </target>
        <target name="-init-macrodef-property">
            <macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1">
                <attribute name="name"/>
                <attribute name="value"/>
                <sequential>
                    <property name="@{name}" value="${@{value}}"/>
                </sequential>
            </macrodef>
        </target>
        <target name="-init-macrodef-javac">
            <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
                <attribute name="srcdir" default="${src.dir}"/>
                <attribute name="destdir" default="${build.classes.dir}"/>
                <attribute name="classpath" default="${javac.classpath}"/>
                <attribute name="debug" default="${javac.debug}"/>
                <element name="customize" optional="true"/>
                <sequential>
                    <javac srcdir="@{srcdir}" destdir="@{destdir}" debug="@{debug}" deprecation="${javac.deprecation}" source="${javac.source}" target="${javac.target}" includeantruntime="false">
                        <classpath>
                            <path path="@{classpath}"/>
                        </classpath>
                        <compilerarg line="${javac.compilerargs}"/>
                        <customize/>
                    </javac>
                </sequential>
            </macrodef>
        </target>
        <target name="-init-macrodef-junit">
            <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
                <attribute name="includes" default="**/*Test.java"/>
                <sequential>
                    <junit showoutput="true" fork="true" dir="${basedir}" failureproperty="tests.failed" errorproperty="tests.failed">
                        <batchtest todir="${build.test.results.dir}">
                            <fileset dir="${test.src.dir}" includes="@{includes}"/>
                        </batchtest>
                        <classpath>
                            <path path="${run.test.classpath}"/>
                        </classpath>
                        <syspropertyset>
                            <propertyref prefix="test-sys-prop."/>
                            <mapper type="glob" from="test-sys-prop.*" to="*"/>
                        </syspropertyset>
                        <formatter type="brief" usefile="false"/>
                        <formatter type="xml"/>
                        <jvmarg line="${run.jvmargs}"/>
                    </junit>
                </sequential>
            </macrodef>
        </target>
        <target name="-init-macrodef-nbjpda">
            <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1">
                <attribute name="name" default="${main.class}"/>
                <attribute name="classpath" default="${debug.classpath}"/>
                <attribute name="stopclassname" default=""/>
                <sequential>
                    <nbjpdastart transport="dt_socket" addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}">
                        <classpath>
                            <path path="@{classpath}"/>
                        </classpath>
                    </nbjpdastart>
                </sequential>
            </macrodef>
            <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1">
                <attribute name="dir" default="${build.classes.dir}"/>
                <sequential>
                    <nbjpdareload>
                        <fileset includes="${fix.includes}*.class" dir="@{dir}"/>
                    </nbjpdareload>
                </sequential>
            </macrodef>
        </target>
        <target name="-init-macrodef-debug">
            <macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3">
                <attribute name="classname" default="${main.class}"/>
                <attribute name="classpath" default="${debug.classpath}"/>
                <element name="customize" optional="true"/>
                <sequential>
                    <java fork="true" classname="@{classname}" dir="${work.dir}">
                        <jvmarg value="-Xdebug"/>
                        <jvmarg value="-Xnoagent"/>
                        <jvmarg value="-Djava.compiler=none"/>
                        <jvmarg value="-Xrunjdwp:transport=dt_socket,address=${jpda.address}"/>
                        <jvmarg line="${run.jvmargs}"/>
                        <classpath>
                            <path path="@{classpath}"/>
                        </classpath>
                        <syspropertyset>
                            <propertyref prefix="run-sys-prop."/>
                            <mapper type="glob" from="run-sys-prop.*" to="*"/>
                        </syspropertyset>
                        <customize/>
                    </java>
                </sequential>
            </macrodef>
        </target>
        <target name="-init-macrodef-java">
            <macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
                <attribute name="classname" default="${main.class}"/>
                <element name="customize" optional="true"/>
                <sequential>
                    <java fork="true" classname="@{classname}" dir="${work.dir}">
                        <jvmarg line="${run.jvmargs}"/>
                        <classpath>
                            <path path="${run.classpath}"/>
                        </classpath>
                        <syspropertyset>
                            <propertyref prefix="run-sys-prop."/>
                            <mapper type="glob" from="run-sys-prop.*" to="*"/>
                        </syspropertyset>
                        <customize/>
                    </java>
                </sequential>
            </macrodef>
        </target>
        <target name="-init-presetdef-jar">
            <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
                <jar jarfile="${dist.jar}" compress="${jar.compress}">
                    <j2seproject1:fileset dir="${build.classes.dir}"/>
                </jar>
            </presetdef>
        </target>
        <target name="init" depends="-pre-init,-init-private,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-junit,-init-macrodef-nbjpda,-init-macrodef-debug,-init-macrodef-java,-init-presetdef-jar"/>
        <!--
        ===================
        COMPILATION SECTION
        ===================
        -->
        <target name="deps-jar" depends="init" unless="no.deps"/>
        <target name="-pre-pre-compile" depends="init,deps-jar">
            <mkdir dir="${build.classes.dir}"/>
        </target>
        <target name="-pre-compile">
            <!-- Empty placeholder for easier customization. -->
            <!-- You can override this target in the ../build.xml file. -->
        </target>
        <target name="-do-compile" depends="init,deps-jar,-pre-pre-compile,-pre-compile" if="have.sources">
            <j2seproject3:javac/>
            <copy todir="${build.classes.dir}">
                <fileset dir="${src.dir}" excludes="${build.classes.excludes}"/>
            </copy>
        </target>
        <target name="-post-compile">
            <!-- Empty placeholder for easier customization. -->
            <!-- You can override this target in the ../build.xml file. -->
        </target>
        <target name="compile" depends="init,deps-jar,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project."/>
        <target name="-pre-compile-single">
            <!-- Empty placeholder for easier customization. -->
            <!-- You can override this target in the ../build.xml file. -->
        </target>
        <target name="-do-compile-single" depends="init,deps-jar,-pre-pre-compile">
            <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
            <j2seproject3:javac>
                <customize>
                    <patternset includes="${javac.includes}"/>
                </customize>
            </j2seproject3:javac>
        </target>
        <target name="-post-compile-single">
            <!-- Empty placeholder for easier customization. -->
            <!-- You can override this target in the ../build.xml file. -->
        </target>
        <target name="compile-single" depends="init,deps-jar,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single"/>
     
        <!--
        =================
        EXECUTION SECTION
        =================
        -->
        <target name="run" depends="init,compile" description="Run a main class.">
            <j2seproject1:java>
                <customize>
                    <arg line="${application.args}"/>
                </customize>
            </j2seproject1:java>
        </target>
        <target name="run-single" depends="init,compile-single">
            <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
            <j2seproject1:java classname="${run.class}"/>
        </target>
        <!--
        =================
        DEBUGGING SECTION
        =================
        -->
        <target name="-debug-start-debugger" if="netbeans.home" depends="init">
            <j2seproject1:nbjpdastart name="${debug.class}"/>
        </target>
        <target name="-debug-start-debuggee" depends="init,compile">
            <j2seproject3:debug>
                <customize>
                    <arg line="${application.args}"/>
                </customize>
            </j2seproject3:debug>
        </target>
        <target name="debug" if="netbeans.home" depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE."/>
        <target name="-debug-start-debugger-stepinto" if="netbeans.home" depends="init">
            <j2seproject1:nbjpdastart stopclassname="${main.class}"/>
        </target>
        <target name="debug-stepinto" if="netbeans.home" depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee"/>
        <target name="-debug-start-debuggee-single" if="netbeans.home" depends="init,compile-single">
            <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
            <j2seproject3:debug classname="${debug.class}"/>
        </target>
        <target name="debug-single" if="netbeans.home" depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single"/>
        <target name="-pre-debug-fix" depends="init">
            <fail unless="fix.includes">Must set fix.includes</fail>
            <property name="javac.includes" value="${fix.includes}.java"/>
        </target>
        <target name="-do-debug-fix" if="netbeans.home" depends="init,-pre-debug-fix,compile-single">
            <j2seproject1:nbjpdareload/>
        </target>
        <target name="debug-fix" if="netbeans.home" depends="init,-pre-debug-fix,-do-debug-fix"/>
        <!--
        ===============
        JAVADOC SECTION
        ===============
        -->
        <target name="-javadoc-build" depends="init">
            <mkdir dir="${dist.javadoc.dir}"/>
            <javadoc destdir="${dist.javadoc.dir}" source="${javac.source}" notree="${javadoc.notree}" use="${javadoc.use}" nonavbar="${javadoc.nonavbar}" noindex="${javadoc.noindex}" splitindex="${javadoc.splitindex}" author="${javadoc.author}" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}" private="${javadoc.private}" additionalparam="${javadoc.additionalparam}" failonerror="true" useexternalfile="true">
                <classpath>
                    <path path="${javac.classpath}"/>
                </classpath>
                <sourcepath>
                    <pathelement location="${src.dir}"/>
                </sourcepath>
                <packageset dir="${src.dir}" includes="*/**"/>
                <fileset dir="${src.dir}" includes="*.java"/>
            </javadoc>
        </target>
        <target name="-javadoc-browse" if="netbeans.home" unless="no.javadoc.preview" depends="init,-javadoc-build">
            <nbbrowse file="${dist.javadoc.dir}/index.html"/>
        </target>
        <target name="javadoc" depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc."/>
        <!--
        =========================
        JUNIT COMPILATION SECTION
        =========================
        -->
        <target name="-pre-pre-compile-test" if="have.tests" depends="init,compile">
            <mkdir dir="${build.test.classes.dir}"/>
        </target>
        <target name="-pre-compile-test">
            <!-- Empty placeholder for easier customization. -->
            <!-- You can override this target in the ../build.xml file. -->
        </target>
        <target name="-do-compile-test" if="have.tests" depends="init,compile,-pre-pre-compile-test,-pre-compile-test">
            <j2seproject3:javac srcdir="${test.src.dir}" destdir="${build.test.classes.dir}" debug="true" classpath="${javac.test.classpath}"/>
            <copy todir="${build.test.classes.dir}">
                <fileset dir="${test.src.dir}" excludes="**/*.java"/>
            </copy>
        </target>
        <target name="-post-compile-test">
            <!-- Empty placeholder for easier customization. -->
            <!-- You can override this target in the ../build.xml file. -->
        </target>
        <target name="compile-test" depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test"/>
        <target name="-pre-compile-test-single">
            <!-- Empty placeholder for easier customization. -->
            <!-- You can override this target in the ../build.xml file. -->
        </target>
        <target name="-do-compile-test-single" if="have.tests" depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single">
            <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
            <j2seproject3:javac srcdir="${test.src.dir}" destdir="${build.test.classes.dir}" debug="true" classpath="${javac.test.classpath}">
                <customize>
                    <patternset includes="${javac.includes}"/>
                </customize>
            </j2seproject3:javac>
            <copy todir="${build.test.classes.dir}">
                <fileset dir="${test.src.dir}" excludes="**/*.java"/>
            </copy>
        </target>
        <target name="-post-compile-test-single">
            <!-- Empty placeholder for easier customization. -->
            <!-- You can override this target in the ../build.xml file. -->
        </target>
        <target name="compile-test-single" depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single"/>
        <!--
        =======================
        JUNIT EXECUTION SECTION
        =======================
        -->
        <target name="-pre-test-run" if="have.tests" depends="init">
            <mkdir dir="${build.test.results.dir}"/>
        </target>
        <target name="-do-test-run" if="have.tests" depends="init,compile-test,-pre-test-run">
            <j2seproject3:junit/>
        </target>
        <target name="-post-test-run" if="have.tests" depends="init,compile-test,-pre-test-run,-do-test-run">
            <fail if="tests.failed">Some tests failed; see details above.</fail>
        </target>
        <target name="test-report" if="have.tests" depends="init"/>
        <target name="-test-browse" if="netbeans.home+have.tests" depends="init"/>
        <target name="test" depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests."/>
        <target name="-pre-test-run-single" if="have.tests" depends="init">
            <mkdir dir="${build.test.results.dir}"/>
        </target>
        <target name="-do-test-run-single" if="have.tests" depends="init,compile-test-single,-pre-test-run-single">
            <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
            <j2seproject3:junit includes="${test.includes}"/>
        </target>
        <target name="-post-test-run-single" if="have.tests" depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single">
            <fail if="tests.failed">Some tests failed; see details above.</fail>
        </target>
        <target name="test-single" depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test."/>
        <!--
        =======================
        JUNIT DEBUGGING SECTION
        =======================
        -->
        <target name="-debug-start-debuggee-test" if="have.tests" depends="init,compile-test">
            <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
            <j2seproject3:debug classname="junit.textui.TestRunner" classpath="${debug.test.classpath}">
                <customize>
                    <arg line="${test.class}"/>
                </customize>
            </j2seproject3:debug>
        </target>
        <target name="-debug-start-debugger-test" if="netbeans.home+have.tests" depends="init,compile-test">
            <j2seproject1:nbjpdastart name="${test.class}" classpath="${debug.test.classpath}"/>
        </target>
        <target name="debug-test" depends="init,compile-test,-debug-start-debugger-test,-debug-start-debuggee-test"/>
        <target name="-do-debug-fix-test" if="netbeans.home" depends="init,-pre-debug-fix,compile-test-single">
            <j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
        </target>
        <target name="debug-fix-test" if="netbeans.home" depends="init,-pre-debug-fix,-do-debug-fix-test"/>
        <!--
        =========================
        APPLET EXECUTION SECTION
        =========================
        -->
        <target name="run-applet" depends="init,compile-single">
            <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
            <j2seproject1:java classname="sun.applet.AppletViewer">
                <customize>
                    <arg value="${applet.url}"/>
                </customize>
            </j2seproject1:java>
        </target>
        <!--
        =========================
        APPLET DEBUGGING  SECTION
        =========================
        -->
        <target name="-debug-start-debuggee-applet" if="netbeans.home" depends="init,compile-single">
            <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
            <j2seproject3:debug classname="sun.applet.AppletViewer">
                <customize>
                    <arg value="${applet.url}"/>
                </customize>
            </j2seproject3:debug>
        </target>
        <target name="debug-applet" if="netbeans.home" depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet"/>
        <!--
        ===============
        CLEANUP SECTION
        ===============
        -->
        <target name="deps-clean" depends="init" unless="no.deps"/>
        <target name="-do-clean" depends="init">
            <delete dir="${build.dir}"/>
            <delete dir="${dist.dir}"/>
        </target>
        <target name="-post-clean">
            <!-- Empty placeholder for easier customization. -->
            <!-- You can override this target in the ../build.xml file. -->
        </target>
        <target name="clean" depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products."/>
    </project>

    Merci d'avance (j'ai viré la partie sur la construction des jars)

  10. #10
    Expert éminent sénior


    Profil pro
    Inscrit en
    Mai 2003
    Messages
    3 240
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 3 240
    Points : 11 101
    Points
    11 101
    Par défaut
    Je verrai demain

    Vincent

  11. #11
    Membre averti Avatar de Razgriz
    Profil pro
    Professeur / chercheur en informatique / mathématiques
    Inscrit en
    Avril 2006
    Messages
    391
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations professionnelles :
    Activité : Professeur / chercheur en informatique / mathématiques

    Informations forums :
    Inscription : Avril 2006
    Messages : 391
    Points : 306
    Points
    306
    Par défaut
    Ok merci j'attend

  12. #12
    Membre averti Avatar de Razgriz
    Profil pro
    Professeur / chercheur en informatique / mathématiques
    Inscrit en
    Avril 2006
    Messages
    391
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations professionnelles :
    Activité : Professeur / chercheur en informatique / mathématiques

    Informations forums :
    Inscription : Avril 2006
    Messages : 391
    Points : 306
    Points
    306
    Par défaut
    Allô ^^? Y-a-t-il toujours qqn sur mon problème ?

Discussions similaires

  1. Créer une fonction en exécutable
    Par jolona dans le forum VB.NET
    Réponses: 1
    Dernier message: 03/11/2012, 08h56
  2. Méthode pour créer une pause d'exécution en javascript
    Par ephemere dans le forum Général JavaScript
    Réponses: 9
    Dernier message: 07/07/2009, 21h08
  3. Réponses: 3
    Dernier message: 14/04/2007, 18h46
  4. Réponses: 2
    Dernier message: 08/06/2006, 15h49
  5. Créer une fonction mathématique pendant l'exécution
    Par zeprogrameur dans le forum Langage
    Réponses: 5
    Dernier message: 09/07/2004, 11h36

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo