ilscipio/scipio-erp

View on GitHub
framework/resources/templates/theme/build.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8"?>

<project name="SCIPIO ERP - @component-resource-name@ Component" default="build" basedir=".">

    <!-- SCIPIO: NOTE: Default target ("build", above) currently controls compilation behavior (may improve in future);
        for source compilation you must create a "src" folder and change above to default="jar" -->

    <import file="../../commontheme.xml"/>

    <!-- ================================================================== -->
    <!-- Initialization of all property settings                            -->
    <!-- ================================================================== -->

    <property environment="env"/>
    <property name="desc" value="@component-resource-name@ Theme"/>
    <property name="name" value="@component-name@"/>


    <filelist dir="." id="component.build.dependencies">
        <file name="../base" />
    </filelist>

    <target name="build" depends="check-lib-update">
        <!-- echo message="[build] ========== Building @component-resource-name@ Theme ==========" />
        <echo message="[build] ========== Done Building @component-resource-name@ Theme ==========" /-->
    </target>
</project>