knopflerfish
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.knowhowlab.osgi.shell</groupId> <artifactId>knopflerfish</artifactId> <version>1.3.0</version> </dependency>
<?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>org.knowhowlab.osgi</groupId> <artifactId>shell</artifactId> <version>1.3.0</version> </parent> <groupId>org.knowhowlab.osgi.shell</groupId> <artifactId>knopflerfish</artifactId> <version>1.3.0</version> <packaging>bundle</packaging> <name>KnowHowLab OSGi Shell - Knopflerfish console adapter</name> <description>KnowHowLab OSGi Shell - Knopflerfish console adapter</description> <url>http://knowhowlab.org</url> <developers> <developer> <name>Dmytro Pishchukhin</name> <timezone>GMT+1</timezone> </developer> </developers> <organization> <name>Know-How Lab</name> <url>http://knowhowlab.org</url> </organization> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <dependencies> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> </dependency> <dependency> <groupId>org.knopflerfish.bundle</groupId> <artifactId>console-API</artifactId> <version>2.0.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-Activator>org.knowhowlab.osgi.shell.knopflerfish.Activator</Bundle-Activator> </instructions> </configuration> </plugin> </plugins> </build> <repositories> <repository> <id>Knopflerfish Repo</id> <url>http://www.knopflerfish.org/maven2/</url> </repository> </repositories> </project>