Return-Path: X-Original-To: apmail-maven-users-archive@www.apache.org Delivered-To: apmail-maven-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E67DF10E0E for ; Fri, 9 Aug 2013 12:55:33 +0000 (UTC) Received: (qmail 50244 invoked by uid 500); 9 Aug 2013 12:55:31 -0000 Delivered-To: apmail-maven-users-archive@maven.apache.org Received: (qmail 49755 invoked by uid 500); 9 Aug 2013 12:55:27 -0000 Mailing-List: contact users-help@maven.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Maven Users List" Reply-To: "Maven Users List" Delivered-To: mailing list users@maven.apache.org Received: (qmail 49746 invoked by uid 99); 9 Aug 2013 12:55:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Aug 2013 12:55:26 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [141.35.1.28] (HELO mailout0.rz.uni-jena.de) (141.35.1.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Aug 2013 12:55:20 +0000 Received: from mailsmtp1.rz.uni-jena.de (mailsmtp1.rz.uni-jena.de [141.35.1.18]) by mailout0.rz.uni-jena.de (8.14.4/8.14.4) with ESMTP id r79CsxJY030260 for ; Fri, 9 Aug 2013 14:54:59 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=uni-jena.de; s=dkim-2013; t=1376052899; bh=pufk1mIrQ9Ruu7BBzd5ntE4Am8qLnAT7o+CGcntLZNY=; h=Message-ID:Date:From:MIME-Version:To:Subject:Content-Type: Content-Transfer-Encoding; b=rI2thSsmnkDpENtWDaM3tG/8jI1n2ZGycsuMiVFtfUit28N5pp+ioRGcxwMCyhHx7 5oHpXAASk9pICUHF+JUn+VC4iXUbM3ze3vAFzdSOBKXd+XvU5Jj32EjPcltQWwMwsi mGSkJHCsG9+ys8ZzuQjPPp1mF7jRcAR+MkAxgC4VTri56NTItHuKqTM6ov1yosE68M hPjD+xzUIVfnMGeGvixpbYW9YplIS1szTt5T8UL7kPBEeX0P9u2oSfQmh4gX2cjxWK RgH9Zfskqyoe3tsmr6WBtAD8zPPD7nyp+OtM+QW8HjlTvDi6RcWmtC2h75SHzzfCHG 29AtNAUzRMe0g== Received: from [141.35.20.241] (ulbp2364.thulb.uni-jena.de [141.35.20.241]) (authenticated id=m8scth bits=0) by mailsmtp1.rz.uni-jena.de (8.14.4/8.14.4) with ESMTP id r79CsxjN025293 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Fri, 9 Aug 2013 14:54:59 +0200 Message-ID: <5204E6A3.2040001@uni-jena.de> Date: Fri, 09 Aug 2013 14:54:59 +0200 From: Thomas Scheffler Organization: =?UTF-8?B?RnJpZWRyaWNoLVNjaGlsbGVyLVVuaXZlcnNpdMOkdCBKZW5h?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130809 Thunderbird/17.0.8 MIME-Version: 1.0 To: users@maven.apache.org Subject: slow release:perform Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi, we have a parent pom where all of our projects get it's settings from (plugin version etc.). In that parent pom there is a distributionManagement section with all the needed sections for deployment. Now the settings for "site" prove to be a big problem. Whenever a site is deployed a command is issued like that: Executing command: cd "/var/www/html/maven-docs/projectA-1.0/subProjectB"; unzip -q -o "wagon7218022527119219133.zip"; rm -f "wagon7218022527119219133.zip" Executing command: chmod -Rf g+w,a+rX /var/www/html/maven-docs "projectA" is a multi module project that uses the mentioned parent pom and "subProjectB" is a module with "projectA" as its parent. The files for the site of subProjectB a dropped to the right directory (/var/www/html/maven-docs/projectA-1.0/subProjectB) but the following "chmod" always issues the directory two levels higher. At this level thousands and thousands of files are laying there so this command takes a few minutes. Things get worse with more modules of projectA. The whole release process waits 95 percent of time for that "chmod" to complete. It would be better if chmod would only run on the directory that was created earlier (/var/www/html/maven-docs/projectA-1.0/subProjectB). How can that be accomplished? Kind regards Thomas --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@maven.apache.org For additional commands, e-mail: users-help@maven.apache.org