Skip to content

Commit

Permalink
Added default targets to run when no target is specified (performs a …
Browse files Browse the repository at this point in the history
…clean and build instead of just a build)
  • Loading branch information
Laurent Goderre committed Jun 14, 2012
1 parent 55eb543 commit f76adaa
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 6 deletions.
4 changes: 3 additions & 1 deletion build.xml
@@ -1,8 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="wet" default="build" basedir=".">
<project name="wet" default="default" basedir=".">
<description>Web Experience Toolkit</description>
<property file="build.properties"/>

<target name="default" depends="clean,build" description="Performs a Cleand and Build when calling ant without any target"></target>

<target name="build" depends="">
<echo level="info">
---Building jQuery Integration project---
Expand Down
4 changes: 3 additions & 1 deletion src/base/build.xml
@@ -1,9 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="base" default="build" basedir=".">
<project name="base" default="default" basedir=".">
<description>WET-BOEW Base CSS</description>

<property file="build.properties"/>
<import file="build-tasks.xml"/>

<target name="default" depends="clean,build" description="Performs a Clean and Build when calling ant without any target"></target>

<target name="build" description="" depends="build-jar, compile.sass" />

Expand Down
4 changes: 3 additions & 1 deletion src/grids/build.xml
@@ -1,10 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="grids" default="build" basedir=".">
<project name="grids" default="default" basedir=".">
<description>CSS Grid System project</description>

<property file="build.properties"/>
<import file="build-tasks.xml"/>

<target name="default" depends="clean,build" description="Performs a Clean and Build when calling ant without any target"></target>

<target name="build" description="" depends="build-jar, -init, -minify" />

<!-- Include jruby + gems (compass + sass + zengrids) -->
Expand Down
4 changes: 3 additions & 1 deletion src/js/build.xml
@@ -1,10 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="jquery.core" default="build" basedir=".">
<project name="jquery.core" default="default" basedir=".">
<description>Web Experience Toolkit jQuery Integration project</description>

<property file="build.properties"/>
<import file="build-tasks.xml"/>

<target name="default" depends="clean,build" description="Performs a Clean and Build when calling ant without any target"></target>

<target name="build" description="" depends="build-jar, -init, -minify" />

<!-- Include jruby + gems (compass + sass + zengrids) -->
Expand Down
4 changes: 3 additions & 1 deletion src/theme-gcwu-fegc/build.xml
@@ -1,10 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="theme-gcwu-fegc" default="build" basedir=".">
<project name="theme-gcwu-fegc" default="default" basedir=".">
<description>WET-BOEW GC Web Usability Theme</description>

<property file="build.properties"/>
<import file="build-tasks.xml"/>

<target name="default" depends="clean,build" description="Performs a Clean and Build when calling ant without any target"></target>

<target name="build" description="" depends="build-jar, -init, -minify" />

<!-- Include jruby + gems (compass + sass + zengrids) -->
Expand Down
4 changes: 3 additions & 1 deletion src/theme-gcwu-intranet/build.xml
@@ -1,10 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="theme-gcwu-intranet" default="build" basedir=".">
<project name="theme-gcwu-intranet" default="default" basedir=".">
<description>WET-BOEW GC Web Usability Theme Intranet</description>

<property file="build.properties"/>
<import file="build-tasks.xml"/>

<target name="default" depends="clean,build" description="Performs a Clean and Build when calling ant without any target"></target>

<target name="build" description="" depends="build-jar, compile.sass" />

<!-- Include jruby + gems (compass + sass + zengrids) -->
Expand Down
Binary file added test/thumbnail.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f76adaa

Please sign in to comment.