Add generation of RSS feed for current version changes

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115602 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol
2004-06-29 20:39:56 +00:00
parent 729924ab10
commit 82a65297d8
6 changed files with 121 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
<?xml version="1.0"?>
<!--
/*
* Copyright 2001-2004 The Apache Software Foundation.
@@ -17,7 +18,6 @@
*/
-->
<project
xmlns:j="jelly:core"
xmlns:ant="jelly:ant"
@@ -56,6 +56,19 @@
outputMode="xml"
prettyPrint="true"
/>
<!-- Generate a RSS feed of the changes -->
<doc:jsl
input="${maven.docs.src}/changes.xml"
output="changes.rss"
stylesheet="${plugin.resources}/changes2rss.jsl"
encoding="${maven.docs.outputencoding}"
outputMode="xml"
prettyPrint="true"/>
<!-- Copy the RSS XML logo -->
<mkdir dir="${maven.docs.dest}/images"/>
<copy todir="${maven.docs.dest}/images" file="${plugin.resources}/images/rss.png"/>
</goal>