You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@freemarker.apache.org by dd...@apache.org on 2017/08/05 14:26:27 UTC

[07/50] incubator-freemarker git commit: Added "ci" Ant task

Added "ci" Ant task


Project: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/commit/7295c65f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/tree/7295c65f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/diff/7295c65f

Branch: refs/heads/2.3
Commit: 7295c65f9b3784423a0361dafc9a6c98deb1de66
Parents: 9a60974
Author: ddekany <dd...@apache.org>
Authored: Mon Apr 17 11:39:03 2017 +0200
Committer: ddekany <dd...@apache.org>
Committed: Mon Apr 17 11:39:03 2017 +0200

----------------------------------------------------------------------
 build.xml | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/7295c65f/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 861a1b5..11772d1 100644
--- a/build.xml
+++ b/build.xml
@@ -146,7 +146,6 @@
   <!-- ================================================================= -->
   <!-- Compilation                                                       -->
   <!-- ================================================================= -->
-
   
   <target name="javacc" depends="init" unless="parser.uptodate"
     description="Build the parser from its grammar file"
@@ -992,7 +991,15 @@ Proceed? </input>
     <echo>Note that before releasing, voting is needed!</echo>
     <echo>*****************************************************************</echo>
   </target>
-  
+
+  <!-- ================================================================= -->
+  <!-- CI (like Travis).......................                           -->
+  <!-- ================================================================= -->
+	
+  <target name="ci"
+  	depends="clean, update-deps, jar, test, javadoc"
+  	description="CI should invoke this task"
+  />
   
   <!-- ================================================================== -->
   <!-- Dependency management (keep it exactly identical for all projects) -->