You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by de...@apache.org on 2007/11/21 23:50:07 UTC

svn commit: r597240 - in /commons/proper/logging/trunk: RELEASE-NOTES.txt pom.xml src/assembly/assembly.xml src/assembly/bin.xml src/assembly/src.xml

Author: dennisl
Date: Wed Nov 21 14:50:06 2007
New Revision: 597240

URL: http://svn.apache.org/viewvc?rev=597240&view=rev
Log:
[LOGGING-118] Generate source and binary archives.
Replace the single assembly with separate souce and binary assemblies.

Added:
    commons/proper/logging/trunk/src/assembly/bin.xml   (with props)
    commons/proper/logging/trunk/src/assembly/src.xml   (with props)
Removed:
    commons/proper/logging/trunk/src/assembly/assembly.xml
Modified:
    commons/proper/logging/trunk/RELEASE-NOTES.txt
    commons/proper/logging/trunk/pom.xml

Modified: commons/proper/logging/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/RELEASE-NOTES.txt?rev=597240&r1=597239&r2=597240&view=diff
==============================================================================
--- commons/proper/logging/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/logging/trunk/RELEASE-NOTES.txt Wed Nov 21 14:50:06 2007
@@ -139,6 +139,8 @@
 
 * LOGGING-117: Unit tests fail on linux with java16.
 
+* LOGGING-118: Generate source and binary archives.
+
 * MEV-392 (http://jira.codehaus.org/browse/MEV-392)
   As Commons Logging didn't provide a Maven2 pom.xml file, one was helpfully
   created by people not involved with the commons-logging project and published

Modified: commons/proper/logging/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/pom.xml?rev=597240&r1=597239&r2=597240&view=diff
==============================================================================
--- commons/proper/logging/trunk/pom.xml (original)
+++ commons/proper/logging/trunk/pom.xml Wed Nov 21 14:50:06 2007
@@ -381,11 +381,11 @@
         <artifactId>maven-assembly-plugin</artifactId>
         <version>2.2-beta-1</version>
         <configuration>
-          <appendAssemblyId>false</appendAssemblyId>
           <!-- Do not deploy the assemblies to the repository. -->
           <attach>false</attach>
           <descriptors>
-            <descriptor>src/assembly/assembly.xml</descriptor>
+            <descriptor>src/assembly/bin.xml</descriptor>
+            <descriptor>src/assembly/src.xml</descriptor>
           </descriptors>
           <tarLongFileMode>gnu</tarLongFileMode>
         </configuration>

Added: commons/proper/logging/trunk/src/assembly/bin.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/src/assembly/bin.xml?rev=597240&view=auto
==============================================================================
--- commons/proper/logging/trunk/src/assembly/bin.xml (added)
+++ commons/proper/logging/trunk/src/assembly/bin.xml Wed Nov 21 14:50:06 2007
@@ -0,0 +1,43 @@
+<?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>
+  <id>bin</id>
+  <formats>
+    <format>tar.gz</format>
+    <format>zip</format>
+  </formats>
+  <includeSiteDirectory>true</includeSiteDirectory>
+  <fileSets>
+    <fileSet>
+      <includes>
+        <include>LICENSE*</include>
+        <include>NOTICE*</include>
+        <include>RELEASE-NOTES*</include>
+      </includes>
+    </fileSet>
+    <fileSet>
+      <directory>target</directory>
+      <outputDirectory></outputDirectory>
+      <includes>
+        <include>*.jar</include>
+      </includes>
+    </fileSet>
+  </fileSets>
+</assembly>
\ No newline at end of file

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

Propchange: commons/proper/logging/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author URL Id

Added: commons/proper/logging/trunk/src/assembly/src.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/src/assembly/src.xml?rev=597240&view=auto
==============================================================================
--- commons/proper/logging/trunk/src/assembly/src.xml (added)
+++ commons/proper/logging/trunk/src/assembly/src.xml Wed Nov 21 14:50:06 2007
@@ -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>
+  <id>src</id>
+  <formats>
+    <format>tar.gz</format>
+    <format>zip</format>
+  </formats>
+  <baseDirectory>${artifactId}-${version}-src</baseDirectory>
+  <fileSets>
+    <fileSet>
+      <directory>.</directory>
+      <outputDirectory></outputDirectory>
+	  <useDefaultExcludes>true</useDefaultExcludes>
+      <excludes>
+        <exclude>**/target/**</exclude>
+      </excludes>
+    </fileSet>
+  </fileSets>
+</assembly>
\ No newline at end of file

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

Propchange: commons/proper/logging/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author URL Id