| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project basedir="." name="p5build.SYSTEM" default="checkos"
- xmlns:p5build_SE="http://biuro.biall-net.pl/build_SE.xsd"
- >
-
-
-
- <include file="build_SE_basedir/build.p5build_SE.SYSTEM.xml" optional="true"/>
- <!--<include file="build.p5build.PRODUCT.xml" optional="true"/>-->
-
-
- <property name="p5build.SYSTEM.StandardOutPath" location="${p5build_SE.SYSTEM.StandardOutPath}/p5build.log"/>
- <property name="p5build.SYSTEM.StandardErrorPath" location="${p5build_SE.SYSTEM.StandardErrorPath}/p5build.log"/>
-
- <property name="Shared_Git_Root" location="../../../"/> <!-- do ustalenia gdzie trzymamy wszystkie repozytoria na serwerze -->
-
-
- <property name="remote.SE" location="${Shared_Git_Root}/se/SE"/>
- <property name="remote" location="${Shared_Git_Root}/se/SE/schema"/>
-
- <property name="p5build.remote.SE" location="${remote.SE}"/>
- <property name="p5build.remote" location="${remote}"/>
-
-
- <target name="checkos">
- <echo message="OS Name is: ${os.name}" />
- <echo message="OS Architecture is: ${os.arch}" />
- <echo message="OS Version is: ${os.version}" />
-
- <condition property="p5build.isWindows">
- <os family="windows" />
- </condition>
-
- <condition property="p5build.isLinux">
- <os family="unix" />
- </condition>
- <condition property="p5build.isMac">
- <os family="mac" />
- </condition>
-
- </target>
-
-
-
- </project>
|