blob: 0183f4be25daa7db4ec99467dac4551b0dba6765 [file] [log] [blame]
John E. Conlona31c5ca2007-02-07 21:26:50 +00001<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/maven-v4_0_0.xsd">
mbishopc2f277a2012-08-09 11:24:32 -07002
Ceki Gulcu34499462007-02-22 21:15:18 +00003 <parent>
4 <groupId>org.slf4j</groupId>
5 <artifactId>slf4j-parent</artifactId>
Ceki Gulcu6f3d29f2012-06-12 14:42:50 +02006 <version>1.6.7-SNAPSHOT</version>
Ceki Gulcu34499462007-02-22 21:15:18 +00007 </parent>
mbishopc2f277a2012-08-09 11:24:32 -07008
Ceki Gulcu34499462007-02-22 21:15:18 +00009 <modelVersion>4.0.0</modelVersion>
mbishopc2f277a2012-08-09 11:24:32 -070010
Ceki Gulcu34499462007-02-22 21:15:18 +000011 <groupId>org.slf4j</groupId>
12 <artifactId>osgi-over-slf4j</artifactId>
Ceki Gulcu34499462007-02-22 21:15:18 +000013 <packaging>bundle</packaging>
mbishopc2f277a2012-08-09 11:24:32 -070014 <name>OSGi LogService implemented over SLF4J</name>
15
Ceki Gulcu34499462007-02-22 21:15:18 +000016 <url>http://www.slf4j.org</url>
17 <description>
18 OSGi LogService implementation over SLF4J
19 </description>
mbishopc2f277a2012-08-09 11:24:32 -070020
John E. Conlona31c5ca2007-02-07 21:26:50 +000021 <dependencies>
22 <dependency>
23 <groupId>org.osgi</groupId>
24 <artifactId>org.osgi.core</artifactId>
mbishopc2f277a2012-08-09 11:24:32 -070025 <version>4.2.0</version>
John E. Conlona31c5ca2007-02-07 21:26:50 +000026 <scope>provided</scope>
27 </dependency>
28 <dependency>
29 <groupId>org.osgi</groupId>
mbishopc2f277a2012-08-09 11:24:32 -070030 <artifactId>org.osgi.enterprise</artifactId>
31 <version>4.2.0</version>
John E. Conlona31c5ca2007-02-07 21:26:50 +000032 <scope>provided</scope>
33 </dependency>
mbishopc2f277a2012-08-09 11:24:32 -070034
John E. Conlona31c5ca2007-02-07 21:26:50 +000035 <dependency>
36 <groupId>org.slf4j</groupId>
37 <artifactId>slf4j-simple</artifactId>
38 <version>${project.version}</version>
39 <scope>provided</scope>
Ceki Gulcu34499462007-02-22 21:15:18 +000040 </dependency>
John E. Conlona31c5ca2007-02-07 21:26:50 +000041 </dependencies>
42 <build>
mbishopc2f277a2012-08-09 11:24:32 -070043 <plugins>
John E. Conlona31c5ca2007-02-07 21:26:50 +000044 <plugin>
Ceki Gulcu34499462007-02-22 21:15:18 +000045 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
mbishopc2f277a2012-08-09 11:24:32 -070047 <version>2.3.7</version>
Ceki Gulcu34499462007-02-22 21:15:18 +000048 <extensions>true</extensions>
49 <configuration>
50 <instructions>
51 <Export-Package>org.osgi.service.log</Export-Package>
Ceki Gulcu34499462007-02-22 21:15:18 +000052 <Bundle-Activator>org.slf4j.osgi.logservice.impl.Activator</Bundle-Activator>
53 </instructions>
54 </configuration>
John E. Conlona31c5ca2007-02-07 21:26:50 +000055 </plugin>
56 </plugins>
mbishopc2f277a2012-08-09 11:24:32 -070057 </build>
58</project>