Repository: incubator-unomi Updated Branches: refs/heads/master 98bdfd977 -> fe2e9727e
Only dependency is needed, no need to extend parent. Project: http://git-wip-us.apache.org/repos/asf/incubator-unomi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-unomi/commit/e3d05b08 Tree: http://git-wip-us.apache.org/repos/asf/incubator-unomi/tree/e3d05b08 Diff: http://git-wip-us.apache.org/repos/asf/incubator-unomi/diff/e3d05b08 Branch: refs/heads/master Commit: e3d05b089aed948181cd59877932a0f785eb27c9 Parents: 98bdfd9 Author: Chris Laprun <[email protected]> Authored: Fri Dec 11 16:11:07 2015 +0100 Committer: Chris Laprun <[email protected]> Committed: Fri Dec 11 16:11:07 2015 +0100 ---------------------------------------------------------------------- src/site/markdown/concepts.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-unomi/blob/e3d05b08/src/site/markdown/concepts.md ---------------------------------------------------------------------- diff --git a/src/site/markdown/concepts.md b/src/site/markdown/concepts.md index 50dfa00..6947c5b 100644 --- a/src/site/markdown/concepts.md +++ b/src/site/markdown/concepts.md @@ -147,14 +147,14 @@ Being built on top of Apache Karaf, Unomi leverages OSGi to support plugins. A U [Blueprint](http://aries.apache.org/modules/blueprint.html) is used to declare what the plugin provides and inject any required dependency. The Blueprint file is located, as usual, at `OSGI-INF/blueprint/blueprint.xml` in the bundle JAR file. -The plugin otherwise follows a regular maven project layout and must use the following parent in its POM file, using the appropriate Unomi version: +The plugin otherwise follows a regular maven project layout and should depend on the Unomi API maven artifact: ```xml -<parent> - <groupId>org.oasis-open.contextserver</groupId> - <artifactId>context-server-plugins</artifactId> - <version>...</version> -</parent> +<dependency> + <groupId>org.apache.unomi</groupId> + <artifactId>unomi-api</artifactId> + <version>...</version> +</dependency> ``` Some plugins consists only of JSON definitions that are used to instantiate the appropriate structures at runtime while some more involved plugins provide code that extends Unomi in deeper ways.
