Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion upstream
Submodule upstream updated 166 files
14 changes: 7 additions & 7 deletions versions/9.1.0/basics/task-based-builds.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,32 +23,32 @@ Take this example from the
<description>
simple example build file
</description>
<!-- set global properties for this build -->
{/* set global properties for this build */}
<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="dist" location="dist"/>

<target name="init">
<!-- Create the time stamp -->
{/* Create the time stamp */}
<tstamp/>
<!-- Create the build directory structure used by compile -->
{/* Create the build directory structure used by compile */}
<mkdir dir="${build}"/>
</target>
<target name="compile" depends="init"
description="compile the source">
<!-- Compile the Java code from ${src} into ${build} -->
{/* Compile the Java code from ${src} into ${build} */}
<javac srcdir="${src}" destdir="${build}"/>
</target>
<target name="dist" depends="compile"
description="generate the distribution">
<!-- Create the distribution directory -->
{/* Create the distribution directory */}
<mkdir dir="${dist}/lib"/>
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
{/* Put everything in ${build} into the MyProject-${DSTAMP}.jar file */}
<jar jarfile="${dist}/lib/MyProject-${DSTAMP}.jar" basedir="${build}"/>
</target>
<target name="clean"
description="clean up">
<!-- Delete the ${build} and ${dist} directory trees -->
{/* Delete the ${build} and ${dist} directory trees */}
<delete dir="${build}"/>
<delete dir="${dist}"/>
</target>
Expand Down
Binary file added versions/9.1.0/community/images/Bitrise.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added versions/9.1.0/community/images/Gradle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added versions/9.1.0/community/images/Linkedin-Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions versions/9.1.0/community/images/Lucid_Software-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
60 changes: 60 additions & 0 deletions versions/9.1.0/community/images/acqio_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added versions/9.1.0/community/images/aspect-logo-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added versions/9.1.0/community/images/bitrise-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading