[
https://issues.apache.org/jira/browse/ARIES-1230?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
David Bosschaert resolved ARIES-1230.
-------------------------------------
Resolution: Fixed
Thanks for your fix, Rainer! I've applied it in the following commit:
http://svn.apache.org/viewvc?view=revision&revision=1613142
> 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.2#6252)