[
https://issues.jboss.org/browse/SHRINKRES-74?page=com.atlassian.jira.plug...
]
Marco Rietveld updated SHRINKRES-74:
------------------------------------
Description:
It would be great if I could do something like this:
{code:java}
Maven.resolver().loadPomFromFile("pom.xml").importRuntimeDependencies().offline().as(File.class);
{code}
But the (fluent) api doesn't permit the {{.offline()}} method for the class/interface
that's returned from the {{.importRuntimeDependencies()}} methods.
For the workaround that I tried to use (but which doesn't pay attention to the offline
setting), see the attached test case.
was:
It would be great if I could do something like this:
{code:java}
Maven.resolver().loadPomFromFile("pom.xml").importRuntimeDependencies().offline().as(File.class);
{code}
But the (fluent) api doesn't permit the {{.offline()}} method for the class/interface
that's returned from the {{.importRuntimeDependencies()}} methods.
As a workaround, I'm doing this: {code:java}
MavenResolverSystem mrs = Maven.resolver();
PomEquippedResolveStage pers = mrs.loadPomFromFile("pom.xml");
ScopeType[] runtimeScopes = new ScopeType[] { ScopeType.COMPILE, ScopeType.IMPORT,
ScopeType.RUNTIME, ScopeType.SYSTEM };
ResolutionStrategy runtimeStrategy = new AcceptScopesStrategy(runtimeScopes);
FormatStage fs = ((PomEquippedResolveStageBaseImpl)
pers).resolve().offline().using(runtimeStrategy);
File[] dependencyFiles = fs.as(File.class);
{code}
Actually, that doesn't even work.. still trying to figure out how to do it. :/
Enhance the api to allow .offline() when using the
.import*Dependencies() methods
---------------------------------------------------------------------------------
Key: SHRINKRES-74
URL:
https://issues.jboss.org/browse/SHRINKRES-74
Project: ShrinkWrap Resolvers
Issue Type: Feature Request
Components: api
Affects Versions: 2.0.0-alpha-4
Reporter: Marco Rietveld
Priority: Minor
Attachments: ImportRuntimeDependenciesOfflineTest.java
It would be great if I could do something like this:
{code:java}
Maven.resolver().loadPomFromFile("pom.xml").importRuntimeDependencies().offline().as(File.class);
{code}
But the (fluent) api doesn't permit the {{.offline()}} method for the class/interface
that's returned from the {{.importRuntimeDependencies()}} methods.
For the workaround that I tried to use (but which doesn't pay attention to the
offline setting), see the attached test case.
--
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