blob: fd421639db5f7b43a9b68148f409fdd01df70147 [file] [log] [blame]
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +00003 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
6 <version>0.8.0-SNAPSHOT</version>
7 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
9 <properties>
10 <felix.version>0.8.0-SNAPSHOT</felix.version>
11 <mosgi.console.ifc.version>0.9.0-SNAPSHOT</mosgi.console.ifc.version>
12 </properties>
13
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000014 <modelVersion>4.0.0</modelVersion>
15 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000016 <name>Apache Felix MOSGi OSGi gateway status tab for the JMX console</name>
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000017 <artifactId>org.apache.felix.mosgi.managedelements.osgiprobes.tab</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000018 <version>0.9.0-SNAPSHOT</version>
19
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000020 <dependencies>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.core</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000024 <version>${felix.version}</version>
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000025 <scope>provided</scope>
26 </dependency>
27 <dependency>
28 <groupId>${pom.groupId}</groupId>
29 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000030 <version>${felix.version}</version>
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000031 <scope>provided</scope>
32 </dependency>
33 <dependency>
34 <groupId>${pom.groupId}</groupId>
35 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000036 <version>${mosgi.console.ifc.version}</version>
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000037 <scope>provided</scope>
38 </dependency>
39 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000040
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000041 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.felix.plugins</groupId>
45 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000046 <version>${felix.version}</version>
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000047 <extensions>true</extensions>
48 <configuration>
49 <osgiManifest>
50 <bundleName>MOSGi OSGi gateway status tab for the JMX console</bundleName>
51 <bundleDescription>MOSGi OSGi gateway status tab for the JMX console</bundleDescription>
52 <bundleActivator>auto-detect</bundleActivator>
53 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
54 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
55 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
56 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
57 <exportPackage>
Stephane Frenotd8e65472006-09-25 15:00:22 +000058 ${pom.artifactId};specification-version="1.0.0"
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000059 </exportPackage>
Stephane Frenotd8e65472006-09-25 15:00:22 +000060 <importPackage>
61 javax.management;specification-version="1.0.0",
62 org.osgi.framework;specification-version="1.0.0",
63 javax.swing;specification-version="1.0.0",
64 javax.swing.table;specification-version="1.0.0",
65 org.apache.felix.mosgi.console.ifc;specification-version="1.0.0"
66 </importPackage>
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000067 </osgiManifest>
68 </configuration>
69 </plugin>
70 </plugins>
71 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000072
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000073</project>