Apache Karaf + Pax CDI + OSGI Command and Function
OSGI Command and Function In the Previous post we saw how to implement OSGI Service PAX CDI Implementation http://opensourceappexample.blogspot.ca/2017/06/apache-karaf-pax-cdi-osgi-service.html Let us see how we can use OSGI Command osgi.command.scope osgi.command.function pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>osgi.example</groupId> <artifactId>osgi-example-parent</artifactId> <version>1.0</version> </parent> <artifactId>osgi-example-cmd</artifactId> <packaging>bundle</packaging> <dependencies> <dep...
Comments
Post a Comment