[ 
https://issues.apache.org/jira/browse/KARAF-1160?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13187757#comment-13187757
 ] 

Sergey Zhemzhitsky commented on KARAF-1160:
-------------------------------------------

Hi JB,

I'm expecting features-maven-plugin to resolve feature descriptors in the same 
way as for [ordinary maven  
dependencies|http://docs.codehaus.org/display/MAVEN/Dependency+Mediation+and+Conflict+Resolution#DependencyMediationandConflictResolution-DependencyVersionRanges].

In that case it should be possible to use the same property placeholder with 
version range all over the maven project (maven dependencies, 
features-maven-plugin descriptors, feature repositories, feature dependencies, 
etc.), e.g.

{code:xml}
<properties>
    <foo.bar.version>[1,2)</foo.bar.version>
</properties>

...

<plugin>
    <groupId>org.apache.karaf.tooling</groupId>
    <artifactId>features-maven-plugin</artifactId>
    ...
    <configuration>
        <descriptors>
            
<descriptor>mvn:foo.bar.features/baz/${foo.bar.version}/xml/features</descriptor>

...

<feature name="any-feature" version="${feature.version}">
    <feature version="${foo.bar.version}">foo.bar</feature>
...

{code}

                
> Unable to configure descriptors of features-maven-plugin with range of 
> versions.
> --------------------------------------------------------------------------------
>
>                 Key: KARAF-1160
>                 URL: https://issues.apache.org/jira/browse/KARAF-1160
>             Project: Karaf
>          Issue Type: Bug
>          Components: karaf-tooling
>    Affects Versions: 2.1.4
>            Reporter: Sergey Zhemzhitsky
>
> Unable to configure descriptors of features-maven-plugin with range of 
> versions.
> {code:xml}
> <plugin>
>     <groupId>org.apache.karaf.tooling</groupId>
>     <artifactId>features-maven-plugin</artifactId>
>     <executions>
>         <execution>
>             <id>prepare-package</id>
>             <phase>prepare-package</phase>
>             <goals>
>                 <goal>add-features-to-repo</goal>
>             </goals>
>             <configuration>
>                 <descriptors>
>                     
> <descriptor>mvn:foo.bar.features/baz/[1,2)/xml/features</descriptor>
>                     
> <descriptor>mvn:${project.groupId}/${project.artifactId}/${project.version}/xml/features</descriptor>
>                 </descriptors>
>                 <features>
>                     <feature>${project.groupId}</feature>
>                 </features>
>                 <addTransitiveFeatures>true</addTransitiveFeatures>
>                 <includeMvnBasedDescriptors>true</includeMvnBasedDescriptors>
>                 
> <failOnArtifactResolutionError>false</failOnArtifactResolutionError>
>                 <skipNonMavenProtocols>true</skipNonMavenProtocols>
>                 <repository>${features.repo.directory}</repository>
>             </configuration>
>         </execution>
>     </executions>
> </plugin>
> {code}
> With such a configuration I'm getting the following error:
> {code}
> [ERROR] Failed to execute goal 
> org.apache.karaf.tooling:features-maven-plugin:2.1.4:add-features-to-repo 
> (make-repo) on project foo.bar: 
> Error populating repository:
> IllegalArgumentException: Illegal character in path at index 116: 
> file:///C:/Users/me/.m2/repository/foo/bar/features/baz/[1,2)/baz-[1,2)-features.xml
>  -> [Help 1]
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to