blob: 19880a2d21240513275797798124b89a394cabe7 [file] [log] [blame]
Stephane Frenota4365ab2006-07-21 11:31:50 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenota4365ab2006-07-21 11:31:50 +00003 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
Richard S. Halld2118752006-12-22 16:59:49 +00006 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenota4365ab2006-07-21 11:31:50 +00007 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
Stephane Frenota4365ab2006-07-21 11:31:50 +00009 <modelVersion>4.0.0</modelVersion>
Stephane Frenot50954082007-06-28 14:37:13 +000010 <packaging>bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000011 <name>Apache Felix MOSGi JMX Console GUI component</name>
Stephane Frenota4365ab2006-07-21 11:31:50 +000012 <artifactId>org.apache.felix.mosgi.console.component</artifactId>
Stephane Frenot0afc7632006-12-22 10:45:14 +000013 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000014
Stephane Frenota4365ab2006-07-21 11:31:50 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Stephane Frenota4365ab2006-07-21 11:31:50 +000019 <scope>provided</scope>
20 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenota4365ab2006-07-21 11:31:50 +000024 <scope>provided</scope>
25 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000026 <dependency>
27 <groupId>mx4j</groupId>
28 <artifactId>mx4j-jmx</artifactId>
29 <version>3.0.1</version>
30 <scope>provided</scope>
31 </dependency>
32
Stephane Frenota4365ab2006-07-21 11:31:50 +000033 </dependencies>
Stephane Frenot50954082007-06-28 14:37:13 +000034
Stephane Frenota4365ab2006-07-21 11:31:50 +000035 <build>
36 <plugins>
37 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000038 <groupId>org.apache.felix</groupId>
39 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenota4365ab2006-07-21 11:31:50 +000040 <extensions>true</extensions>
41 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000042 <instructions>
43 <Bundle-Name>MOSGi JMX Console main GUI component</Bundle-Name>
44 <Bundle-Description>MOSGi JMX Console main GUI component</Bundle-Description>
45 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
46 <Bundle-Activator>org.apache.felix.mosgi.console.component.Activator</Bundle-Activator>
47 <Private-Package>${pom.artifactId}</Private-Package>
48
49 </instructions>
Stephane Frenota4365ab2006-07-21 11:31:50 +000050 </configuration>
51 </plugin>
52 </plugins>
53 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000054
Stephane Frenota4365ab2006-07-21 11:31:50 +000055</project>