You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@aries.apache.org by "John Ross (JIRA)" <ji...@apache.org> on 2016/05/05 12:30:13 UTC

[jira] [Closed] (ARIES-1230) Manifest start-order bug in esa maven plugin

     [ https://issues.apache.org/jira/browse/ARIES-1230?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

John Ross closed ARIES-1230.
----------------------------

I'm closing this because although the component is Subsystem, it has nothing to do with a subsystem release. I'm trying to ascertain which JIRAs will be going into the next subsystems release and this keeps popping up as a false positive.

> Manifest start-order bug in esa maven plugin
> --------------------------------------------
>
>                 Key: ARIES-1230
>                 URL: https://issues.apache.org/jira/browse/ARIES-1230
>             Project: Aries
>          Issue Type: Bug
>          Components: Subsystem
>    Affects Versions: subsystem-1.0.1
>            Reporter: Rainer Schamm
>            Assignee: David Bosschaert
>            Priority: Minor
>
> There is a small bug in the esa maven plugin. 
> Note the ":=" in the below diff.
> See page 894 in the OSGi Compendium 5.0.0 for an example.
> The entry should look like this: 
> start-order:=2
> but the plugin creates this:
> start-order=2
> Note that the aries subsytem implementation does not work with the latter notation either.
> Diff:
> svn diff esa-maven-plugin/src/main/java/org/apache/aries/plugin/esa/EsaMojo.java
> Index: esa-maven-plugin/src/main/java/org/apache/aries/plugin/esa/EsaMojo.java
> ===================================================================
> --- esa-maven-plugin/src/main/java/org/apache/aries/plugin/esa/EsaMojo.java	(revision 1612842)
> +++ esa-maven-plugin/src/main/java/org/apache/aries/plugin/esa/EsaMojo.java	(working copy)
> @@ -425,7 +425,7 @@
>                  }
>                  String entry = info.getContentLine();
>                  if ("dependencies".equals(startOrder)) {
> -                    entry += ";start-order=\"" + order + "\"";                  
> +                    entry += ";start-order:=\"" + order + "\"";                  
>                  }
>                  if (iter.hasNext()) {
>                      entry += ",\n ";



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)