Last modified by Thomas Mortagne on 2017/03/24

<
From version < 3.1 >
edited by Vincent Massol
on 2016/04/06
To version < 6.1 >
edited by Thomas Mortagne
on 2016/04/07
>
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.VincentMassol
1 +XWiki.ThomasMortagne
Content
... ... @@ -16,16 +16,33 @@
16 16  
17 17  == Miscellaneous ==
18 18  
19 -<insert misc user stuff and important bug fix descriptions here in a list, when they are too small to warrant a section by themselves - Change the version in the URL below!>
19 +* The [[Document Tree Macro>>extensions:Extension.Document Tree Macro||anchor="HParameters"]] has a new parameter to limit the number of child nodes displayed when a parent node is expanded for the first time.
20 20  
21 21  See the [[full list of JIRA issues>>http://jira.xwiki.org/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?jqlQuery=project+in+%28XCOMMONS%2C+XRENDERING%2C+XWIKI%2C+XE%29+and+status+%3D+Closed+and+resolution+%3D+Fixed+and+fixVersion+%3D+%22<version>%22&tempMax=1000]] fixed in this release.
22 22  
23 23  = For Developers =
24 24  
25 -== <developer feature N> ==
25 +== Standard java.lang.Package properties ==
26 26  
27 -<description of developer feature N>
27 +The following properties are now automatically added to all Maven jar modules MANIFEST files:
28 28  
29 +{{code language="properties"}}
30 +Specification-Title: ${project.name}
31 +Specification-Version: ${project.version}
32 +Specification-Vendor: ${project.organization.name}
33 +Implementation-Title: ${project.name}
34 +Implementation-Version: ${project.version}
35 +Implementation-Vendor-Id: ${project.groupId}
36 +Implementation-Vendor: ${project.organization.name}
37 +Implementation-URL: ${project.url}
38 +{{/code}}
39 +
40 +And can be accessed using {{java.lang.Package}} from any class. For example:
41 +
42 +{{code language="java"}}
43 +String myVersion = this.getClass().getPackage().getImplementationVersion();
44 +{{/code}}
45 +
29 29  == Deprecated and Retired projects ==
30 30  
31 31  <description of deprecated and retired projects>
... ... @@ -82,5 +82,4 @@
82 82  
83 83  The following APIs were modified since XWiki 8.0:
84 84  
85 -{{backwardCompatiblityReport tag="master"/}}
86 -
102 +{{backwardCompatiblityReport version="master"/}}

Get Connected