blob: 66b57ad677fec9a674783332344797bd1356108a [file] [log] [blame]
Ceki Gulcu67c07b72014-12-13 19:12:03 +01001<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>
mbishopc2f277a2012-08-09 11:24:32 -07005
Ceki Gulcu34499462007-02-22 21:15:18 +00006 <parent>
7 <groupId>org.slf4j</groupId>
8 <artifactId>slf4j-parent</artifactId>
Ceki Gulcu1137e5b2015-01-06 21:48:52 +01009 <version>1.7.11-SNAPSHOT</version>
Ceki Gulcu34499462007-02-22 21:15:18 +000010 </parent>
mbishopc2f277a2012-08-09 11:24:32 -070011
Ceki Gulcu34499462007-02-22 21:15:18 +000012 <artifactId>osgi-over-slf4j</artifactId>
Ceki Gulcu67c07b72014-12-13 19:12:03 +010013
Ceki Gulcu34499462007-02-22 21:15:18 +000014 <packaging>bundle</packaging>
mbishopc2f277a2012-08-09 11:24:32 -070015 <name>OSGi LogService implemented over SLF4J</name>
16
Ceki Gulcu34499462007-02-22 21:15:18 +000017 <url>http://www.slf4j.org</url>
18 <description>
19 OSGi LogService implementation over SLF4J
20 </description>
mbishopc2f277a2012-08-09 11:24:32 -070021
John E. Conlona31c5ca2007-02-07 21:26:50 +000022 <dependencies>
23 <dependency>
24 <groupId>org.osgi</groupId>
25 <artifactId>org.osgi.core</artifactId>
mbishopc2f277a2012-08-09 11:24:32 -070026 <version>4.2.0</version>
John E. Conlona31c5ca2007-02-07 21:26:50 +000027 <scope>provided</scope>
28 </dependency>
29 <dependency>
30 <groupId>org.osgi</groupId>
mbishopc2f277a2012-08-09 11:24:32 -070031 <artifactId>org.osgi.enterprise</artifactId>
32 <version>4.2.0</version>
John E. Conlona31c5ca2007-02-07 21:26:50 +000033 <scope>provided</scope>
34 </dependency>
mbishopc2f277a2012-08-09 11:24:32 -070035
John E. Conlona31c5ca2007-02-07 21:26:50 +000036 <dependency>
37 <groupId>org.slf4j</groupId>
38 <artifactId>slf4j-simple</artifactId>
39 <version>${project.version}</version>
40 <scope>provided</scope>
Ceki Gulcu34499462007-02-22 21:15:18 +000041 </dependency>
John E. Conlona31c5ca2007-02-07 21:26:50 +000042 </dependencies>
43 <build>
mbishopc2f277a2012-08-09 11:24:32 -070044 <plugins>
John E. Conlona31c5ca2007-02-07 21:26:50 +000045 <plugin>
Ceki Gulcu34499462007-02-22 21:15:18 +000046 <groupId>org.apache.felix</groupId>
47 <artifactId>maven-bundle-plugin</artifactId>
mbishopc2f277a2012-08-09 11:24:32 -070048 <version>2.3.7</version>
Ceki Gulcu34499462007-02-22 21:15:18 +000049 <extensions>true</extensions>
50 <configuration>
51 <instructions>
52 <Export-Package>org.osgi.service.log</Export-Package>
Ceki Gulcu34499462007-02-22 21:15:18 +000053 <Bundle-Activator>org.slf4j.osgi.logservice.impl.Activator</Bundle-Activator>
54 </instructions>
55 </configuration>
John E. Conlona31c5ca2007-02-07 21:26:50 +000056 </plugin>
57 </plugins>
mbishopc2f277a2012-08-09 11:24:32 -070058 </build>
mbishop3e121c22012-09-20 17:27:55 -070059</project>