You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chukwa.apache.org by ey...@apache.org on 2011/12/22 04:28:54 UTC

svn commit: r1222018 - /incubator/chukwa/branches/chukwa-0.5/src/packages/tarball/src.xml

Author: eyang
Date: Thu Dec 22 03:28:54 2011
New Revision: 1222018

URL: http://svn.apache.org/viewvc?rev=1222018&view=rev
Log:
CHUKWA-623. Added build profile src for building release source tarball. (Eric Yang)

Added:
    incubator/chukwa/branches/chukwa-0.5/src/packages/tarball/src.xml

Added: incubator/chukwa/branches/chukwa-0.5/src/packages/tarball/src.xml
URL: http://svn.apache.org/viewvc/incubator/chukwa/branches/chukwa-0.5/src/packages/tarball/src.xml?rev=1222018&view=auto
==============================================================================
--- incubator/chukwa/branches/chukwa-0.5/src/packages/tarball/src.xml (added)
+++ incubator/chukwa/branches/chukwa-0.5/src/packages/tarball/src.xml Thu Dec 22 03:28:54 2011
@@ -0,0 +1,37 @@
+<?xml version="1.0"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1"
+          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+          xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd">
+  <!--This 'all' id is not appended to the produced bundle because we do this:
+    http://maven.apache.org/plugins/maven-assembly-plugin/faq.html#required-classifiers
+  -->
+  <formats>
+    <format>tar.gz</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <includes>
+        <include>**</include>
+      </includes>
+      <excludes>
+        <exclude>target/**</exclude>
+      </excludes>
+    </fileSet>
+  </fileSets>
+</assembly>