This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <project default="all" basedir="../"> | |
| <!-- | |
| Define an environment variable pointing to JMETER folder or change this | |
| --> | |
| <property environment="env"/> | |
| <property name="jmeter-tools" location="${basedir}/tools/jmeter"/> | |
| <property name="jmeter-home" location="xxx/Downloads/apache-jmeter-2.8"/> | |
| <!-- | |
| ant-jmeter.jar comes with jmeter, be sure this is the release you have | |
| --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This XML file does not appear to have any style information associated with it. The document tree is shown below. | |
| <!-- | |
| @see:http://agile.dzone.com/news/continuous-integration-php | |
| --> | |
| <project name="XXX/Jenkins" default="build" basedir="."> | |
| <!-- $Id: build.xml 102 2012-01-19 14:39:10Z abtris $ --> | |
| <property name="output" location="${basedir}/build/"/> | |
| <property name="src" location="${basedir}/application/"/> | |
| <property name="basedir" value="."/> | |
| <!-- Clean dirs --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This XML file does not appear to have any style information associated with it. The document tree is shown below. | |
| <project name="XXXActivity" default="help"> | |
| <!-- | |
| The local.properties file is created and updated by the 'android' tool. | |
| It contains the path to the SDK. It should *NOT* be checked into | |
| Version Control Systems. | |
| --> | |
| <property file="local.properties"/> | |
| <!-- | |
| The ant.properties file can be created by you. It is only edited by the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- | |
| This is intended to be a simple build file, created a suggestion for the necessary steps need to utilize the FlexUnit4 Ant task. | |
| For the most detail when running this build, call "ant -v clean package". The build uses a simple lifecycle of: | |
| clean->init->compile->test->package | |
| The end goal is to produce a zip of a website you could deploy for your application. This build is not intended to be an example | |
| for how to use Ant or the Flex SDK Ant tasks. This is just one possible way to utilize the FlexUnit4 Ant tasks. | |
| --> | |
| <project name="XXX_Flex_UnitTest" basedir="." default="test"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <project name="XXX_Flex_PMD" | |
| default="flexPmdWithCustomRuleset"> | |
| <description> | |
| Example Of Flex PMD | |
| </description> | |
| <property name="projecthome" | |
| value="${basedir}"/> | |
| <property name="flexpmd.version" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <project name="XXX_Flex_Metrics" | |
| default="run"> | |
| <description> | |
| Example Of Flex Metrics | |
| </description> | |
| <property name="projecthome" | |
| value="${basedir}"/> | |
| <property name="flexMetrics.version" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <project name="XXX_Flex_CPD" | |
| default="run"> | |
| <description> | |
| Example Of Flex CPD | |
| </description> | |
| <property name="projecthome" | |
| value="${basedir}"/> | |
| <property name="flexcpd.version" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <project name="GODPAPER_ASDOC" | |
| basedir="." | |
| default="docs"> | |
| <property name="FLEX_HOME" | |
| value="C:\Software\FLEX\sdks\4.6.0"/> | |
| <property name="OUTPUT_DIR" | |
| value="${basedir}/target/asdoc"/> | |
| <taskdef resource="flexTasks.tasks" | |
| classpath="${FLEX_HOME}/ant/lib/flexTasks.jar"/> | |
| <property name="flexlib" location="${FLEX_HOME}/frameworks"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <!-- myMXMLCBuild.xml --> | |
| <project name="XXX_Flex_Compile" | |
| basedir="." | |
| default="main"> | |
| <property name="FLEX_HOME" | |
| value="C:\Flex\sdks\flex_sdk_3.5.0_code_coverage"/> | |
| <property name="TARGET_PLAYER" | |
| value="11.3.0"/> | |
| <property name="APP_ROOT" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!--@see:http://agile.dzone.com/news/continuous-integration-php --> | |
| <project name="AutoPhotobookContinuousIntegrationInPHP/Jenkins" | |
| default="build" basedir="."> | |
| <!-- $Id: build.xml 102 2012-01-19 14:39:10Z abtris $ --> | |
| <property name="output" location="${basedir}/build/" /> | |
| <property name="src" location="${basedir}/application/" /> | |
| <property name="basedir" value="." /> | |
| <!-- Clean dirs --> | |
| <target name="clean"> |