Karl Pauls | 52b15d6 | 2006-06-24 15:05:58 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
| 5 | <version>0.8.0-SNAPSHOT</version> |
| 6 | </parent> |
| 7 | <modelVersion>4.0.0</modelVersion> |
Karl Pauls | 7d1df4b | 2006-11-03 13:08:31 +0000 | [diff] [blame] | 8 | <packaging>bundle</packaging> |
Karl Pauls | 52b15d6 | 2006-06-24 15:05:58 +0000 | [diff] [blame] | 9 | <name>Apache Felix EventAdmin Bridge UserAdmin</name> |
| 10 | <artifactId>org.apache.felix.eventadmin.bridge.useradmin</artifactId> |
Karl Pauls | 7d1df4b | 2006-11-03 13:08:31 +0000 | [diff] [blame] | 11 | <description> |
| 12 | This bundle provides a bridge between UserAdmin and EventAdmin events. |
| 13 | </description> |
Karl Pauls | 52b15d6 | 2006-06-24 15:05:58 +0000 | [diff] [blame] | 14 | <dependencies> |
| 15 | <dependency> |
| 16 | <groupId>${pom.groupId}</groupId> |
| 17 | <artifactId>org.osgi.core</artifactId> |
| 18 | <version>${pom.version}</version> |
Karl Pauls | 52b15d6 | 2006-06-24 15:05:58 +0000 | [diff] [blame] | 19 | </dependency> |
| 20 | <dependency> |
| 21 | <groupId>${pom.groupId}</groupId> |
| 22 | <artifactId>org.osgi.compendium</artifactId> |
| 23 | <version>${pom.version}</version> |
Karl Pauls | 52b15d6 | 2006-06-24 15:05:58 +0000 | [diff] [blame] | 24 | </dependency> |
| 25 | </dependencies> |
| 26 | <build> |
| 27 | <plugins> |
| 28 | <plugin> |
Karl Pauls | 7d1df4b | 2006-11-03 13:08:31 +0000 | [diff] [blame] | 29 | <groupId>org.apache.felix</groupId> |
| 30 | <artifactId>maven-bundle-plugin</artifactId> |
Karl Pauls | 52b15d6 | 2006-06-24 15:05:58 +0000 | [diff] [blame] | 31 | <extensions>true</extensions> |
| 32 | <configuration> |
Karl Pauls | 7d1df4b | 2006-11-03 13:08:31 +0000 | [diff] [blame] | 33 | <instructions> |
| 34 | <Bundle-Activator>${pom.artifactId}.Activator</Bundle-Activator> |
| 35 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 36 | <Private-Package>${pom.artifactId}.*</Private-Package> |
Karl Pauls | 7d1df4b | 2006-11-03 13:08:31 +0000 | [diff] [blame] | 37 | </instructions> |
Karl Pauls | 52b15d6 | 2006-06-24 15:05:58 +0000 | [diff] [blame] | 38 | </configuration> |
| 39 | </plugin> |
| 40 | </plugins> |
| 41 | </build> |
| 42 | </project> |