• Bug
  • Status: Closed
  • 1 Critical
  • Resolution: Fixed
  • Documentation
  • nrana
  • Reporter: sslavic
  • December 05, 2009
  • 0
  • Watchers: 2
  • April 28, 2010
  • December 08, 2009

Description

Currently https://jira.terracotta.org/browse/EHC redirects to https://jira.terracotta.org/jira/secure/BrowseProject.jspabrowse/EHC

Comments

gluck 2009-12-08

This was the Issue Tracker link on the site, not the changelog which was already fixed.

Fixed.

Jon Christiansen 2010-02-28

This is still not fixed. All the links in your change logs report are still pointing to invalid URLs.

To fix, you need to modify your ehcache-core-trunk/pom.xml with the following (both the plugin version and the additional configuration)ā€¦.

		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-changes-plugin</artifactId>
			<version>2.3</version>
			<configuration>
				<issueLinkTemplatePerSystem>
					<default>https://jira.terracotta.org/jira/browse/%ISSUE%</default>
				</issueLinkTemplatePerSystem>
			</configuration>
			<reportSets>
				<reportSet>
					<reports>
						<report>changes-report</report>
					</reports>
				</reportSet>
			</reportSets>
		</plugin>

Jon Christiansen 2010-02-28

Obviously that ā€œ<ā€ in the previous comment needs to be a less than sign ( < )

gluck 2010-03-02

Jon

This change does not work.

It goes to https://jira.terracotta.org/jira/browse/ViewIssue.jspa?key=EHC-357

It needs to go to https://jira.terracotta.org/jira/browse/EHC-357

gluck 2010-03-02

It seems others are having the same problem.

http://jira.codehaus.org/browse/MCHANGES-166

Not sure when this will be fixed in Maven.

Jon Christiansen 2010-03-04

I made this change locally on my machine and generated the site, and it fixed the issue.

To get it to work it required updating the changes plugin version to 2.3 AND adding that configuration section.

Iā€™m fairly certain there was nothing else I changed to get it to work.