Karl Pauls | 4ebe508 | 2006-10-30 15:00:08 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
Richard S. Hall | 061dffd | 2007-04-28 15:11:03 +0000 | [diff] [blame] | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 20 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion> |
Michael E. Rodriguez | 406386d | 2007-03-20 02:56:45 +0000 | [diff] [blame] | 23 | |
| 24 | <parent> |
| 25 | <groupId>org.apache</groupId> |
| 26 | <artifactId>apache</artifactId> |
| 27 | <version>4</version> |
| 28 | </parent> |
| 29 | |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 30 | <groupId>org.apache.felix</groupId> |
| 31 | <artifactId>felix</artifactId> |
| 32 | <packaging>pom</packaging> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 33 | <name>Apache Felix</name> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 34 | <version>0.9.0-incubator-SNAPSHOT</version> |
Richard S. Hall | 1764f30 | 2007-06-18 20:50:24 +0000 | [diff] [blame] | 35 | <url>http://felix.apache.org/</url> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 36 | <description>Apache felix is an OSGi implementation.</description> |
| 37 | |
| 38 | <issueManagement> |
| 39 | <system>Jira</system> |
| 40 | <url>http://issues.apache.org/jira/browse/FELIX</url> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 41 | </issueManagement> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 42 | |
| 43 | <mailingLists> |
| 44 | <mailingList> |
| 45 | <name>Felix Dev</name> |
Richard S. Hall | 1764f30 | 2007-06-18 20:50:24 +0000 | [diff] [blame] | 46 | <subscribe>dev-subscribe@felix.apache.org</subscribe> |
| 47 | <unsubscribe>dev-unsubscribe@felix.apache.org</unsubscribe> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 48 | <post>-</post> |
Richard S. Hall | 1764f30 | 2007-06-18 20:50:24 +0000 | [diff] [blame] | 49 | <archive>http://www.mail-archive.com/dev%40felix.apache.org/</archive> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 50 | </mailingList> |
| 51 | <mailingList> |
| 52 | <name>Felix Commits</name> |
Richard S. Hall | 1764f30 | 2007-06-18 20:50:24 +0000 | [diff] [blame] | 53 | <subscribe>commits-subscribe@felix.apache.org</subscribe> |
| 54 | <unsubscribe>commits-unsubscribe@felix.apache.org</unsubscribe> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 55 | <post>-</post> |
Richard S. Hall | 1764f30 | 2007-06-18 20:50:24 +0000 | [diff] [blame] | 56 | <archive>http://www.mail-archive.com/commits%40felix.apache.org/</archive> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 57 | </mailingList> |
| 58 | </mailingLists> |
| 59 | |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 60 | <scm> |
Richard S. Hall | 1764f30 | 2007-06-18 20:50:24 +0000 | [diff] [blame] | 61 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk</connection> |
| 62 | <developerConnection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk</developerConnection> |
| 63 | <url>http://svn.apache.org/viewvc/felix/trunk/?root=Apache-SVN</url> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 64 | </scm> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 65 | |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 66 | <!-- |
| 67 | Felix contains 3 custom maven packaging plugins. Each creates a jar file |
| 68 | as an artifact. |
| 69 | |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 70 | maven-bundle-plugin |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 71 | (bundle packaging - latest prefered plugin for generating OSGi bundles.) |
| 72 | maven-osgi-plugin |
| 73 | (osgi-bundle packaging - old plugin for generating OSGi bundles.) |
| 74 | org.apache.felix.ipojo.plugin |
| 75 | (plugin for generating iPOJO OSGi bundles.) |
| 76 | |
| 77 | But with maven bug https://issues.apache.org/jira/browse/FELIX-198 files |
| 78 | are not always created with the correct extension in the repository. |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 79 | |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 80 | As a work around, this pom creates different profiles for building the |
| 81 | different types of felix modules. |
Stephane Frenot | ab67247 | 2006-08-29 13:29:31 +0000 | [diff] [blame] | 82 | |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 83 | Usage: |
| 84 | mvn -Dpackaging=<type> clean install |
| 85 | --> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 86 | |
Stephane Frenot | ab67247 | 2006-08-29 13:29:31 +0000 | [diff] [blame] | 87 | <profiles> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 88 | |
Stephane Frenot | ab67247 | 2006-08-29 13:29:31 +0000 | [diff] [blame] | 89 | <profile> |
Richard S. Hall | 430f335 | 2007-03-28 14:27:28 +0000 | [diff] [blame] | 90 | <id>packaging-plugins</id> |
| 91 | <activation> |
| 92 | <property> |
| 93 | <name>packaging</name> |
| 94 | <value>plugins</value> |
| 95 | </property> |
| 96 | </activation> |
| 97 | <modules> |
Richard S. Hall | 48b1427 | 2007-05-20 22:09:53 +0000 | [diff] [blame] | 98 | <module>bundleplugin</module> |
Richard S. Hall | 430f335 | 2007-03-28 14:27:28 +0000 | [diff] [blame] | 99 | <module>tools/maven2/maven-osgi-plugin</module> |
Clement Escoffier | ace86c5 | 2007-06-24 17:44:53 +0000 | [diff] [blame] | 100 | <module>ipojo/metadata</module> |
| 101 | <module>ipojo/manipulator</module> |
Richard S. Hall | 376e83e | 2007-05-21 02:25:53 +0000 | [diff] [blame] | 102 | <module>ipojo/plugin</module> |
Richard S. Hall | 430f335 | 2007-03-28 14:27:28 +0000 | [diff] [blame] | 103 | </modules> |
| 104 | </profile> |
| 105 | |
| 106 | <profile> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 107 | <id>packaging-ipojo-bundle</id> |
Stephane Frenot | ab67247 | 2006-08-29 13:29:31 +0000 | [diff] [blame] | 108 | <activation> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 109 | <property> |
| 110 | <name>packaging</name> |
| 111 | <value>ipojo-bundle</value> |
| 112 | </property> |
| 113 | </activation> |
| 114 | <modules> |
Clement Escoffier | ace86c5 | 2007-06-24 17:44:53 +0000 | [diff] [blame] | 115 | <!--<module>ipojo/arch</module>--> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 116 | </modules> |
| 117 | </profile> |
| 118 | |
| 119 | <profile> |
| 120 | <id>packaging-bundle</id> |
| 121 | <activation> |
| 122 | <property> |
| 123 | <name>packaging</name> |
| 124 | <value>bundle</value> |
| 125 | </property> |
| 126 | </activation> |
| 127 | <modules> |
| 128 | <module>org.osgi.foundation</module> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 129 | <module>javax.servlet</module> |
| 130 | <module>org.osgi.core</module> |
| 131 | <module>org.osgi.compendium</module> |
| 132 | <module>framework</module> |
| 133 | <module>main</module> |
| 134 | <module>shell</module> |
| 135 | <module>shell.tui</module> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 136 | <module>shell.gui</module> |
| 137 | <module>shell.gui.plugin</module> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 138 | <module>bundlerepository</module> |
| 139 | <module>log</module> |
Karl Pauls | c59b31d | 2007-05-20 21:29:39 +0000 | [diff] [blame] | 140 | <module>eventadmin</module> |
Karl Pauls | 84957a5 | 2007-05-14 21:55:49 +0000 | [diff] [blame] | 141 | <module>http.jetty</module> |
Felix Meschberger | e7daaff | 2007-04-11 18:31:03 +0000 | [diff] [blame] | 142 | <module>scr</module> |
| 143 | <module>configadmin</module> |
| 144 | <module>metatype</module> |
Richard S. Hall | 9cb48fc | 2007-05-31 14:49:19 +0000 | [diff] [blame] | 145 | <module>dependencymanager</module> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 146 | <module>servicebinder</module> |
| 147 | <module>wireadmin</module> |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 148 | |
Richard S. Hall | 376e83e | 2007-05-21 02:25:53 +0000 | [diff] [blame] | 149 | <module>ipojo/core</module> |
Clement Escoffier | ace86c5 | 2007-06-24 17:44:53 +0000 | [diff] [blame] | 150 | <module>ipojo/arch</module> |
Stephane Frenot | 8a223dc | 2007-06-28 15:04:22 +0000 | [diff] [blame] | 151 | |
| 152 | <module>mosgi</module> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 153 | </modules> |
| 154 | </profile> |
| 155 | |
| 156 | <profile> |
| 157 | <id>packaging-osgi-bundle</id> |
| 158 | <activation> |
| 159 | <property> |
| 160 | <name>packaging</name> |
| 161 | <value>osgi-bundle</value> |
| 162 | </property> |
| 163 | </activation> |
| 164 | <modules> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 165 | <module>org.apache.felix.daemon</module> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 166 | |
| 167 | <module>examples</module> |
| 168 | |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 169 | <module>upnp.extra</module> |
| 170 | <module>upnp.basedriver</module> |
| 171 | <module>upnp.tester</module> |
| 172 | <module>upnp.sample.tv</module> |
| 173 | <module>upnp.sample.clock</module> |
| 174 | <module>upnp.sample.binaryLight</module> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 175 | |
| 176 | <!-- <module>tools/mangen</module> --> |
| 177 | |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 178 | |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 179 | </modules> |
| 180 | </profile> |
Stephane Frenot | ab67247 | 2006-08-29 13:29:31 +0000 | [diff] [blame] | 181 | </profiles> |
| 182 | |
Stephane Frenot | e8c7a98 | 2006-09-28 15:46:53 +0000 | [diff] [blame] | 183 | <!-- Specify a default version number for dependencies --> |
| 184 | <dependencyManagement> |
| 185 | <dependencies> |
| 186 | <dependency> |
| 187 | <groupId>org.apache.felix</groupId> |
| 188 | <artifactId>org.osgi.core</artifactId> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 189 | <version>0.9.0-incubator-SNAPSHOT</version> |
Stephane Frenot | e8c7a98 | 2006-09-28 15:46:53 +0000 | [diff] [blame] | 190 | </dependency> |
| 191 | <dependency> |
| 192 | <groupId>org.apache.felix</groupId> |
| 193 | <artifactId>org.osgi.compendium</artifactId> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 194 | <version>0.9.0-incubator-SNAPSHOT</version> |
Stephane Frenot | e8c7a98 | 2006-09-28 15:46:53 +0000 | [diff] [blame] | 195 | </dependency> |
| 196 | <dependency> |
| 197 | <groupId>org.apache.felix</groupId> |
| 198 | <artifactId>org.apache.felix.framework</artifactId> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 199 | <version>0.9.0-incubator-SNAPSHOT</version> |
Stephane Frenot | e8c7a98 | 2006-09-28 15:46:53 +0000 | [diff] [blame] | 200 | </dependency> |
| 201 | <dependency> |
| 202 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 1ca96a9 | 2007-02-12 15:46:10 +0000 | [diff] [blame] | 203 | <artifactId>org.apache.felix.bundlerepository</artifactId> |
| 204 | <version>0.9.0-incubator-SNAPSHOT</version> |
Stephane Frenot | e8c7a98 | 2006-09-28 15:46:53 +0000 | [diff] [blame] | 205 | </dependency> |
| 206 | <dependency> |
| 207 | <groupId>org.apache.felix</groupId> |
| 208 | <artifactId>org.apache.felix.mosgi.jmx.registry</artifactId> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 209 | <version>0.9.0-incubator-SNAPSHOT</version> |
Stephane Frenot | e8c7a98 | 2006-09-28 15:46:53 +0000 | [diff] [blame] | 210 | </dependency> |
| 211 | <dependency> |
| 212 | <groupId>org.apache.felix</groupId> |
| 213 | <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 214 | <version>0.9.0-incubator-SNAPSHOT</version> |
Stephane Frenot | e8c7a98 | 2006-09-28 15:46:53 +0000 | [diff] [blame] | 215 | </dependency> |
| 216 | <dependency> |
| 217 | <groupId>org.apache.felix</groupId> |
| 218 | <artifactId>org.apache.felix.mosgi.console.ifc</artifactId> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 219 | <version>0.9.0-incubator-SNAPSHOT</version> |
Stephane Frenot | e8c7a98 | 2006-09-28 15:46:53 +0000 | [diff] [blame] | 220 | </dependency> |
| 221 | </dependencies> |
| 222 | </dependencyManagement> |
| 223 | |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 224 | <distributionManagement> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 225 | <site> |
| 226 | <id>felix website</id> |
Marcel Offermans | f673703 | 2006-08-17 19:49:13 +0000 | [diff] [blame] | 227 | <url>file:///${user.dir}/target/site-deployed/</url> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 228 | </site> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 229 | <repository> |
Michael E. Rodriguez | 406386d | 2007-03-20 02:56:45 +0000 | [diff] [blame] | 230 | <id>apache.incubator.releases</id> |
| 231 | <name>Apache Incubator Release Distribution Repository</name> |
| 232 | <url>scp://people.apache.org/www/people.apache.org/repo/m2-incubating-repository</url> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 233 | </repository> |
| 234 | </distributionManagement> |
| 235 | |
| 236 | <pluginRepositories> |
| 237 | <pluginRepository> |
| 238 | <id>apache.snapshots</id> |
| 239 | <name>snapshot plugins</name> |
| 240 | <url> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 241 | http://people.apache.org/repo/m2-snapshot-repository |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 242 | </url> |
Richard S. Hall | a897e0e | 2007-02-13 05:55:13 +0000 | [diff] [blame] | 243 | <releases> |
| 244 | <enabled>false</enabled> |
| 245 | </releases> |
| 246 | <snapshots> |
| 247 | <enabled>true</enabled> |
| 248 | </snapshots> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 249 | </pluginRepository> |
| 250 | </pluginRepositories> |
| 251 | |
| 252 | <!-- definitions for testing --> |
| 253 | <dependencies> |
| 254 | <dependency> |
| 255 | <groupId>junit</groupId> |
| 256 | <artifactId>junit</artifactId> |
| 257 | <version>3.8.1</version> |
| 258 | <scope>test</scope> |
| 259 | </dependency> |
| 260 | <dependency> |
| 261 | <groupId>easymock</groupId> |
| 262 | <artifactId>easymock</artifactId> |
| 263 | <version>1.2_Java1.3</version> |
| 264 | <scope>test</scope> |
| 265 | </dependency> |
| 266 | </dependencies> |
| 267 | <build> |
Richard S. Hall | 061dffd | 2007-04-28 15:11:03 +0000 | [diff] [blame] | 268 | <pluginManagement> |
| 269 | <plugins> |
| 270 | <plugin> |
| 271 | <groupId>org.apache.maven.plugins</groupId> |
| 272 | <artifactId>maven-compiler-plugin</artifactId> |
| 273 | <version>2.0.2</version> |
| 274 | </plugin> |
| 275 | <plugin> |
| 276 | <groupId>org.apache.maven.plugins</groupId> |
| 277 | <artifactId>maven-surefire-plugin</artifactId> |
| 278 | <version>2.3</version> |
| 279 | </plugin> |
| 280 | <plugin> |
| 281 | <groupId>org.apache.maven.plugins</groupId> |
| 282 | <artifactId>maven-jar-plugin</artifactId> |
| 283 | <version>2.1</version> |
| 284 | </plugin> |
| 285 | <plugin> |
| 286 | <groupId>org.apache.maven.plugins</groupId> |
| 287 | <artifactId>maven-plugin-plugin</artifactId> |
| 288 | <version>2.3</version> |
| 289 | </plugin> |
| 290 | <plugin> |
| 291 | <groupId>org.apache.maven.plugins</groupId> |
| 292 | <artifactId>maven-install-plugin</artifactId> |
| 293 | <version>2.1</version> |
| 294 | </plugin> |
| 295 | <plugin> |
| 296 | <groupId>org.apache.maven.plugins</groupId> |
| 297 | <artifactId>maven-deploy-plugin</artifactId> |
| 298 | <version>2.3</version> |
| 299 | </plugin> |
| 300 | <plugin> |
| 301 | <groupId>org.apache.maven.plugins</groupId> |
| 302 | <artifactId>maven-site-plugin</artifactId> |
| 303 | <version>2.0-beta-5</version> |
| 304 | </plugin> |
| 305 | <plugin> |
| 306 | <groupId>org.apache.maven.plugins</groupId> |
| 307 | <artifactId>maven-project-info-reports-plugin</artifactId> |
| 308 | <version>2.0.1</version> |
| 309 | </plugin> |
| 310 | <plugin> |
| 311 | <groupId>org.apache.maven.plugins</groupId> |
| 312 | <artifactId>maven-jxr-plugin</artifactId> |
| 313 | <version>2.1</version> |
| 314 | </plugin> |
| 315 | <plugin> |
| 316 | <groupId>org.apache.maven.plugins</groupId> |
| 317 | <artifactId>maven-surefire-report-plugin</artifactId> |
| 318 | <version>2.3</version> |
| 319 | </plugin> |
| 320 | <plugin> |
| 321 | <groupId>org.apache.maven.plugins</groupId> |
| 322 | <artifactId>maven-javadoc-plugin</artifactId> |
| 323 | <version>2.2</version> |
| 324 | </plugin> |
Carsten Ziegeler | 9764654 | 2007-07-04 17:03:06 +0000 | [diff] [blame] | 325 | <plugin> |
| 326 | <groupId>org.apache.felix</groupId> |
| 327 | <artifactId>maven-bundle-plugin</artifactId> |
| 328 | <version>0.9.0-incubator-SNAPSHOT</version> |
| 329 | </plugin> |
Richard S. Hall | 061dffd | 2007-04-28 15:11:03 +0000 | [diff] [blame] | 330 | </plugins> |
| 331 | </pluginManagement> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 332 | <plugins> |
| 333 | <plugin> |
| 334 | <groupId>org.apache.maven.plugins</groupId> |
| 335 | <artifactId>maven-compiler-plugin</artifactId> |
| 336 | <configuration> |
| 337 | <target>1.4</target> |
| 338 | </configuration> |
| 339 | </plugin> |
| 340 | <plugin> |
| 341 | <groupId>org.apache.maven.plugins</groupId> |
| 342 | <artifactId>maven-surefire-plugin</artifactId> |
| 343 | </plugin> |
Stephane Frenot | ab67247 | 2006-08-29 13:29:31 +0000 | [diff] [blame] | 344 | <!-- plugin> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 345 | <groupId>org.apache.maven.plugins</groupId> |
| 346 | <artifactId>maven-surefire-report-plugin</artifactId> |
Stephane Frenot | ab67247 | 2006-08-29 13:29:31 +0000 | [diff] [blame] | 347 | </plugin --> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 348 | </plugins> |
| 349 | </build> |
| 350 | <reporting> |
| 351 | <plugins> |
| 352 | <plugin> |
| 353 | <groupId>org.apache.maven.plugins</groupId> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 354 | <artifactId>maven-site-plugin</artifactId> |
| 355 | <configuration> |
Marcel Offermans | 5dcb02c | 2006-08-17 20:58:34 +0000 | [diff] [blame] | 356 | <templateDirectory>${user.dir}/src/site/</templateDirectory> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 357 | <template>maven-site.vm</template> |
| 358 | </configuration> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 359 | </plugin> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 360 | <plugin> |
| 361 | <groupId>org.apache.maven.plugins</groupId> |
Richard S. Hall | 061dffd | 2007-04-28 15:11:03 +0000 | [diff] [blame] | 362 | <artifactId>maven-surefire-report-plugin</artifactId> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 363 | </plugin> |
| 364 | <plugin> |
Richard S. Hall | 061dffd | 2007-04-28 15:11:03 +0000 | [diff] [blame] | 365 | <groupId>org.apache.maven.plugins</groupId> |
| 366 | <artifactId>maven-jxr-plugin</artifactId> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 367 | </plugin> |
| 368 | <plugin> |
| 369 | <groupId>org.apache.maven.plugins</groupId> |
| 370 | <artifactId>maven-project-info-reports-plugin</artifactId> |
| 371 | <reportSets> |
| 372 | <reportSet> |
| 373 | <reports> |
| 374 | <report>index</report> |
| 375 | <report>dependencies</report> |
| 376 | <report>project-team</report> |
| 377 | <report>mailing-list</report> |
| 378 | <report>issue-tracking</report> |
| 379 | <report>license</report> |
| 380 | <report>scm</report> |
| 381 | </reports> |
| 382 | </reportSet> |
| 383 | </reportSets> |
| 384 | </plugin> |
| 385 | <!--plugin> |
| 386 | <groupId>org.apache.maven.plugins</groupId> |
| 387 | <artifactId>maven-javadoc-plugin</artifactId> |
| 388 | <configuration> |
| 389 | <aggregate>true</aggregate> |
| 390 | </configuration> |
| 391 | </plugin--> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 392 | </plugins> |
| 393 | </reporting> |
| 394 | </project> |