Richard S. Hall | 0b8e3ba | 2006-10-25 13:26:32 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
Richard S. Hall | 4d5cf06 | 2006-12-06 16:12:42 +0000 | [diff] [blame] | 5 | <version>0.9.0-incubator-SNAPSHOT</version> |
Richard S. Hall | 0b8e3ba | 2006-10-25 13:26:32 +0000 | [diff] [blame] | 6 | </parent> |
| 7 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 8 | <packaging>bundle</packaging> |
Richard S. Hall | 0b8e3ba | 2006-10-25 13:26:32 +0000 | [diff] [blame] | 9 | <name>Apache Felix Log Service</name> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 10 | <description> |
| 11 | This bundle provides an implementation of the OSGi R4 Log service. |
| 12 | </description> |
Richard S. Hall | 0b8e3ba | 2006-10-25 13:26:32 +0000 | [diff] [blame] | 13 | <artifactId>org.apache.felix.log</artifactId> |
| 14 | <dependencies> |
| 15 | <dependency> |
| 16 | <groupId>${pom.groupId}</groupId> |
| 17 | <artifactId>org.osgi.core</artifactId> |
Richard S. Hall | 0b8e3ba | 2006-10-25 13:26:32 +0000 | [diff] [blame] | 18 | </dependency> |
| 19 | <dependency> |
| 20 | <groupId>${pom.groupId}</groupId> |
| 21 | <artifactId>org.osgi.compendium</artifactId> |
Richard S. Hall | 0b8e3ba | 2006-10-25 13:26:32 +0000 | [diff] [blame] | 22 | </dependency> |
| 23 | </dependencies> |
| 24 | <build> |
| 25 | <plugins> |
| 26 | <plugin> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 27 | <groupId>org.apache.felix</groupId> |
| 28 | <artifactId>maven-bundle-plugin</artifactId> |
Richard S. Hall | 0b8e3ba | 2006-10-25 13:26:32 +0000 | [diff] [blame] | 29 | <extensions>true</extensions> |
| 30 | <configuration> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 31 | <instructions> |
| 32 | <Export-Package>org.osgi.service.log</Export-Package> |
| 33 | <Private-Package>org.apache.felix.log.impl</Private-Package> |
| 34 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 35 | <Bundle-Activator>${pom.artifactId}.impl.Activator</Bundle-Activator> |
| 36 | <Export-Service>org.osgi.service.log.LogService,org.osgi.service.log.LogReaderService</Export-Service> |
| 37 | </instructions> |
Richard S. Hall | 0b8e3ba | 2006-10-25 13:26:32 +0000 | [diff] [blame] | 38 | </configuration> |
| 39 | </plugin> |
| 40 | </plugins> |
| 41 | </build> |
| 42 | </project> |