Manuel L. Santillan | 0b66800 | 2006-09-09 16:06:26 +0000 | [diff] [blame] | 1 | <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>
|
Manuel L. Santillan | c51e43c | 2006-09-12 16:01:05 +0000 | [diff] [blame] | 19 | <dependency>
|
| 20 | <groupId>cglib</groupId>
|
| 21 | <artifactId>cglib</artifactId>
|
| 22 | <version>2.1_3</version>
|
| 23 | </dependency>
|
Manuel L. Santillan | 0b66800 | 2006-09-09 16:06:26 +0000 | [diff] [blame] | 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>
|
Manuel L. Santillan | c51e43c | 2006-09-12 16:01:05 +0000 | [diff] [blame] | 34 | <inlinedArtifact>cglib</inlinedArtifact>
|
Manuel L. Santillan | 0b66800 | 2006-09-09 16:06:26 +0000 | [diff] [blame] | 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>
|
Manuel L. Santillan | 04aea39 | 2006-09-27 23:04:14 +0000 | [diff] [blame] | 49 | <source>5</source><!--should fail if not java6-->
|
| 50 | <target>5</target>
|
Manuel L. Santillan | 0b66800 | 2006-09-09 16:06:26 +0000 | [diff] [blame] | 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>
|