You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2013/07/23 22:29:12 UTC

[2/2] git commit: Rename the API documentation archive to reflect CoffeeScript documentation

Rename the API documentation archive to reflect CoffeeScript documentation


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/75b45f8f
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/75b45f8f
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/75b45f8f

Branch: refs/heads/master
Commit: 75b45f8fdb4181c796421f052ff64a0edfaa5c30
Parents: a30f8a7
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Tue Jul 23 13:29:06 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Tue Jul 23 13:29:06 2013 -0700

----------------------------------------------------------------------
 build.gradle | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/75b45f8f/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 6b2c175..5b7d9a4 100755
--- a/build.gradle
+++ b/build.gradle
@@ -387,7 +387,7 @@ task zippedSources(type: Zip) {
     exclude "**/test-output/**"  // Left around by TestNG sometimes
 }
 
-task zippedJavadoc(type: Zip) {
+task zippedApidoc(type: Zip) {
     dependsOn aggregateJavadoc
     description "Zip archive of the project's aggregate JavaDoc and CoffeeScript documentation"
     group "Release artifact"
@@ -395,7 +395,7 @@ task zippedJavadoc(type: Zip) {
     destinationDir buildDir
     baseName "apache-tapestry"
     version project.version
-    classifier "javadocs"
+    classifier "apidocs"
 
     from file("src/docroot-template"), {
         filter ReplaceTokens, tokens: [version: project.version]
@@ -456,7 +456,8 @@ if (canDeploy) {
 
 
     artifacts {
-        archives zippedJavadoc, zippedSources, zippedBinaries
+    artifacts {
+        archives zippedApidoc, zippedSources, zippedBinaries
     }
 
     configurations {