You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@any23.apache.org by si...@apache.org on 2012/01/13 11:43:37 UTC

svn commit: r1230982 - in /incubator/any23/trunk: CHANGES.txt pom.xml src/changes/ src/changes/changes.xml

Author: simonetripodi
Date: Fri Jan 13 10:43:37 2012
New Revision: 1230982

URL: http://svn.apache.org/viewvc?rev=1230982&view=rev
Log:
CHANGES file replaced by changes descriptor for maven - which will generate the HTML report for the site AND the textual file (to attach to ML, for example)

Added:
    incubator/any23/trunk/src/changes/
    incubator/any23/trunk/src/changes/changes.xml   (with props)
Removed:
    incubator/any23/trunk/CHANGES.txt
Modified:
    incubator/any23/trunk/pom.xml

Modified: incubator/any23/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/pom.xml?rev=1230982&r1=1230981&r2=1230982&view=diff
==============================================================================
--- incubator/any23/trunk/pom.xml (original)
+++ incubator/any23/trunk/pom.xml Fri Jan 13 10:43:37 2012
@@ -607,6 +607,23 @@
 
   <reporting>
     <plugins>
+      <!-- generates the CHANGES report -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-changes-plugin</artifactId>
+        <version>2.3</version>
+        <configuration>
+          <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>changes-report</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+
       <!-- Main project infos. -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>

Added: incubator/any23/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/src/changes/changes.xml?rev=1230982&view=auto
==============================================================================
--- incubator/any23/trunk/src/changes/changes.xml (added)
+++ incubator/any23/trunk/src/changes/changes.xml Fri Jan 13 10:43:37 2012
@@ -0,0 +1,49 @@
+<?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.
+-->
+
+<!--
+This file is used by the maven-changes-plugin to generate the release notes.
+Useful ways of finding items to add to this file are:
+
+1.  Add items when you fix a bug or add a feature (this makes the 
+release process easy :-).
+
+2.  Do a Jira search for tickets closed since the previous release.
+
+3.  Use the report generated by the maven-changelog-plugin to see all
+SVN commits.  Set the project.properties' maven.changelog.range 
+property to the number of days since the last release.
+
+
+The <action> type attribute can be add,update,fix,remove.
+-->
+
+<document>
+  <properties>
+    <title>Apache Any23 - Release Notes</title>
+  </properties>
+
+  <body>
+    <release version="0.6.2" description="First Apache release">
+      <action dev="lewismc" type="fix" issue="ANY23-22">
+        Edit trunk/lib/install-deps.sh to point to correct repos for dependencies.
+      </action>
+    </release>
+  </body>
+
+</document>

Propchange: incubator/any23/trunk/src/changes/changes.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/any23/trunk/src/changes/changes.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/any23/trunk/src/changes/changes.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml