Creating a master project for all examples
authorJaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 16:40:49 +0200
changeset 262e59755da1aa6
parent 261 3df7beca6fd8
child 263 7e8e995065c5
Creating a master project for all examples
samples/build.xml
samples/nbproject/project.xml
     1.1 --- a/samples/build.xml	Sat Jun 14 13:14:12 2008 +0200
     1.2 +++ b/samples/build.xml	Sat Jun 14 16:40:49 2008 +0200
     1.3 @@ -3,6 +3,7 @@
     1.4      <property name="samples.dir" location="${ant.file.samples}/.."/>
     1.5      <dirset id="examples" dir="${samples.dir}">
     1.6          <include name="**/nbproject"/>
     1.7 +        <exclude name="nbproject"/>
     1.8          <exclude name="apifest1/day3-intermezzo/**"/>
     1.9          <exclude name="apifest1/infrastructure/testing-template/**"/>
    1.10      </dirset>
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/samples/nbproject/project.xml	Sat Jun 14 16:40:49 2008 +0200
     2.3 @@ -0,0 +1,48 @@
     2.4 +<?xml version="1.0" encoding="UTF-8"?>
     2.5 +<project xmlns="http://www.netbeans.org/ns/project/1">
     2.6 +    <type>org.netbeans.modules.ant.freeform</type>
     2.7 +    <configuration>
     2.8 +        <general-data xmlns="http://www.netbeans.org/ns/freeform-project/1">
     2.9 +            <!-- Do not use Project Properties customizer when editing this file manually. -->
    2.10 +            <name>Samples for API Design Book</name>
    2.11 +            <properties/>
    2.12 +            <ide-actions>
    2.13 +                <action name="build">
    2.14 +                    <target>build</target>
    2.15 +                </action>
    2.16 +                <action name="clean">
    2.17 +                    <target>clean</target>
    2.18 +                </action>
    2.19 +                <action name="javadoc">
    2.20 +                    <target>sources</target>
    2.21 +                </action>
    2.22 +                <action name="run">
    2.23 +                    <target>test</target>
    2.24 +                </action>
    2.25 +                <action name="test">
    2.26 +                    <target>test</target>
    2.27 +                </action>
    2.28 +                <action name="rebuild">
    2.29 +                    <target>clean</target>
    2.30 +                    <target>build</target>
    2.31 +                </action>
    2.32 +            </ide-actions>
    2.33 +            <view>
    2.34 +                <items>
    2.35 +                    <source-file>
    2.36 +                        <location>build.xml</location>
    2.37 +                    </source-file>
    2.38 +                </items>
    2.39 +                <context-menu>
    2.40 +                    <ide-action name="build"/>
    2.41 +                    <ide-action name="rebuild"/>
    2.42 +                    <ide-action name="clean"/>
    2.43 +                    <ide-action name="javadoc"/>
    2.44 +                    <ide-action name="run"/>
    2.45 +                    <ide-action name="test"/>
    2.46 +                </context-menu>
    2.47 +            </view>
    2.48 +        </general-data>
    2.49 +        <java-data xmlns="http://www.netbeans.org/ns/freeform-project-java/1"/>
    2.50 +    </configuration>
    2.51 +</project>