You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2013/04/09 16:58:58 UTC

svn commit: r1466064 - /syncope/branches/1_1_X/standalone/pom.xml

Author: ilgrosso
Date: Tue Apr  9 14:58:58 2013
New Revision: 1466064

URL: http://svn.apache.org/r1466064
Log:
Remove docs and examples from Tomcat in the standalone distribution (to save some space)

Modified:
    syncope/branches/1_1_X/standalone/pom.xml

Modified: syncope/branches/1_1_X/standalone/pom.xml
URL: http://svn.apache.org/viewvc/syncope/branches/1_1_X/standalone/pom.xml?rev=1466064&r1=1466063&r2=1466064&view=diff
==============================================================================
--- syncope/branches/1_1_X/standalone/pom.xml (original)
+++ syncope/branches/1_1_X/standalone/pom.xml Tue Apr  9 14:58:58 2013
@@ -16,7 +16,6 @@ software distributed under the License i
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
-
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
@@ -97,8 +96,12 @@ under the License.
                 <copy file="../legal_ext/LICENSE" todir="${work.dir}" />
                 <copy file="../legal_ext/NOTICE" todir="${work.dir}" />
 
-                <!-- Syncope core (as run for integration tests) -->
+                <!-- Unzip Tomcat and remove docs and examples from webapps (space saving) -->
                 <unzip src="${settings.localRepository}/org/codehaus/cargo/cargo-container-archives/apache-tomcat-${tomcat.version}.zip" dest="${work.dir}" />
+                <delete dir="${work.dir}/apache-tomcat-${tomcat.version}/webapps/docs"/>
+                <delete dir="${work.dir}/apache-tomcat-${tomcat.version}/webapps/examples"/>
+
+                <!-- Syncope core (as run for integration tests) -->
                 <copy todir="${work.dir}/apache-tomcat-${tomcat.version}/webapps/syncope">
                   <fileset dir="../core/target/syncope-core-test" includes="**/*" />
                 </copy>