Author: jvanzyl
Date: Sun Nov 26 06:17:19 2006
New Revision: 479365
URL: http://svn.apache.org/viewvc?view=rev&rev=479365
Log:
o cron is dumb
Modified:
maven/sandbox/reports/plugin-vote.vm
maven/sandbox/reports/run.sh
Modified: maven/sandbox/reports/plugin-vote.vm
URL:
http://svn.apache.org/viewvc/maven/sandbox/reports/plugin-vote.vm?view=diff&rev=479365&r1=479364&r2=479365
==============================================================================
--- maven/sandbox/reports/plugin-vote.vm (original)
+++ maven/sandbox/reports/plugin-vote.vm Sun Nov 26 06:17:19 2006
@@ -1,15 +1,17 @@
+## Things that are missing in order for this to work
+## - need to know what the dev mailing list is, the mailing lists are just an
uncategorized list
+## - Web accessible face to the distributionManagement.repository element
+## - REST URL for issue management system, might need project IDs
+
#set( $projectKey = "PROJECT_KEY" )
#set( $projectVersion = "PROJECT_VERSION" )
+
#set( $jira =
$xmlrpc.connect("swizzletester:swizzle","http://jira.codehaus.org/rpc/xmlrpc") )
#set( $project = $jira.getProject($projectKey) )
#set( $version = $jira.getVersion( $project, $projectVersion) )
#set( $url =
"http://jira.codehaus.org/secure/IssueNavigator.jspa?view=rss&&pid=${project.id}&fixfor=${version.id}&tempMax=500&reset=true&decorator=none"
)
#set( $issues = $rss.fetch($url).issues )
-## Things that are missing in order for this to work
-## - need to know what the dev mailing list is, the mailing lists are just an
uncategorized list
-## - Web accessible face to the distributionManagement.repository element
-
From: ${project.devMailingList}
Subject: [VOTE] Release $project.name [$projectVersion]
To: ${project.devMailingList}
@@ -17,11 +19,17 @@
Issues Resolved for $project.name [$projectVersion]:
#foreach( $issue in $issues.sort("id").sort("priority") )
- [$issue.key] $issue.summary
+[$issue.key] $issue.summary
#end
Deployed to:
$project.distributionManagement.repositoryUrl/$project.groupId/$projectVersion/
+
+Documentation:
+
+$project.distributionManagement.siteUrl
+
+Usage:
You can can try this plugin by using "mvn -U foo".
Modified: maven/sandbox/reports/run.sh
URL:
http://svn.apache.org/viewvc/maven/sandbox/reports/run.sh?view=diff&rev=479365&r1=479364&r2=479365
==============================================================================
--- maven/sandbox/reports/run.sh (original)
+++ maven/sandbox/reports/run.sh Sun Nov 26 06:17:19 2006
@@ -1,7 +1,12 @@
#!/bin/sh
+export JAVA_HOME=/opt/java/sdk/current
+export JAVA_CMD=$JAVA_HOME/bin/java
+export JAVA_OPTS="-ms32m -mx256m"
+export JAVA="$JAVA_CMD $JAVA_OPTS"
+
(
-java -jar swizzle-jirareport-1.2.1-SNAPSHOT-dep.jar maven-plugins.vm
+$JAVA -jar swizzle-jirareport-1.2.1-SNAPSHOT-dep.jar maven-plugins.vm
) 2>&1 | tee
$HOME/repository-staging/to-ibiblio/reports/plugins/plugin-issues.txt