blob: 75614e19511f5a85625fce44342130c6e4c5911f [file] [log] [blame]
Felix Meschbergera98dcfc2007-09-20 14:02:16 +00001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <parent>
5 <groupId>org.apache.felix</groupId>
6 <artifactId>felix</artifactId>
7 <version>1.1.0-SNAPSHOT</version>
8 <relativePath>../pom/pom.xml</relativePath>
9 </parent>
10 <modelVersion>4.0.0</modelVersion>
11 <name>JMXIntrospector</name>
12 <packaging>bundle</packaging>
13 <version>0.9.0-SNAPSHOT</version>
14 <artifactId>${groupId}.jmxintrospector</artifactId>
15 <dependencies>
16 <dependency>
17 <groupId>junit</groupId>
18 <artifactId>junit</artifactId>
19 <version>3.8.1</version>
20 <scope>test</scope>
21 </dependency>
22 <dependency>
23 <groupId>cglib</groupId>
24 <artifactId>cglib</artifactId>
25 <version>2.1_3</version>
26 </dependency>
27 </dependencies>
28 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.felix</groupId>
32 <artifactId>maven-bundle-plugin</artifactId>
33 <version>1.1.0-SNAPSHOT</version>
34 <extensions>true</extensions>
35 <configuration>
36 <instructions>
37 <Export-Package>
38 org.apache.felix.jmxintrospector,
39 net.sf.cglib.core, net.sf.cglib.proxy,
40 net.sf.cglib.reflect, org.objectweb.asm
41 </Export-Package>
42 <Import-Package>
43 org.objectweb.asm.util;resolution:=optional,
44 *
45 </Import-Package>
46 </instructions>
47 </configuration>
48 </plugin>
49 <plugin>
Karl Pauls589e2b32007-07-11 18:29:29 +000050 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-compiler-plugin</artifactId>
52 <configuration>
53 <source>5</source><!--should fail if not java6-->
54 <target>5</target>
55 </configuration>
Felix Meschbergera98dcfc2007-09-20 14:02:16 +000056 </plugin>
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-surefire-plugin</artifactId>
60 <configuration>
61 <skip>true</skip>
62 </configuration>
63 </plugin>
64 </plugins>
65 </build>
Karl Pauls589e2b32007-07-11 18:29:29 +000066</project>