blob: 8da43e90cf2b88519bd2b99afd2fbec05694c0bd [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>
Karl Pauls0a3858c2007-07-13 22:03:31 +00006 <version>1.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00007 <relativePath>../../pom/pom.xml</relativePath>
Stephane Frenota4365ab2006-07-21 11:31:50 +00008 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00009
Stephane Frenota4365ab2006-07-21 11:31:50 +000010 <modelVersion>4.0.0</modelVersion>
Stephane Frenot50954082007-06-28 14:37:13 +000011 <packaging>bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000012 <name>Apache Felix MOSGi JMX Console GUI component</name>
Stephane Frenota4365ab2006-07-21 11:31:50 +000013 <artifactId>org.apache.felix.mosgi.console.component</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000014 <version>0.9.0-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000015
Stephane Frenota4365ab2006-07-21 11:31:50 +000016 <dependencies>
17 <dependency>
18 <groupId>${pom.groupId}</groupId>
19 <artifactId>org.osgi.core</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000020 <version>1.1.0-SNAPSHOT</version>
Stephane Frenota4365ab2006-07-21 11:31:50 +000021 <scope>provided</scope>
22 </dependency>
23 <dependency>
24 <groupId>${pom.groupId}</groupId>
25 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000026 <version>0.9.0-SNAPSHOT</version>
Stephane Frenota4365ab2006-07-21 11:31:50 +000027 <scope>provided</scope>
28 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000029 <dependency>
30 <groupId>mx4j</groupId>
31 <artifactId>mx4j-jmx</artifactId>
32 <version>3.0.1</version>
33 <scope>provided</scope>
34 </dependency>
35
Stephane Frenota4365ab2006-07-21 11:31:50 +000036 </dependencies>
Stephane Frenot50954082007-06-28 14:37:13 +000037
Stephane Frenota4365ab2006-07-21 11:31:50 +000038 <build>
39 <plugins>
40 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000041 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000043 <version>1.1.0-SNAPSHOT</version>
Stephane Frenota4365ab2006-07-21 11:31:50 +000044 <extensions>true</extensions>
45 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000046 <instructions>
47 <Bundle-Name>MOSGi JMX Console main GUI component</Bundle-Name>
48 <Bundle-Description>MOSGi JMX Console main GUI component</Bundle-Description>
49 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
50 <Bundle-Activator>org.apache.felix.mosgi.console.component.Activator</Bundle-Activator>
51 <Private-Package>${pom.artifactId}</Private-Package>
52
53 </instructions>
Stephane Frenota4365ab2006-07-21 11:31:50 +000054 </configuration>
55 </plugin>
56 </plugins>
57 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000058
Stephane Frenota4365ab2006-07-21 11:31:50 +000059</project>