| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project basedir="./../../../../." name="STRUCTURE" default="default"
- xmlns:default_db__x3A__STRUCTURE="https://biuro.biall-net.pl/wfs/default_db/table/STRUCTURE.xsd"
- >
-
- <include file="../../build.ant-object.xml" as="ant-object"/>
- <description>2019 do podstawowych akcji triggerowych i porzadku</description>
-
-
-
- <property name="default_db__x3A__STRUCTURE.basedir" location="${default_db.ant-object.basedir}/default_db.STRUCTURE/STRUCTURE"/>
- <property name="default_db__x3A__STRUCTURE.targetNamespace" value="https://biuro.biall-net.pl/wfs/default_db/table/STRUCTURE.xsd"/>
-
- <property name="default_db__x3A__STRUCTURE.STRUCTURE.xsl" location="${default_db__x3A__STRUCTURE.basedir}/STRUCTURE.xsl"/>
-
-
-
- <target name="validate.basedir">
-
- <condition property="default_db__x3A__STRUCTURE.basedir.validate" value="default_db__x3A__STRUCTURE.basedir.validate - OK">
- <available file="${default_db__x3A__STRUCTURE.basedir}"/>
- </condition>
- <fail unless="default_db__x3A__STRUCTURE.basedir.validate">Incorrect default_db__x3A__STRUCTURE.basedir = ${default_db__x3A__STRUCTURE.basedir}</fail>
- <echo>
- #12 $default_db__x3A__STRUCTURE.basedir.validate = ${default_db__x3A__STRUCTURE.basedir.validate}
- </echo>
-
- </target>
-
- <macrodef name="available">
- <element name="available"/>
- <attribute name="file"/>
- <sequential>
- <local name="temp.available.validate"/>
- <condition property="temp.available.validate" value="@{file} - OK EXISTS">
- <available file="@{file}"/>
- </condition>
- <fail unless="temp.available.validate">
- #14 BRAK OCZEKIWANEGO PLIKU @{file}
- </fail>
- </sequential>
- </macrodef>
-
-
-
-
- <extension-point name="default" depends="validate.basedir"/>
-
- </project>
|