Configure default target for each buildtype

git-svn-id: https://svn.apache.org/repos/asf/incubator/easyant/buildtypes/trunk@1405951 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/build-osgi-bundle-java/src/main/resources/build-osgi-bundle-java.ant b/build-osgi-bundle-java/src/main/resources/build-osgi-bundle-java.ant
index b87fc17..bbf4bb4 100644
--- a/build-osgi-bundle-java/src/main/resources/build-osgi-bundle-java.ant
+++ b/build-osgi-bundle-java/src/main/resources/build-osgi-bundle-java.ant
@@ -46,4 +46,5 @@
     <target name="dist" depends="ivy-publication:publish-ready" description="Produce every artifact to be distributed" />
     <target name="install" depends="ivy-publication:publish-local" description="Install the artifacts into the repository" />
 
-</project>
+    <ea:configure-project defaulttarget="dist"/>
+</project>
\ No newline at end of file
diff --git a/build-std-ant-plugin/src/main/resources/build-std-ant-plugin.ant b/build-std-ant-plugin/src/main/resources/build-std-ant-plugin.ant
index 1cc6663..1822c6e 100644
--- a/build-std-ant-plugin/src/main/resources/build-std-ant-plugin.ant
+++ b/build-std-ant-plugin/src/main/resources/build-std-ant-plugin.ant
@@ -44,4 +44,6 @@
     <!-- additionnal friendtly target names -->
     <target name="dist" depends="ivy-publication:publish-ready" description="Produce every artifact to be distributed" />
     <target name="install" depends="ivy-publication:publish-local" description="Install the artifacts into local repository" />
+
+    <ea:configure-project defaulttarget="dist" />
 </project>
\ No newline at end of file
diff --git a/build-std-groovy/src/main/resources/build-std-groovy.ant b/build-std-groovy/src/main/resources/build-std-groovy.ant
index 87c3d3b..03481d2 100644
--- a/build-std-groovy/src/main/resources/build-std-groovy.ant
+++ b/build-std-groovy/src/main/resources/build-std-groovy.ant
@@ -50,4 +50,6 @@
     <!-- additionnal friendtly target names -->
     <target name="dist" depends="ivy-publication:publish-ready" description="Produce every artifact to be distributed" />
     <target name="install" depends="ivy-publication:publish-local" description="Install the artifacts into local repository" />
+
+    <ea:configure-project defaulttarget="dist"/>
 </project>
\ No newline at end of file
diff --git a/build-std-java/src/main/resources/build-std-java.ant b/build-std-java/src/main/resources/build-std-java.ant
index 9bf64a4..ed38698 100644
--- a/build-std-java/src/main/resources/build-std-java.ant
+++ b/build-std-java/src/main/resources/build-std-java.ant
@@ -50,4 +50,6 @@
     <!-- additionnal friendtly target names -->
     <target name="dist" depends="ivy-publication:publish-ready" description="Produce every artifact to be distributed" />
     <target name="install" depends="ivy-publication:publish-local" description="Install the artifacts into local repository" />
+
+    <ea:configure-project defaulttarget="dist"/>
 </project>
\ No newline at end of file
diff --git a/build-std-scala/src/main/resources/build-std-scala.ant b/build-std-scala/src/main/resources/build-std-scala.ant
index 1b94271..bac26d4 100644
--- a/build-std-scala/src/main/resources/build-std-scala.ant
+++ b/build-std-scala/src/main/resources/build-std-scala.ant
@@ -50,4 +50,6 @@
     <!-- additionnal friendtly target names -->
     <target name="dist" depends="ivy-publication:publish-ready" description="Produce every artifact to be distributed" />
     <target name="install" depends="ivy-publication:publish-local" description="Install the artifacts into local repository" />
+
+    <ea:configure-project defaulttarget="dist"/>
 </project>
\ No newline at end of file
diff --git a/build-std-skeleton/src/main/resources/build-std-skeleton.ant b/build-std-skeleton/src/main/resources/build-std-skeleton.ant
index 12b4eac..d76b64d 100644
--- a/build-std-skeleton/src/main/resources/build-std-skeleton.ant
+++ b/build-std-skeleton/src/main/resources/build-std-skeleton.ant
@@ -41,4 +41,6 @@
     <!-- additionnal friendtly target names -->
     <target name="dist" depends="ivy-publication:publish-ready" description="Produce every artifact to be distributed" />
     <target name="install" depends="ivy-publication:publish-local" description="Install the artifacts into local repository" />
+
+    <ea:configure-project defaulttarget="dist" />
 </project>
\ No newline at end of file
diff --git a/build-webapp-java/src/main/resources/build-webapp-java.ant b/build-webapp-java/src/main/resources/build-webapp-java.ant
index 238e824..6b9ae15 100644
--- a/build-webapp-java/src/main/resources/build-webapp-java.ant
+++ b/build-webapp-java/src/main/resources/build-webapp-java.ant
@@ -50,4 +50,6 @@
     <!-- additionnal friendtly target names -->
     <target name="dist" depends="ivy-publication:publish-ready" description="Produce every artifact to be distributed" />
     <target name="install" depends="ivy-publication:publish-local" description="Install the artifacts into local repository" />
+
+    <ea:configure-project defaulttarget="dist"/>
 </project>
\ No newline at end of file
diff --git a/meta-build/src/main/resources/meta-build.ant b/meta-build/src/main/resources/meta-build.ant
index a5d2c02..37616b6 100644
--- a/meta-build/src/main/resources/meta-build.ant
+++ b/meta-build/src/main/resources/meta-build.ant
@@ -22,4 +22,6 @@
 
     <!-- friendly target names -->
     <target name="clean" depends="clean-std:clean" description="Clean the project" />
+
+    <ea:configure-project defaulttarget="dist"/>
 </project>
\ No newline at end of file