[jboss-jira] [JBoss JIRA] (DROOLS-194) Add support in KIE to register custom Wagons
Kurt Stam (JIRA)
jira-events at lists.jboss.org
Fri Jul 19 05:57:26 EDT 2013
Kurt Stam created DROOLS-194:
--------------------------------
Summary: Add support in KIE to register custom Wagons
Key: DROOLS-194
URL: https://issues.jboss.org/browse/DROOLS-194
Project: Drools
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Reporter: Kurt Stam
Assignee: Mark Proctor
The ManualWagonProvider subclass of Aether in KIE registers the HTTPWagon. It should be possible to add your own Wagon through config our automated machinery when another Wagon is put on the classpath and references in the build/extensions of a MavenProject. To get the SrampWagon to work we used the following code:
{quote}
private static class ManualWagonProvider implements WagonProvider {
public Wagon lookup( String roleHint ) throws Exception {
if ( "http".equals( roleHint ) ) {
return new AhcWagon();
}
if ( "sramp".equals( roleHint ) ) {
return new SrampWagon();
}
return null;
}
public void release( Wagon wagon ) { }
}
{quote}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list