Reputation: 687
I haven't found any clear information about this around.
Is it possible to integrate the sourceforge tracking system for bugs/features with Mylyn?
I've found this page that seems a bit old (indeed the link for downloading the general connector does not work).
Anyone have a clue about this? It is possible to realise such a kind of connection?
Upvotes: 2
Views: 374
Reputation: 118
Since I wasn't able to get it running – maybe it's because of Eclipse Luna or something else – I slightly modified Daniel's method which partially uses the REST interface:
${serverUrl}/p/${project}/${tickets}/
(the same as in Daniel's method)${serverUrl}/p/${project}/${tickets}/new
(the same as in Daniel's method)${serverUrl}/rest/p/${project}/${tickets}?access_token=${bearer_token}
\{"summary":\s*"({Description}.+?)",\s*"ticket_num":\s*({Id}.+?)\}
To query tasks by milestones, use the following parameters in your Edit Query configuration:
${serverUrl}/rest/p/${project}/${tickets}/search?q=_milestone%3A${milestone}&access_token=${bearer_token}
Upvotes: 0
Reputation: 191
Yes with the move of SourceForge to use Allura the configuration on the page you highlighted is outdated.
I posted details on getting the Web Template Connector to work for Allura at http://officefloor.wordpress.com/2012/12/10/allura-sourceforge-mylyn-connector/
Upvotes: 2
Reputation: 126
The generic connector is now in the Mylyn incubator. Use this download site: http://download.eclipse.org/mylyn/incubator/3.7 (for Eclipse 3.6, 3.7, 3.8)
Upvotes: 1