You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/06/21 11:30:51 UTC

svn commit: r1495343 - /commons/proper/commons-gpg-plugin/trunk/src/assembly/bin.xml

Author: sebb
Date: Fri Jun 21 09:30:50 2013
New Revision: 1495343

URL: http://svn.apache.org/r1495343
Log:
Add bin assembly (assumed by commons:download plugin)

Added:
    commons/proper/commons-gpg-plugin/trunk/src/assembly/bin.xml   (with props)

Added: commons/proper/commons-gpg-plugin/trunk/src/assembly/bin.xml
URL: http://svn.apache.org/viewvc/commons/proper/commons-gpg-plugin/trunk/src/assembly/bin.xml?rev=1495343&view=auto
==============================================================================
--- commons/proper/commons-gpg-plugin/trunk/src/assembly/bin.xml (added)
+++ commons/proper/commons-gpg-plugin/trunk/src/assembly/bin.xml Fri Jun 21 09:30:50 2013
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+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.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
+    <id>bin</id>
+    <formats>
+        <format>tar.gz</format>
+        <format>zip</format>
+    </formats>
+    <fileSets>
+        <fileSet>
+            <includes>
+                <include>README*</include>
+                <include>LICENSE*</include>
+                <include>NOTICE*</include>
+                <include>RELEASE-NOTES.txt</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>target</directory>
+            <outputDirectory></outputDirectory>
+            <includes>
+                <include>${project.artifactId}-${project.version}.jar</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>target/site/apidocs</directory>
+            <outputDirectory>apidocs</outputDirectory>
+            <includes>
+                <include>**/*</include>
+            </includes>
+        </fileSet>
+        <!-- Include sources jar for IDEs -->
+        <fileSet>
+            <directory>target</directory>
+            <outputDirectory></outputDirectory>
+            <includes>
+                <include>${project.artifactId}-${project.version}-sources.jar</include>
+            </includes>
+        </fileSet>
+    </fileSets>
+</assembly>

Propchange: commons/proper/commons-gpg-plugin/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:eol-style = native