Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
titleExcerpt from build.xml
<?xml version="1.0" encoding="utf-8"?>
<project name="SmartComponent Library" default="SmartComponentLibrary" basedir=".">

	<description>SmartComponent Library</description>

    <property environment="env" />
    <property file="build/build.props" />

	<!-- Définition des tâches externes -->
    <taskdef resource="PCT.properties" classpath="/Progress/PCT116/ant/lib/PCT.jar" />
    <typedef resource="types.properties" classpath="/Progress/PCT116/ant/lib/PCT.jar" />  
    <taskdef resource="extras115.properties" classpath="/Progress/PCT116/ant/lib/PCT.jar" /> 
    <import file="build/smartcomponents.xml"/>
    <import file="build/smartcomponents-support.xml"/>
    <import file="Consultingwerk/Studio/ExtractClassAnnotations/extract-class-annotations.xml"/>
	
    <!-- For use as an Eclipse ANT builder with the -DbuildFiles={build_files} parameter -->	
    <target name="ExtractClassAnnotationsBuilder">
        <extractClassAnnotations directory="."
                                 fileMask="*BusinessEntity.cls"
                                 overwriteWriteProtected="true"
                                 excludeAnnotations="@Test,@TestIgnore,@BusinessEntityGenerator"
                                 verbose="true" 
                                 buildFiles="${buildFiles}" />
    </target> 
</project>

...