[
https://issues.jboss.org/browse/DROOLS-194?page=com.atlassian.jira.plugin...
]
Mario Fusco reassigned DROOLS-194:
----------------------------------
Assignee: Mario Fusco (was: Mark Proctor)
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: Mario Fusco
Attachments: kie-srampwagon.tgz
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