You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 19KB

8 years ago
5 years ago
8 years ago
8 years ago
8 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  1. ## Change Log
  2. All notable changes to this project will be documented in this file.
  3. This project adheres to [Semantic Versioning](http://semver.org/).
  4. ### [Unreleased][unreleased]
  5. #### Fixed
  6. #### Changed
  7. #### Added
  8. #### Removed
  9. ### [3.4.1] - 2020-08-14
  10. #### Fixed
  11. - [#371]: `ClosedFileSystemException` when I run demo (Windows)
  12. - [#391]: Incorrect enum selection in `ClassLoadingStrategy.ADP`
  13. #### Changed
  14. #### Added
  15. #### Removed
  16. ### [3.3.0] - 2020-04-21
  17. #### Fixed
  18. - [#355]: Cannot remove plugin jar file after unloading
  19. - [#359]: Calls to `File.mkdirs` in unzip logic may silently fail
  20. - [#363]: StackOverflow in `AbstractExtensionFinder.findExtensionAnnotation`
  21. - [#366]: Check proper list for debug logging
  22. #### Changed
  23. - [#364]: Failed plugin state added. When plugin failed to start previous state was kept
  24. - [#370]: Improve annotation processor error messages
  25. #### Added
  26. - [#352]: Add `equals`/`hashCode` to some data classes
  27. - [#365]: `PluginClassLoader` does not resolve classpath resources from plugin dependencies
  28. #### Removed
  29. ### [3.2.0] - 2019-11-29
  30. #### Fixed
  31. - Fix flaky test `DefaultPluginRepositoryTest.testGetPluginArchive`
  32. - [#349]: Fix Gradle demo
  33. #### Changed
  34. - Add more defense in `ExtensionAnnotationProcessor` (error message if something is wrong)
  35. - Add more tests in `ExtensionAnnotationProcessorTest`
  36. #### Added
  37. - [#348]: Found extensions when using decorated annotations
  38. - [#350]: Support any interface as an `ExtensionPoint`
  39. #### Removed
  40. ### [3.1.0] - 2019-09-08
  41. #### Fixed
  42. - [#335]: `DefaultPluginStatusProvider.enablePlugin` function seems to be wrong
  43. #### Changed
  44. - [#328]: Modified `PluginState` to an enum
  45. - [#330]: Make `AbstractPluginManager` fields protected
  46. #### Added
  47. - [#323]: Add IDEA classpath for Development mode
  48. - [#337]: Implement `PluginClassLoader.getResources`
  49. #### Removed
  50. ### [3.0.0] - 2019-06-12
  51. #### Fixed
  52. - [#297]: Loading extensions may shutdown the application
  53. - Fix the plugin directory will be deleted anyway in unzip `extract` method
  54. - [#309]: Can't delete/remove unloaded plugin
  55. - [#311]: Wrong file delete on `JarPluginRepository.deletePluginPath`
  56. - [#322]: Fix `FileSystemException` in Windows on plugin delete
  57. #### Changed
  58. - Improve `run-demo` scripts
  59. - [#294]: Configure compound classes to use JAR plugins first
  60. - [#296]: Return extension classes with wildcard type arguments
  61. - [#298]: update ASM library to version 7.1
  62. - Migrate to JUnit 5
  63. - Improve `PluginZip` (used in tests)
  64. - Improve readability of `PropertiesPluginDescriptorFinderTest`
  65. - Convert `PluginException` in `PluginRuntimeException` and use unchecked exceptions in PF4J
  66. #### Added
  67. - [#278]: Make the project build on Java 11
  68. - [#287]: Check no plugin with same `pluginId` is loaded
  69. - [#288]: Document thread safety of `PluginManager`s
  70. - [#292]: Communicate errors with Exceptions where appropriate
  71. - [#306]: Provide an Archetype for new PF4J based projects
  72. - [#307]: Add `JarPluginManager` and `ZipPluginManager`
  73. - Add constants for manifest's attributes names
  74. - Add constants for properties names
  75. - Add `PluginJar` (used in tests)
  76. - Add `AbstractPluginManagerTest`
  77. - Add `DirectedGraphTest`
  78. - Add `JarPluginManagerTest`
  79. - Extract constants for some system property names
  80. #### Removed
  81. - Remove deprecated constructor in `DefaultPluginManager`
  82. ### [2.6.0] - 2019-02-01
  83. #### Fixed
  84. - [#273]: `ServiceProviderExtensionFinder` should scan the whole classpath
  85. - [#276]: The plugins in the demo did not load successfully
  86. - [#277]: Configures plugin manager to load "HowdyGreeting" using the services
  87. #### Changed
  88. - Improve run demo scripts
  89. - [#248]: Load extensions from plugin libraries
  90. - [#271]: Update `slf4j` dependency to version 1.7.25
  91. #### Added
  92. - [#265]: Explicitly configure extension points for an extension
  93. - [#270]: Optional plugin dependencies
  94. - [#275]: Add automatic module name to `pf4j.jar`
  95. #### Removed
  96. ### [2.5.0] - 2018-12-12
  97. #### Fixed
  98. - [#248]: Plugin upgrade version order not guaranteed
  99. - [#250]: Method `DependencyResolver.resolve` removes dependents in check version block
  100. - [#252]: `java.nio.file.FileSystemNotFoundException`
  101. #### Changed
  102. - [#209]: Why "plugin.properties" is required?
  103. #### Added
  104. - [#242]: Add delete hook method in `Plugin`
  105. - [#256]: Adds ability to configure plugin directory
  106. #### Removed
  107. ### [2.4.0] - 2018-08-01
  108. #### Fixed
  109. - [#222]: Correct the class passed to `DefaultPluginFactory's` logger
  110. - [#223]: A disabled plugin is automatically started by `pluginManager.startPlugins()`
  111. - [#229]: Can't find `plugin.properties` file inside `.jar`
  112. - Fix error in `FileUtils.getFileSystem`
  113. #### Changed
  114. #### Added
  115. - [#229]: Add `SingletonExtensionFactory`
  116. - [#229]: Allow a way to query all extension classes for a given plugin
  117. #### Removed
  118. ### [2.3.0] - 2018-06-04
  119. #### Fixed
  120. - [#202]: Spaces in name produce 'Illegal character in opaque part at index'
  121. - [#203]: File lock on plugin jar not released
  122. #### Changed
  123. - [#171]: Change the copyright text from the head of files
  124. - [#218]: It should not return null after it detects that the plugin has been loaded
  125. - [#219]: Improve support for Gradle and Kotlin
  126. #### Added
  127. - [#199]: Make optional the plugin class attribute of plugin manifest
  128. - [#206]: Support multiple plugin directories
  129. - Add aliases to the runtime modes (`dev` for `development` and `prod` for `deployment`)
  130. #### Removed
  131. ### [2.2.0] - 2018-02-11
  132. #### Fixed
  133. - [#197]: Close `JarFile` stream after `getManifest` in `ManifestPluginDescriptorFinder.find(Path pluginPath)`
  134. - Before start a plugin check if the plugin is resolved
  135. - [#200]: Compiling with Maven under Java9 breaks project
  136. #### Changed
  137. - [#194]: Changing packaging from ZIP to JAR for demo
  138. - Improve `VersionManager` (prepare a new `pf4j-update` release)
  139. #### Added
  140. - [#166]: Simplify main `README` (move the content to http://www.pf4j.org)
  141. - [#190]: Add methods to just get extension classes
  142. - Add `LoggingPluginStateListener` as listener in `DefaultPluginManager` (only for `development` mode)
  143. - Add new `RESOLVED` as plugin state
  144. - Add support for PARENT FIRST loading strategy
  145. #### Removed
  146. ### [2.1.0] - 2018-01-10
  147. #### Fixed
  148. - [#177]: Fix Gradle demo
  149. - [#178]: `@Override` should not change method signature
  150. - [#184]: Bug in FileUtils while creating URI on Windows
  151. #### Changed
  152. - [#180]: Refactoring to make `PluginDescriptor` more usable
  153. #### Added
  154. #### Removed
  155. ### [2.0.0] - 2017-10-17
  156. #### Fixed
  157. - [#156]: `FileSystemException` when I call `deletePlugin` after `getExtensions`
  158. - Fix Maven warnings
  159. #### Changed
  160. - [#149]: Updated gradle demo dependencies and switched from System.out.println to slf4j log
  161. - Update some code to Java 7
  162. - [#168]: Change root package from `ro.fortsoft.pf4j` to `org.pf4j`
  163. - Open a new extension (protected method) point in `PropertiesPluginDescriptorFinder`
  164. #### Added
  165. - [#146]: Kotlin plugin example added and README updated for Kotlin
  166. - [#150]: Enforce dependencies versions
  167. - [#155]: Add VersionManager abstractization (breaking change)
  168. - [#172]: Add `CompoundPluginDescriptorFinder`
  169. - Add `CompoundPluginLoader`
  170. #### Removed
  171. - Remove `JarPluginManager` (the logic is included in `DefaultPluginManager` via `CompoundXYZ` concept)
  172. ### [1.3.0] - 2017-05-03
  173. #### Fixed
  174. - [#129]: Properties Descriptor finder bug fixes and a test
  175. - [#131]: Fix bug in `loadJars()`, did not add `/lib` to classloader
  176. - [#134]: `getVersion()` use wrong class for calculating PF4J version
  177. - [#135]: `deletePlugin()` failed to delete plugin folder with contents
  178. - [#137]: The requires Expression does not print well
  179. - [#140]: Unzip plugin zip file in `loadPluginFromPath()`
  180. #### Changed
  181. - [#130]: Refactor validation of PluginDescriptors
  182. - [#138]: Refactor of requires in PluginDescriptor (breaking change)
  183. #### Added
  184. - [#133]: Support for adding license information to the plugins
  185. - [#136]: Delete plugin zip on uninstall
  186. - [#139]: Ability to get `pluginsRoot` from PluginManager
  187. - Add constructors with varargs in PluginException
  188. #### Removed
  189. ### [1.2.0] - 2017-03-03
  190. #### Fixed
  191. - [#125]: Fix possible NPE
  192. #### Changed
  193. - [#116]: Updated PF4J to newest version in Gradle demo
  194. - Reactivate protection against the issues similar with [#97]
  195. #### Added
  196. - [#128]: Add `JarPluginManager`, `PluginLoader`, `AbstractPluginManager`
  197. #### Removed
  198. ### [1.1.1] - 2016-11-17
  199. #### Fixed
  200. - [#116]: Default/System extensions are duplicated
  201. #### Changed
  202. #### Added
  203. - [#111]: Add inheritance support on Extension annotation
  204. #### Removed
  205. ### [1.1.0] - 2016-08-22
  206. #### Fixed
  207. #### Changed
  208. - [#107]: PluginDescriptor can't be extended
  209. #### Added
  210. - [#108]: Return a list of all extensions from a plugin and optional for an extension point
  211. #### Removed
  212. ### [1.0.0] - 2016-07-07
  213. #### Fixed
  214. - [#99]: NPE in `DefaultPluginManager.stopPlugin()`
  215. - [#100]: Gradle build in demo_gradle is broken
  216. - [#103]: Gradle demos don't build zip with libs
  217. - Fix logging issue in demo
  218. #### Changed
  219. - Rework defense against [#97]
  220. - Eliminate duplicate log messages from demo
  221. - Improve debugging for "no extensions found"
  222. #### Added
  223. #### Removed
  224. ### [0.13.1] - 2016-04-01
  225. #### Fixed
  226. - [#98]: WARN ro.fortsoft.pf4j.AbstractExtensionFinder (too many log lines)
  227. ### [0.13.0] - 2016-03-28
  228. #### Fixed
  229. - Fix issue with listing files from the jar file in `readPluginsStorages()`
  230. - [#89]: Fix "URI is not hierarchical" issue
  231. - [#91]: Using project lombok with pf4j causes javax.annotation.processing.FilerException
  232. #### Changed
  233. - Log with trace level on PluginClassLoader
  234. #### Added
  235. - Add `distributionManagement` section in `pom.xml`
  236. - Add defense to [#97]
  237. - Add helper `DefaultExtensionFinder.addServiceProviderExtensionFinder()`
  238. #### Removed
  239. - Disable `ServiceProviderExtensionFinder` from `DefaultExtensionFinder`
  240. ### [0.12.0] - 2016-01-29
  241. #### Fixed
  242. - [#83]: `stopPlugin()` throws NPE for dependents check
  243. - In development mode hide `plugins/target` folder (it' is not a plugin)
  244. #### Changed
  245. - Add constructor with vararg and make `addFileFilter()` fluent in `AndFileFilter`
  246. - [#84]: remove warn from `DefaultPluginManager.whichPlugin()`
  247. - Pull method `DefaultPluginManager.whichPlugin()` to PluginManager
  248. - Add `getExtensionFactory()` in PluginManager interface
  249. #### Added
  250. - Add constructor with vararg and make addFileFilter method fluent in `AndFileFilter`
  251. - Add `NameFileFilter` and `OrFileFilter`
  252. - [#85]: ExtensionStorage based on Java Service Provider (META-INf/services)
  253. #### Removed
  254. ### [0.11.0] - 2015-11-19
  255. #### Fixed
  256. - [#78]: `PluginManager.disablePlugin()` throws UnsupportedOperationExeption
  257. #### Changed
  258. - Make more fields protected in DefaultPluginManager
  259. - [#70]: Improve PluginDescriptorFinder implementations
  260. - Make PluginManager available in Plugin via PluginWrapper
  261. #### Added
  262. - [#66]: Add possibility to overwrite DefaultPluginManager (to create a JarPluginManager)
  263. - Added one more fail test to DefaultPluginFactory
  264. - Added one more fail test to DefaultExtensionFactory
  265. - Added ManifestPluginDescriptorFinder tests
  266. #### Removed
  267. ### [0.10.0] - 2015-08-11
  268. #### Fixed
  269. - [#39]: Fix build on JDK 1.8
  270. - [42]: Stop Plugin issue
  271. - [60]: Failed tests
  272. #### Changed
  273. - Improve logging for DefaultExtensionFinder
  274. - Add defense for [#21]: (not find META-INF/extensions.idx)
  275. - [#44]: Replace `Version` class with `semver` lib
  276. - [#55]: Stop plugin leafs first
  277. - [63]: Extended pf4j to allow custom class loaders to be created
  278. #### Added
  279. - [#33]: Add demo build configuration with Gradle
  280. - [#40]: Add Plugin status provider
  281. - [#41]: Added plugin archive source abstraction
  282. - Added test for DefaultPluginRepository
  283. #### Removed
  284. [unreleased]: https://github.com/decebals/pf4j/compare/release-3.4.1...HEAD
  285. [3.4.1]: https://github.com/decebals/pf4j/compare/release-3.4.0...release-3.4.1
  286. [3.4.1]: https://github.com/decebals/pf4j/compare/release-3.3.0...release-3.4.0
  287. [3.3.0]: https://github.com/decebals/pf4j/compare/release-3.2.0...release-3.3.0
  288. [3.2.0]: https://github.com/decebals/pf4j/compare/release-3.1.0...release-3.2.0
  289. [3.1.0]: https://github.com/decebals/pf4j/compare/release-3.0.0...release-3.1.0
  290. [3.0.0]: https://github.com/decebals/pf4j/compare/release-2.6.0...release-3.0.0
  291. [2.6.0]: https://github.com/decebals/pf4j/compare/release-2.5.0...release-2.6.0
  292. [2.5.0]: https://github.com/decebals/pf4j/compare/release-2.4.0...release-2.5.0
  293. [2.4.0]: https://github.com/decebals/pf4j/compare/release-2.3.0...release-2.4.0
  294. [2.3.0]: https://github.com/decebals/pf4j/compare/release-2.2.0...release-2.3.0
  295. [2.2.0]: https://github.com/decebals/pf4j/compare/release-2.1.0...release-2.2.0
  296. [2.1.0]: https://github.com/decebals/pf4j/compare/release-2.0.0...release-2.1.0
  297. [2.0.0]: https://github.com/decebals/pf4j/compare/release-1.3.0...release-2.0.0
  298. [1.3.0]: https://github.com/decebals/pf4j/compare/release-1.2.0...release-1.3.0
  299. [1.2.0]: https://github.com/decebals/pf4j/compare/release-1.1.1...release-1.2.0
  300. [1.1.1]: https://github.com/decebals/pf4j/compare/release-1.1.0...release-1.1.1
  301. [1.1.0]: https://github.com/decebals/pf4j/compare/release-1.0.0...release-1.1.0
  302. [1.0.0]: https://github.com/decebals/pf4j/compare/release-0.13.1...release-1.0.0
  303. [0.13.1]: https://github.com/decebals/pf4j/compare/release-0.13.0...release-0.13.1
  304. [0.13.0]: https://github.com/decebals/pf4j/compare/release-0.12.0...release-0.13.0
  305. [0.12.0]: https://github.com/decebals/pf4j/compare/release-0.11.0...release-0.12.0
  306. [0.11.0]: https://github.com/decebals/pf4j/compare/release-0.10.0...release-0.11.0
  307. [0.10.0]: https://github.com/decebals/pf4j/compare/release-0.9.0...release-0.10.0
  308. [#391]: https://github.com/pf4j/pf4j/issues/391
  309. [#371]: https://github.com/pf4j/pf4j/issues/371
  310. [#370]: https://github.com/pf4j/pf4j/pull/370
  311. [#366]: https://github.com/pf4j/pf4j/pull/366
  312. [#365]: https://github.com/pf4j/pf4j/pull/365
  313. [#364]: https://github.com/pf4j/pf4j/pull/364
  314. [#363]: https://github.com/pf4j/pf4j/issues/363
  315. [#359]: https://github.com/pf4j/pf4j/issues/359
  316. [#355]: https://github.com/pf4j/pf4j/issues/355
  317. [#352]: https://github.com/pf4j/pf4j/pull/352
  318. [#350]: https://github.com/pf4j/pf4j/pull/350
  319. [#349]: https://github.com/pf4j/pf4j/pull/349
  320. [#348]: https://github.com/pf4j/pf4j/pull/348
  321. [#337]: https://github.com/pf4j/pf4j/pull/337
  322. [#335]: https://github.com/pf4j/pf4j/issues/335
  323. [#330]: https://github.com/pf4j/pf4j/pull/330
  324. [#328]: https://github.com/pf4j/pf4j/pull/328
  325. [#323]: https://github.com/pf4j/pf4j/pull/323
  326. [#322]: https://github.com/pf4j/pf4j/pull/322
  327. [#311]: https://github.com/pf4j/pf4j/issues/311
  328. [#309]: https://github.com/pf4j/pf4j/issues/309
  329. [#307]: https://github.com/pf4j/pf4j/issues/307
  330. [#306]: https://github.com/pf4j/pf4j/issues/306
  331. [#298]: https://github.com/pf4j/pf4j/pull/298
  332. [#297]: https://github.com/pf4j/pf4j/issues/297
  333. [#296]: https://github.com/pf4j/pf4j/issues/296
  334. [#294]: https://github.com/pf4j/pf4j/issues/294
  335. [#292]: https://github.com/pf4j/pf4j/issues/292
  336. [#288]: https://github.com/pf4j/pf4j/pull/288
  337. [#287]: https://github.com/pf4j/pf4j/pull/287
  338. [#278]: https://github.com/pf4j/pf4j/pull/278
  339. [#277]: https://github.com/pf4j/pf4j/pull/277
  340. [#276]: https://github.com/pf4j/pf4j/pull/276
  341. [#275]: https://github.com/pf4j/pf4j/pull/275
  342. [#273]: https://github.com/pf4j/pf4j/pull/273
  343. [#271]: https://github.com/pf4j/pf4j/pull/271
  344. [#270]: https://github.com/pf4j/pf4j/pull/270
  345. [#265]: https://github.com/pf4j/pf4j/pull/265
  346. [#262]: https://github.com/pf4j/pf4j/pull/262
  347. [#256]: https://github.com/pf4j/pf4j/pull/256
  348. [#252]: https://github.com/pf4j/pf4j/issues/252
  349. [#250]: https://github.com/pf4j/pf4j/issues/250
  350. [#248]: https://github.com/pf4j/pf4j/issues/248
  351. [#242]: https://github.com/pf4j/pf4j/issues/242
  352. [#233]: https://github.com/pf4j/pf4j/pull/233
  353. [#232]: https://github.com/pf4j/pf4j/issues/232
  354. [#229]: https://github.com/pf4j/pf4j/issues/229
  355. [#223]: https://github.com/pf4j/pf4j/issues/223
  356. [#222]: https://github.com/pf4j/pf4j/pull/222
  357. [#219]: https://github.com/pf4j/pf4j/pull/219
  358. [#218]: https://github.com/pf4j/pf4j/issues/218
  359. [#209]: https://github.com/pf4j/pf4j/issues/209
  360. [#206]: https://github.com/pf4j/pf4j/issues/206
  361. [#203]: https://github.com/pf4j/pf4j/issues/203
  362. [#202]: https://github.com/pf4j/pf4j/issues/202
  363. [#200]: https://github.com/decebals/pf4j/issues/200
  364. [#199]: https://github.com/pf4j/pf4j/issues/199
  365. [#197]: https://github.com/decebals/pf4j/pull/197
  366. [#194]: https://github.com/decebals/pf4j/pull/194
  367. [#190]: https://github.com/decebals/pf4j/issues/190
  368. [#184]: https://github.com/decebals/pf4j/issues/184
  369. [#180]: https://github.com/decebals/pf4j/pull/180
  370. [#178]: https://github.com/decebals/pf4j/pull/178
  371. [#177]: https://github.com/decebals/pf4j/pull/177
  372. [#172]: https://github.com/decebals/pf4j/pull/172
  373. [#171]: https://github.com/pf4j/pf4j/issues/171
  374. [#168]: https://github.com/decebals/pf4j/pull/168
  375. [#166]: https://github.com/decebals/pf4j/issues/166
  376. [#156]: https://github.com/decebals/pf4j/issues/156
  377. [#155]: https://github.com/decebals/pf4j/pull/155
  378. [#150]: https://github.com/decebals/pf4j/pull/150
  379. [#149]: https://github.com/decebals/pf4j/pull/149
  380. [#146]: https://github.com/decebals/pf4j/pull/146
  381. [#140]: https://github.com/decebals/pf4j/pull/140
  382. [#139]: https://github.com/decebals/pf4j/pull/139
  383. [#138]: https://github.com/decebals/pf4j/pull/138
  384. [#137]: https://github.com/decebals/pf4j/pull/137
  385. [#136]: https://github.com/decebals/pf4j/pull/136
  386. [#135]: https://github.com/decebals/pf4j/pull/135
  387. [#134]: https://github.com/decebals/pf4j/pull/134
  388. [#133]: https://github.com/decebals/pf4j/pull/133
  389. [#131]: https://github.com/decebals/pf4j/pull/131
  390. [#130]: https://github.com/decebals/pf4j/pull/130
  391. [#129]: https://github.com/decebals/pf4j/pull/129
  392. [#128]: https://github.com/decebals/pf4j/pull/128
  393. [#125]: https://github.com/decebals/pf4j/pull/125
  394. [#122]: https://github.com/decebals/pf4j/pull/122
  395. [#116]: https://github.com/decebals/pf4j/issues/116
  396. [#111]: https://github.com/decebals/pf4j/pull/111
  397. [#108]: https://github.com/decebals/pf4j/pull/108
  398. [#107]: https://github.com/decebals/pf4j/issues/107
  399. [#103]: https://github.com/decebals/pf4j/issues/103
  400. [#100]: https://github.com/decebals/pf4j/issues/100
  401. [#99]: https://github.com/decebals/pf4j/issues/99
  402. [#98]: https://github.com/decebals/pf4j/issues/98
  403. [#97]: https://github.com/decebals/pf4j/issues/97
  404. [#91]: https://github.com/decebals/pf4j/issues/91
  405. [#89]: https://github.com/decebals/pf4j/pull/89
  406. [#85]: https://github.com/decebals/pf4j/issues/85
  407. [#84]: https://github.com/decebals/pf4j/issues/84
  408. [#83]: https://github.com/decebals/pf4j/issues/83
  409. [#78]: https://github.com/decebals/pf4j/issues/78
  410. [#70]: https://github.com/decebals/pf4j/issues/70
  411. [#66]: https://github.com/decebals/pf4j/issues/66
  412. [#63]: https://github.com/decebals/pf4j/issues/63
  413. [#60]: https://github.com/decebals/pf4j/issues/60
  414. [#55]: https://github.com/decebals/pf4j/pull/55
  415. [#44]: https://github.com/decebals/pf4j/pull/44
  416. [#42]: https://github.com/decebals/pf4j/pull/42
  417. [#41]: https://github.com/decebals/pf4j/pull/41
  418. [#40]: https://github.com/decebals/pf4j/pull/40
  419. [#39]: https://github.com/decebals/pf4j/pull/39
  420. [#33]: https://github.com/decebals/pf4j/pull/33
  421. [#21]: https://github.com/decebals/pf4j/issues/21