blob: 899ae7bd3519cc92dcc5f20dc066475c4c833674 [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>
Richard S. Hallf2be1962006-12-22 19:46:42 +00006 <version>0.9.0-incubator-SNAPSHOT</version>
Manuel L. Santillan0b668002006-09-09 16:06:26 +00007 </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>
Manuel L. Santillanc51e43c2006-09-12 16:01:05 +000019 <dependency>
20 <groupId>cglib</groupId>
21 <artifactId>cglib</artifactId>
22 <version>2.1_3</version>
23 </dependency>
Manuel L. Santillan0b668002006-09-09 16:06:26 +000024 </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>
Manuel L. Santillanc51e43c2006-09-12 16:01:05 +000034 <inlinedArtifact>cglib</inlinedArtifact>
Manuel L. Santillan0b668002006-09-09 16:06:26 +000035 </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>
Manuel L. Santillan04aea392006-09-27 23:04:14 +000049 <source>5</source><!--should fail if not java6-->
50 <target>5</target>
Manuel L. Santillan0b668002006-09-09 16:06:26 +000051 </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>