blob: 153a156dec8bfb5ca99a0d8983820b5e3ae55d34 [file] [log] [blame]
## 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.
The ${developmentTeam} team is pleased to announce the ${plugin} ${version} release!
${url}
${introduction}
Changes in this version include:
#*
for New features
*#
#foreach($actionsN in $release.getAction())
#if($actionsN.getType()=="add")
#set($hasNew = 1)
#end
#end
#if($hasNew==1)
New Features:
#end
#foreach($actions in $release.getAction())
#if($actions.getType()=="add")
#set($action=$actions.getAction())
#set($word="Issue: ")
#set($issue=${actions.getIssue()})
#set($NewIssue="$word$issue")
o ${action} $NewIssue
#end
#end
#*
for Fixed bugs
*#
#foreach($actionsF in $release.getAction())
#if($actionsF.getType()=="add")
#set($hasFix = 1)
#end
#end
#if($hasFix == 1)
Fixed Bugs:
#end
#foreach( $actions in $release.getAction() )
#if( $actions.getType() == "fix" )
#set( $action = $actions.getAction() )
o ${action}
#end
#end
#*
Changes
*#
Changes:
#foreach( $actions in $release.getAction() )
#if( $actions.getType() == "update" )
#set( $action = $actions.getAction() )
o ${action}
#end
#end
Removed:
#foreach( $actions in $release.getAction() )
#if( $actions.getType() == "remove" )
#set( $action = $actions.getAction() )
o ${action}
#end
#end
To automatically install the plugin, type the following on a single line:
m2 plugin:download
-DgroupId=${groupId}
-DartifactId=${artifactId}
-Dversion=${version}
For a manual installation, you can download the ${plugin} here:
${url}/${plugin}-${version}.${packaging}
Have fun!
-${developmentTeam}