Put files from release551 branch into trunk. before_merge_navigation_feb222007b synced_551
authorads@netbeans.org
Wed, 21 Feb 2007 11:45:04 +0000
changeset 501ca52e22dabb
parent 49 f4b0ffbe68eb
child 51 01b790786095
Put files from release551 branch into trunk.
bpel.project/antsrc/org/netbeans/modules/bpel/project/antlib.xml
bpel.project/build.xml
bpel.project/manifest.mf
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/bpel.project/antsrc/org/netbeans/modules/bpel/project/antlib.xml	Wed Feb 21 11:45:04 2007 +0000
     1.3 @@ -0,0 +1,24 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<!--
     1.6 + The contents of this file are subject to the terms of the Common Development
     1.7 + and Distribution License (the License). You may not use this file except in
     1.8 + compliance with the License.
     1.9 + 
    1.10 + You can obtain a copy of the License at http://www.netbeans.org/cddl.html
    1.11 + or http://www.netbeans.org/cddl.txt.
    1.12 + 
    1.13 + When distributing Covered Code, include this CDDL Header Notice in each file
    1.14 + and include the License file at http://www.netbeans.org/cddl.txt.
    1.15 + If applicable, add the following below the CDDL Header, with the fields
    1.16 + enclosed by brackets [] replaced by your own identifying information:
    1.17 + "Portions Copyrighted [year] [name of copyright owner]"
    1.18 + 
    1.19 + The Original Software is NetBeans. The Initial Developer of the Original
    1.20 + Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
    1.21 + Microsystems, Inc. All Rights Reserved.
    1.22 +-->
    1.23 + <antlib>
    1.24 +        <typedef name="BpelProjectJBIGen" classname="org.netbeans.modules.bpel.project.anttasks.IDEGenerateJBIDescriptor"/>
    1.25 +        <typedef name="BpelProjectValidate" classname="org.netbeans.modules.bpel.project.anttasks.IDEValidateBPELProject"/>
    1.26 +        
    1.27 + </antlib>
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/bpel.project/build.xml	Wed Feb 21 11:45:04 2007 +0000
     2.3 @@ -0,0 +1,47 @@
     2.4 +<?xml version="1.0" encoding="UTF-8"?>
     2.5 +<!--
     2.6 + The contents of this file are subject to the terms of the Common Development
     2.7 + and Distribution License (the License). You may not use this file except in
     2.8 + compliance with the License.
     2.9 + 
    2.10 + You can obtain a copy of the License at http://www.netbeans.org/cddl.html
    2.11 + or http://www.netbeans.org/cddl.txt.
    2.12 + 
    2.13 + When distributing Covered Code, include this CDDL Header Notice in each file
    2.14 + and include the License file at http://www.netbeans.org/cddl.txt.
    2.15 + If applicable, add the following below the CDDL Header, with the fields
    2.16 + enclosed by brackets [] replaced by your own identifying information:
    2.17 + "Portions Copyrighted [year] [name of copyright owner]"
    2.18 + 
    2.19 + The Original Software is NetBeans. The Initial Developer of the Original
    2.20 + Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
    2.21 + Microsystems, Inc. All Rights Reserved.
    2.22 +-->
    2.23 +<project name="org.netbeans.modules.bpel.project" default="netbeans" basedir=".">
    2.24 +    <description>Builds, tests, and runs the project org.netbeans.modules.bpel.project.</description>
    2.25 +    <import file="nbproject/build-impl.xml"/>
    2.26 +
    2.27 +    <target name="ant-extra" depends="init">
    2.28 +        <mkdir dir="build/antclasses"/>
    2.29 +        <javac srcdir="antsrc" destdir="build/antclasses" source="1.5" debug="true" deprecation="true">
    2.30 +            <classpath>
    2.31 +                <path refid="cp"/>
    2.32 +                <pathelement location="${harness.dir}/../ide7/ant/lib/ant.jar"/>
    2.33 +                <pathelement location="${cluster}/${module.jar}"/>
    2.34 +            </classpath>
    2.35 +        </javac>
    2.36 +       <copy todir="build/antclasses">
    2.37 +         <fileset dir="antsrc">
    2.38 +           <include name="**/*.xml"/>
    2.39 +         </fileset>
    2.40 +       </copy>
    2.41 +   
    2.42 +       <mkdir dir="${cluster}/ant/nblib/"/>
    2.43 +
    2.44 +       <jar jarfile="${cluster}/ant/nblib/org-netbeans-modules-bpel-project.jar" compress="false">
    2.45 +         <fileset dir="build/antclasses"/>
    2.46 +       </jar>
    2.47 +    </target>
    2.48 +
    2.49 +    <target name="netbeans-extra" depends="ant-extra"/>
    2.50 +</project>
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/bpel.project/manifest.mf	Wed Feb 21 11:45:04 2007 +0000
     3.3 @@ -0,0 +1,6 @@
     3.4 +Manifest-Version: 1.0
     3.5 +OpenIDE-Module: org.netbeans.modules.bpel.project
     3.6 +OpenIDE-Module-Layer: org/netbeans/modules/bpel/project/resources/layer.xml
     3.7 +OpenIDE-Module-Localizing-Bundle: org/netbeans/modules/bpel/project/resources/Bundle.properties
     3.8 +OpenIDE-Module-Specification-Version: 1.1
     3.9 +