Here is how I configure changes report and issue tracking section with 
sourceforge:

In the pom.xml:

    <issueManagement>
        <system>sourceforge</system><!--don't care-->
        <url>
            http://sourceforge.net/tracker/?atid=497982&amp;group_id=61302
        </url>
    </issueManagement>

(Note the &amp; instead of &)

        <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-changes-plugin</artifactId>
                <inherited>false</inherited>
                <reportSets>
                    <reportSet>
                        <reports>
                            <report>changes-report</report>
                        </reports>
                    </reportSet>
                </reportSets>
                <configuration>
                    <issueLinkTemplate>
                        
%URL%/index.php?func=detail&amp;aid=%ISSUE%&amp;group_id=61302&amp;atid=497982
                    </issueLinkTemplate>
                </configuration>
            </plugin>

You need to customize atid, group_id, aid for your project.

group_id refers to your project
atid refers to the section (bugs, feature request or patch)
aid refers to the issue number

Now in your change.xml, you can put:

<action type="fix" dev="Julien Henry" due-to="Pete Bull" issue="1554148">
                bla bla
</action>

This will generate a link for your issue like this:
%URL% = http://sourceforge.net/tracker/?atid=497982&amp;group_id=61302
%ISSUE% = 1554148

The only problem I have with this configuration is I can't add a link for 
feature requests or patches (only bugs)

Hope it helps.

++

Julien

----- Message d'origine ----
De : Wim Deblauwe <[EMAIL PROTECTED]>
À : Maven Users List <[email protected]>
Envoyé le : Mardi, 28 Novembre 2006, 16h18mn 23s
Objet : Re: Maven and Sourceforge

Thanks for  the input, I've  updated the wiki page with it.

This is unix notation for file permissions:
>     r = 4 (read permission)
>     w = 2  (write permission)
>     x = 1 (execute permission)
> The first number is for user
> The second number is for group
> The third is for what's left ;-)
>
> So 7 = 4 + 2 + 1 = rwx
>      5 = 4 + 1 = r-x
>
> 775: means owning user can do anything, all users of the owning group
> can do anything, anybody else can read and execute.
>
> For more infos on unix file permissions :
> http://www.freeos.com/articles/3127/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>







        

        
                
___________________________________________________________________________ 
Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions ! 
Profitez des connaissances, des opinions et des expériences des internautes sur 
Yahoo! Questions/Réponses 
http://fr.answers.yahoo.com

Reply via email to