logback-osgi-adapter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.libs</groupId> <artifactId>logback-osgi-adapter</artifactId> <version>1.0.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.daisy</groupId> <artifactId>daisy</artifactId> <version>3</version> <relativePath /> </parent> <groupId>org.daisy.libs</groupId> <artifactId>logback-osgi-adapter</artifactId> <version>1.0.0</version> <packaging>bundle</packaging> <name>LogBack OSGi log adapter</name> <description>LogListener which binds to slf4j</description> <licenses> <license> <name>Apache License</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <url>https://code.google.com/p/osgi-logging</url> <developers> <!--None present in the original pom --> </developers> <dependencies> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <version>4.3.1</version> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> <version>4.3.1</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.2</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Bundle-SymbolicName>net.kornr.log.logbackbundle</Bundle-SymbolicName> <Bundle-Activator>net.kornr.log.LogBackendActivator</Bundle-Activator> </instructions> </configuration> </plugin> </plugins> </build> <scm> <tag>logback-osgi-adapter-1.0.0</tag> </scm> </project>