Author: damjan
Date: Tue May 29 07:16:35 2012
New Revision: 1343565

URL: http://svn.apache.org/viewvc?rev=1343565&view=rev
Log:
Update POM, assembly descriptors, and README.txt
in preparation for a release.


Modified:
    commons/proper/imaging/trunk/README.txt
    commons/proper/imaging/trunk/pom.xml
    commons/proper/imaging/trunk/src/main/assembly/bin.xml
    commons/proper/imaging/trunk/src/main/assembly/src.xml

Modified: commons/proper/imaging/trunk/README.txt
URL: 
http://svn.apache.org/viewvc/commons/proper/imaging/trunk/README.txt?rev=1343565&r1=1343564&r2=1343565&view=diff
==============================================================================
--- commons/proper/imaging/trunk/README.txt (original)
+++ commons/proper/imaging/trunk/README.txt Tue May 29 07:16:35 2012
@@ -1,11 +1,11 @@
 =========================================================================
-Welcome to Apache Commons Sanselan  <http://commons.apache.org/sanselan/>
+Welcome to Apache Commons Imaging  <http://commons.apache.org/imaging/>
 =========================================================================
 
 License (see also LICENSE)
 ==============================
 
-Collective work: Copyright 2007-2009 The Apache Software Foundation.
+Collective work: Copyright 2007-2012 The Apache Software Foundation.
 
 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements.  See the NOTICE file distributed with
@@ -29,7 +29,7 @@ Getting Started
 Mailing Lists
 -------------
 
-To get involved with the Apache Commons Sanselan project, start by
+To get involved with the Apache Commons Imaging project, start by
 having a look at our website (link at top of page) and join our mailing
 lists by sending an empty message to the Apache Commons mailing lists
 
@@ -41,33 +41,33 @@ and the dev mailing list archives can be
 
    http://mail-archives.apache.org/mod_mbox/commons-dev/
 
-Please prefix the subject line of any messages with [sanselan].
+Please prefix the subject line of any messages with [imaging].
 
 Downloading
 -----------
 
-The Commons Sanselan source code is available via Subversion at
+The Commons Imaging source code is available via Subversion at
 
-   https://svn.apache.org/repos/asf/commons/proper/sanselan/trunk
+   https://svn.apache.org/repos/asf/commons/proper/imaging/trunk
 
 and anonymous access is available at
 
-   http://svn.apache.org/repos/asf/commons/proper/sanselan/trunk
+   http://svn.apache.org/repos/asf/commons/proper/imaging/trunk
 
 or with ViewVC at
 
-   http://svn.apache.org/viewvc/commons/proper/sanselan/trunk/
+   http://svn.apache.org/viewvc/commons/proper/imaging/trunk/
 
-To checkout the main Sanselan source tree, run
+To checkout the main Imaging source tree, run
 
-   svn checkout 
http://svn.apache.org/repos/asf/commons/proper/sanselan/trunk/sanselan
+   svn checkout 
http://svn.apache.org/repos/asf/commons/proper/imaging/trunk/imaging
 
 Once you have a copy of the source code tree, you can use Apache Maven
 
    http://maven.apache.org/
 
-to build the project. You should use Maven 2 to build Sanselan.
-The minimal command to build, test, and package all the main Sanselan
+to build the project. You should use Maven 2 to build Imaging.
+The minimal command to build, test, and package all the main Imaging
 components is:
 
    mvn install
@@ -79,5 +79,5 @@ For more instructions, please see the do
 Credits
 =======
 
-See http://commons.apache.org/sanselan/team-list.html for the list of 
-Sanselan committers and main contributors.
+See http://commons.apache.org/imaging/team-list.html for the list of 
+Imaging committers and main contributors.

Modified: commons/proper/imaging/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/imaging/trunk/pom.xml?rev=1343565&r1=1343564&r2=1343565&view=diff
==============================================================================
--- commons/proper/imaging/trunk/pom.xml (original)
+++ commons/proper/imaging/trunk/pom.xml Tue May 29 07:16:35 2012
@@ -89,6 +89,16 @@
         </configuration>
       </plugin>
       <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Extension-Name>org.apache.commons.imaging</Extension-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
@@ -195,6 +205,10 @@
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>findbugs-maven-plugin</artifactId>
         <version>2.4.0</version>
+        <configuration>
+          <threshold>Normal</threshold>
+          <effort>Default</effort>
+        </configuration>
       </plugin>
       <plugin>
         <groupId>org.codehaus.mojo</groupId>

Modified: commons/proper/imaging/trunk/src/main/assembly/bin.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/imaging/trunk/src/main/assembly/bin.xml?rev=1343565&r1=1343564&r2=1343565&view=diff
==============================================================================
--- commons/proper/imaging/trunk/src/main/assembly/bin.xml (original)
+++ commons/proper/imaging/trunk/src/main/assembly/bin.xml Tue May 29 07:16:35 
2012
@@ -20,18 +20,17 @@
 <assembly>
   <id>bin</id>
   <formats>
+    <format>tar.bz2</format>
     <format>tar.gz</format>
     <format>zip</format>
-    <format>tar.bz2</format>
   </formats>
   <fileSets>
     <fileSet>
       <includes>
-        <include>README*</include>
         <include>LICENSE*</include>
-        <include>KEYS*</include>
         <include>NOTICE*</include>
         <include>RELEASE_NOTES*</include>
+        <include>README*</include>
       </includes>
     </fileSet>
     <fileSet>
@@ -41,5 +40,9 @@
         <include>*.jar</include>
       </includes>
     </fileSet>
+    <fileSet>
+      <directory>target/site/apidocs</directory>
+      <outputDirectory>apidocs</outputDirectory>
+    </fileSet>
   </fileSets>
-</assembly>
\ No newline at end of file
+</assembly>

Modified: commons/proper/imaging/trunk/src/main/assembly/src.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/imaging/trunk/src/main/assembly/src.xml?rev=1343565&r1=1343564&r2=1343565&view=diff
==============================================================================
--- commons/proper/imaging/trunk/src/main/assembly/src.xml (original)
+++ commons/proper/imaging/trunk/src/main/assembly/src.xml Tue May 29 07:16:35 
2012
@@ -26,20 +26,24 @@ http://maven.apache.org/plugins/maven-as
 <assembly>
   <id>src</id>
   <formats>
+    <format>tar.bz2</format>
     <format>tar.gz</format>
     <format>zip</format>
-    <format>tar.bz2</format>
   </formats>
+  <baseDirectory>${artifactId}-${version}-src</baseDirectory>
   <fileSets>
     <fileSet>
-      <directory>.</directory>
-      <outputDirectory></outputDirectory>
-      <useDefaultExcludes>true</useDefaultExcludes>
-      <excludes>
-        <exclude>temp/**</exclude>
-        <exclude>tmp/**</exclude>
-        <exclude>**/target/**</exclude>
-      </excludes>
+      <includes>
+        <include>LICENSE*</include>
+        <include>NOTICE*</include>
+        <include>RELEASE_NOTES*</include>
+        <include>README*</include>
+        <include>checkstyle*.xml</include>
+        <include>pom.xml</include>
+      </includes>
+    </fileSet>
+    <fileSet>
+      <directory>src</directory>
     </fileSet>
   </fileSets>
 </assembly>


Reply via email to