Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 1 | <project> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 2 | |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 3 | <parent> |
| 4 | <groupId>org.apache.felix</groupId> |
| 5 | <artifactId>felix</artifactId> |
| 6 | <version>0.8.0-SNAPSHOT</version> |
| 7 | </parent> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 8 | |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 9 | <modelVersion>4.0.0</modelVersion> |
| 10 | <packaging>osgi-bundle</packaging> |
Stephane Frenot | 8ed309a | 2006-08-31 14:04:13 +0000 | [diff] [blame] | 11 | <name>Apache Felix MOSGi obr remote manipulation tab for the JMX console</name> |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 12 | <artifactId>org.apache.felix.mosgi.managedelements.obrprobe.tab</artifactId> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 13 | <version>0.9.0-SNAPSHOT</version> |
| 14 | |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 15 | <dependencies> |
| 16 | <dependency> |
| 17 | <groupId>${pom.groupId}</groupId> |
| 18 | <artifactId>org.osgi.core</artifactId> |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 19 | <scope>provided</scope> |
| 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>${pom.groupId}</groupId> |
| 23 | <artifactId>org.osgi.compendium</artifactId> |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 24 | <scope>provided</scope> |
| 25 | </dependency> |
| 26 | <dependency> |
| 27 | <groupId>${pom.groupId}</groupId> |
| 28 | <artifactId>org.apache.felix.mosgi.console.ifc</artifactId> |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 29 | <scope>provided</scope> |
| 30 | </dependency> |
| 31 | <dependency> |
| 32 | <groupId>${pom.groupId}</groupId> |
| 33 | <artifactId>org.apache.felix.bundlerepository</artifactId> |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 34 | <scope>provided</scope> |
| 35 | </dependency> |
| 36 | </dependencies> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 37 | |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
| 41 | <groupId>org.apache.felix.plugins</groupId> |
| 42 | <artifactId>maven-osgi-plugin</artifactId> |
Stephane Frenot | e8c7a98 | 2006-09-28 15:46:53 +0000 | [diff] [blame] | 43 | <!--version>${felix.version}</version--> |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 44 | <extensions>true</extensions> |
| 45 | <configuration> |
| 46 | <osgiManifest> |
| 47 | <bundleName>MOSGi obr remote manipulation tab for the JMX console</bundleName> |
| 48 | <bundleDescription>MOSGi obr remote manipulation tab for the JMX console</bundleDescription> |
| 49 | <bundleActivator>auto-detect</bundleActivator> |
| 50 | <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl> |
| 51 | <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl> |
| 52 | <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource> |
| 53 | <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName> |
| 54 | <exportPackage> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 55 | ${pom.artifactId} |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 56 | </exportPackage> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 57 | <importPackage> |
| 58 | javax.management, |
| 59 | org.osgi.framework, |
| 60 | javax.swing, |
| 61 | javax.swing.table, |
| 62 | org.osgi.service.obr, |
| 63 | org.apache.felix.mosgi.console.ifc |
| 64 | </importPackage> |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 65 | </osgiManifest> |
| 66 | </configuration> |
| 67 | </plugin> |
| 68 | </plugins> |
| 69 | </build> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 70 | |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 71 | </project> |