blob: 4da175a12181395dde7a2f4bd9bf1f4a211ce442 [file] [log] [blame]
Manuel L. Santillan0b668002006-09-09 16:06:26 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
6 <version>0.8.0-SNAPSHOT</version>
7 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <name>JMXIntrospector</name>
10 <packaging>osgi-bundle</packaging>
11 <artifactId>${groupId}.jmxintrospector</artifactId>
12 <dependencies>
13 <dependency>
14 <groupId>junit</groupId>
15 <artifactId>junit</artifactId>
16 <version>3.8.1</version>
17 <scope>test</scope>
18 </dependency>
19 <dependency>
20 <groupId>javassist</groupId>
21 <artifactId>javassist</artifactId>
22 <version>3.3</version>
23 </dependency>
24 </dependencies>
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.felix.plugins</groupId>
29 <artifactId>maven-osgi-plugin</artifactId>
30 <version>${pom.version}</version>
31 <extensions>true</extensions>
32 <configuration>
33 <inlinedArtifacts>
34 <inlinedArtifact>javassist</inlinedArtifact>
35 </inlinedArtifacts>
36 <osgiManifest>
37 <bundleName>${name}</bundleName>
38 <bundleSymbolicName>${artifactId}</bundleSymbolicName>
39 <exportPackage>
40 org.apache.felix.jmxintrospector
41 </exportPackage>
42 </osgiManifest>
43 </configuration>
44 </plugin>
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-compiler-plugin</artifactId>
48 <configuration>
49 <source>1.6</source><!--should fail if not java6-->
50 <target>1.6</target>
51 </configuration>
52 </plugin>
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-surefire-plugin</artifactId>
56 <configuration>
57 <skip>true</skip>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62</project>