[shrinkwrap-issues] [JBoss JIRA] (SHRINKRES-74) Enhance the api to allow .offline() when using the .import*Dependencies() methods

Marco Rietveld (JIRA) jira-events at lists.jboss.org
Fri Oct 5 07:29:03 EDT 2012


     [ https://issues.jboss.org/browse/SHRINKRES-74?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Marco Rietveld moved SHRINKWRAP-422 to SHRINKRES-74:
----------------------------------------------------

        Project: ShrinkWrap Resolvers  (was: ShrinkWrap)
            Key: SHRINKRES-74  (was: SHRINKWRAP-422)
    Component/s: api
                     (was: api)
                     (was: impl-base)

    
> 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
>            Reporter: Marco Rietveld
>            Priority: Minor
>
> 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. :/ 

--
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 shrinkwrap-issues mailing list