Ceki Gulcu | 67c07b7 | 2014-12-13 19:12:03 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | |
| 4 | <modelVersion>4.0.0</modelVersion> |
mbishop | c2f277a | 2012-08-09 11:24:32 -0700 | [diff] [blame] | 5 | |
Ceki Gulcu | 3449946 | 2007-02-22 21:15:18 +0000 | [diff] [blame] | 6 | <parent> |
| 7 | <groupId>org.slf4j</groupId> |
| 8 | <artifactId>slf4j-parent</artifactId> |
Ceki Gulcu | 7122d7e | 2015-03-26 22:01:21 +0100 | [diff] [blame^] | 9 | <version>1.7.13-SNAPSHOT</version> |
Ceki Gulcu | 3449946 | 2007-02-22 21:15:18 +0000 | [diff] [blame] | 10 | </parent> |
mbishop | c2f277a | 2012-08-09 11:24:32 -0700 | [diff] [blame] | 11 | |
Ceki Gulcu | 3449946 | 2007-02-22 21:15:18 +0000 | [diff] [blame] | 12 | <artifactId>osgi-over-slf4j</artifactId> |
Ceki Gulcu | 67c07b7 | 2014-12-13 19:12:03 +0100 | [diff] [blame] | 13 | |
Ceki Gulcu | 3449946 | 2007-02-22 21:15:18 +0000 | [diff] [blame] | 14 | <packaging>bundle</packaging> |
mbishop | c2f277a | 2012-08-09 11:24:32 -0700 | [diff] [blame] | 15 | <name>OSGi LogService implemented over SLF4J</name> |
| 16 | |
Ceki Gulcu | 3449946 | 2007-02-22 21:15:18 +0000 | [diff] [blame] | 17 | <url>http://www.slf4j.org</url> |
| 18 | <description> |
| 19 | OSGi LogService implementation over SLF4J |
| 20 | </description> |
mbishop | c2f277a | 2012-08-09 11:24:32 -0700 | [diff] [blame] | 21 | |
John E. Conlon | a31c5ca | 2007-02-07 21:26:50 +0000 | [diff] [blame] | 22 | <dependencies> |
| 23 | <dependency> |
| 24 | <groupId>org.osgi</groupId> |
| 25 | <artifactId>org.osgi.core</artifactId> |
mbishop | c2f277a | 2012-08-09 11:24:32 -0700 | [diff] [blame] | 26 | <version>4.2.0</version> |
John E. Conlon | a31c5ca | 2007-02-07 21:26:50 +0000 | [diff] [blame] | 27 | <scope>provided</scope> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.osgi</groupId> |
mbishop | c2f277a | 2012-08-09 11:24:32 -0700 | [diff] [blame] | 31 | <artifactId>org.osgi.enterprise</artifactId> |
| 32 | <version>4.2.0</version> |
John E. Conlon | a31c5ca | 2007-02-07 21:26:50 +0000 | [diff] [blame] | 33 | <scope>provided</scope> |
| 34 | </dependency> |
mbishop | c2f277a | 2012-08-09 11:24:32 -0700 | [diff] [blame] | 35 | |
John E. Conlon | a31c5ca | 2007-02-07 21:26:50 +0000 | [diff] [blame] | 36 | <dependency> |
| 37 | <groupId>org.slf4j</groupId> |
| 38 | <artifactId>slf4j-simple</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | <scope>provided</scope> |
Ceki Gulcu | 3449946 | 2007-02-22 21:15:18 +0000 | [diff] [blame] | 41 | </dependency> |
John E. Conlon | a31c5ca | 2007-02-07 21:26:50 +0000 | [diff] [blame] | 42 | </dependencies> |
| 43 | <build> |
mbishop | c2f277a | 2012-08-09 11:24:32 -0700 | [diff] [blame] | 44 | <plugins> |
John E. Conlon | a31c5ca | 2007-02-07 21:26:50 +0000 | [diff] [blame] | 45 | <plugin> |
Ceki Gulcu | 3449946 | 2007-02-22 21:15:18 +0000 | [diff] [blame] | 46 | <groupId>org.apache.felix</groupId> |
| 47 | <artifactId>maven-bundle-plugin</artifactId> |
mbishop | c2f277a | 2012-08-09 11:24:32 -0700 | [diff] [blame] | 48 | <version>2.3.7</version> |
Ceki Gulcu | 3449946 | 2007-02-22 21:15:18 +0000 | [diff] [blame] | 49 | <extensions>true</extensions> |
| 50 | <configuration> |
| 51 | <instructions> |
| 52 | <Export-Package>org.osgi.service.log</Export-Package> |
Ceki Gulcu | 3449946 | 2007-02-22 21:15:18 +0000 | [diff] [blame] | 53 | <Bundle-Activator>org.slf4j.osgi.logservice.impl.Activator</Bundle-Activator> |
| 54 | </instructions> |
| 55 | </configuration> |
John E. Conlon | a31c5ca | 2007-02-07 21:26:50 +0000 | [diff] [blame] | 56 | </plugin> |
| 57 | </plugins> |
mbishop | c2f277a | 2012-08-09 11:24:32 -0700 | [diff] [blame] | 58 | </build> |
mbishop | 3e121c2 | 2012-09-20 17:27:55 -0700 | [diff] [blame] | 59 | </project> |