blob: 0b814277cfd431d0d8f725bec100e6ddffdb9171 [file] [log] [blame]
Felix Meschbergerfdb9d4a2007-09-20 12:44:54 +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">
Karl Pauls589e2b32007-07-11 18:29:29 +00004 <parent>
Felix Meschbergerfdb9d4a2007-09-20 12:44:54 +00005 <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 <packaging>bundle</packaging>
12 <name>JMood JMX Management Agent</name>
13 <version>0.9.0-SNAPSHOT</version>
14 <artifactId>${groupId}.jmood</artifactId>
15 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.apache.felix.framework</artifactId>
19 <version>1.0.0</version>
20 <scope>provided</scope>
21 </dependency>
22 <dependency>
23 <groupId>${pom.groupId}</groupId>
24 <artifactId>org.osgi.core</artifactId>
25 <version>1.0.0</version>
26 <scope>provided</scope>
27 </dependency>
28 <dependency>
29 <groupId>${pom.groupId}</groupId>
30 <artifactId>org.osgi.compendium</artifactId>
31 <version>0.9.0-SNAPSHOT</version>
32 <scope>provided</scope>
33 </dependency>
34
35 <!-- Building on Java prior to Java 5 requires these -->
36 <dependency>
37 <groupId>mx4j</groupId>
38 <artifactId>mx4j</artifactId>
39 <version>3.0.1</version>
40 <scope>provided</scope>
41 </dependency>
42 <dependency>
43 <groupId>mx4j</groupId>
44 <artifactId>mx4j-remote</artifactId>
45 <version>3.0.1</version>
46 <scope>provided</scope>
47 </dependency>
48
49 <dependency>
50 <groupId>junit</groupId>
51 <artifactId>junit</artifactId>
52 <version>3.8.1</version>
53 <scope>test</scope>
54 </dependency>
55 </dependencies>
56 <build>
57 <resources>
58 <resource>
59 <directory>src/main/resources</directory>
60 <filtering>true</filtering>
61 </resource>
62 </resources>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch871e7db2007-12-20 17:03:43 +000067 <version>1.1.0-SNAPSHOT</version>
Felix Meschbergerfdb9d4a2007-09-20 12:44:54 +000068 <extensions>true</extensions>
69 <configuration>
70 <instructions>
71 <Bundle-Activator>
72 org.apache.felix.jmood.Activator
73 </Bundle-Activator>
74 <Private-Package>
75 org.apache.felix.jmood.*
76 </Private-Package>
77 </instructions>
78 </configuration>
79 </plugin>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-surefire-plugin</artifactId>
83 <configuration>
84 <!--
85 Current tests are (unfinished) integration tests, and need
86 to have the bundle available, so there's a chicken-egg problem there. Temporal workaround: omit tests in pom
87 -->
88
89 <skip>true</skip>
90 </configuration>
91 </plugin>
92
93 </plugins>
94 </build>
95 <reporting>
96 <plugins>
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>
100 maven-project-info-reports-plugin
101 </artifactId>
102 </plugin>
103 </plugins>
104 </reporting>
Karl Pauls589e2b32007-07-11 18:29:29 +0000105</project>