Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +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> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 6 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 7 | <relativePath>../pom/pom.xml</relativePath> |
| 8 | </parent> |
| 9 | <modelVersion>4.0.0</modelVersion> |
| 10 | <name>JMXIntrospector</name> |
| 11 | <packaging>osgi-bundle</packaging> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 12 | <version>0.9.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 13 | <artifactId>${groupId}.jmxintrospector</artifactId> |
| 14 | <dependencies> |
| 15 | <dependency> |
| 16 | <groupId>junit</groupId> |
| 17 | <artifactId>junit</artifactId> |
| 18 | <version>3.8.1</version> |
| 19 | <scope>test</scope> |
| 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>cglib</groupId> |
| 23 | <artifactId>cglib</artifactId> |
| 24 | <version>2.1_3</version> |
| 25 | </dependency> |
| 26 | </dependencies> |
| 27 | <build> |
| 28 | <plugins> |
| 29 | <plugin> |
| 30 | <groupId>org.apache.felix.plugins</groupId> |
| 31 | <artifactId>maven-osgi-plugin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 32 | <version>0.9.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 33 | <extensions>true</extensions> |
| 34 | <configuration> |
| 35 | <inlinedArtifacts> |
| 36 | <inlinedArtifact>cglib</inlinedArtifact> |
| 37 | </inlinedArtifacts> |
| 38 | <osgiManifest> |
| 39 | <bundleName>${name}</bundleName> |
| 40 | <bundleSymbolicName>${artifactId}</bundleSymbolicName> |
| 41 | <exportPackage> |
| 42 | org.apache.felix.jmxintrospector |
| 43 | </exportPackage> |
| 44 | </osgiManifest> |
| 45 | </configuration> |
| 46 | </plugin> |
| 47 | <plugin> |
| 48 | <groupId>org.apache.maven.plugins</groupId> |
| 49 | <artifactId>maven-compiler-plugin</artifactId> |
| 50 | <configuration> |
| 51 | <source>5</source><!--should fail if not java6--> |
| 52 | <target>5</target> |
| 53 | </configuration> |
| 54 | </plugin> |
| 55 | <plugin> |
| 56 | <groupId>org.apache.maven.plugins</groupId> |
| 57 | <artifactId>maven-surefire-plugin</artifactId> |
| 58 | <configuration> |
| 59 | <skip>true</skip> |
| 60 | </configuration> |
| 61 | </plugin> |
| 62 | </plugins> |
| 63 | </build> |
| 64 | </project> |