Karl Pauls | 552f5b8 | 2006-05-14 15:20:37 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
| 5 | <packaging>pom</packaging> |
| 6 | <name>Apache Felix (parent)</name> |
| 7 | <version>0.8.0-SNAPSHOT</version> |
| 8 | <modules> |
| 9 | <!-- <module>javax.servlet</module> --> |
| 10 | <module>tools/maven2/maven-osgi-plugin</module> |
| 11 | <module>javax.servlet</module> |
| 12 | <module>org.osgi.core</module> |
| 13 | <module>org.osgi.compendium</module> |
| 14 | <module>org.apache.felix.framework</module> |
| 15 | <module>org.apache.felix.shell</module> |
| 16 | <module>org.apache.felix.shell.tui</module> |
| 17 | <module>org.apache.felix.shell.gui</module> |
| 18 | <module>org.apache.felix.shell.gui.plugin</module> |
| 19 | <module>org.apache.felix.bundlerepository</module> |
| 20 | <module>org.apache.felix.daemon</module> |
| 21 | <module>org.apache.felix.dependencymanager</module> |
| 22 | <module>org.apache.felix.main</module> |
| 23 | <module>org.apache.felix.examples.eventlistener</module> |
| 24 | <module>org.apache.felix.examples.dictionaryservice</module> |
| 25 | <module>org.apache.felix.examples.frenchdictionary</module> |
| 26 | <module>org.apache.felix.examples.dictionaryclient</module> |
| 27 | <module>org.apache.felix.examples.dictionaryclient2</module> |
| 28 | <module>org.apache.felix.examples.spellcheckservice</module> |
| 29 | <module>org.apache.felix.examples.spellcheckclient</module> |
| 30 | <module>org.apache.felix.examples.spellcheckbinder</module> |
| 31 | <module>org.apache.felix.servicebinder</module> |
| 32 | <module>org.apache.felix.wireadmin</module> |
| 33 | <module>org.apache.felix.upnp.extra</module> |
| 34 | <module>org.apache.felix.upnp.basedriver</module> |
| 35 | <module>org.apache.felix.upnp.tester</module> |
| 36 | <module>org.apache.felix.upnp.sample.tv</module> |
| 37 | <module>org.apache.felix.upnp.sample.clock</module> |
| 38 | <module>org.apache.felix.upnp.sample.binaryLight</module> |
| 39 | <module>org.apache.felix.http.jetty</module> |
| 40 | <module>org.apache.felix.scr</module> |
| 41 | <module>org.apache.felix.eventadmin</module> |
| 42 | <module>org.apache.felix.eventadmin.bridge.upnp</module> |
Karl Pauls | 44c6faf | 2006-06-24 15:08:27 +0000 | [diff] [blame] | 43 | <module>org.apache.felix.eventadmin.bridge.configuration</module> |
| 44 | <module>org.apache.felix.eventadmin.bridge.useradmin</module> |
| 45 | <module>org.apache.felix.eventadmin.bridge.wireadmin</module> |
Richard S. Hall | 2761595 | 2006-06-30 09:13:02 +0000 | [diff] [blame] | 46 | <module>org.apache.felix.ipojo</module> |
| 47 | <module>org.apache.felix.ipojo.metadata</module> |
| 48 | <module>org.apache.felix.ipojo.plugin</module> |
| 49 | <module>org.apache.felix.ipojo.arch</module> |
Karl Pauls | 552f5b8 | 2006-05-14 15:20:37 +0000 | [diff] [blame] | 50 | </modules> |
| 51 | |
| 52 | <repositories> |
| 53 | <!-- For snapshots (no release jars or non-apache jars) --> |
| 54 | <repository> |
| 55 | <id>apache.snapshots</id> |
| 56 | <name>Apache Snapshot Repository</name> |
| 57 | <url>http://cvs.apache.org/maven-snapshot-repository</url> |
| 58 | </repository> |
| 59 | |
| 60 | <repository> |
| 61 | <id>safehaus</id> |
| 62 | <name>Alternate Repository for Missing Ibiblio Artifacts</name> |
| 63 | <url>http://m2.safehaus.org</url> |
| 64 | </repository> |
| 65 | </repositories> |
| 66 | |
| 67 | <distributionManagement> |
| 68 | <snapshotRepository> |
| 69 | <name>Apache Snapshots</name> |
| 70 | <id>apache.snapshots</id> |
| 71 | <url> |
| 72 | scp://apache.org/www/cvs.apache.org/maven-snapshot-repository |
| 73 | </url> |
| 74 | </snapshotRepository> |
| 75 | <repository> |
| 76 | <name>ASF Mirrored M2 Distributions</name> |
| 77 | <id>apache.distributions</id> |
| 78 | <url> |
| 79 | scp://minotaur.apache.org/www/www.apache.org/dist/maven-repository |
| 80 | </url> |
| 81 | </repository> |
| 82 | </distributionManagement> |
| 83 | |
| 84 | <pluginRepositories> |
| 85 | <pluginRepository> |
| 86 | <id>apache.snapshots</id> |
| 87 | <name>snapshot plugins</name> |
| 88 | <url> |
| 89 | http://cvs.apache.org/maven-snapshot-repository |
| 90 | </url> |
| 91 | </pluginRepository> |
| 92 | </pluginRepositories> |
| 93 | |
Marcel Offermans | 6f5348b | 2006-07-03 06:46:32 +0000 | [diff] [blame] | 94 | <!-- definitions for testing --> |
| 95 | <dependencies> |
| 96 | <dependency> |
| 97 | <groupId>junit</groupId> |
| 98 | <artifactId>junit</artifactId> |
| 99 | <version>3.8.1</version> |
| 100 | <scope>test</scope> |
| 101 | </dependency> |
| 102 | <dependency> |
Marcel Offermans | 45ad81c | 2006-07-04 08:58:29 +0000 | [diff] [blame] | 103 | <groupId>easymock</groupId> |
Marcel Offermans | 6f5348b | 2006-07-03 06:46:32 +0000 | [diff] [blame] | 104 | <artifactId>easymock</artifactId> |
Marcel Offermans | 45ad81c | 2006-07-04 08:58:29 +0000 | [diff] [blame] | 105 | <version>1.2_Java1.3</version> |
Marcel Offermans | 6f5348b | 2006-07-03 06:46:32 +0000 | [diff] [blame] | 106 | <scope>test</scope> |
| 107 | </dependency> |
| 108 | </dependencies> |
| 109 | <build> |
| 110 | <plugins> |
| 111 | <plugin> |
| 112 | <groupId>org.apache.maven.plugins</groupId> |
Marcel Offermans | 45ad81c | 2006-07-04 08:58:29 +0000 | [diff] [blame] | 113 | <artifactId>maven-compiler-plugin</artifactId> |
| 114 | <configuration> |
| 115 | <target>1.4</target> |
| 116 | </configuration> |
| 117 | </plugin> |
| 118 | <plugin> |
| 119 | <groupId>org.apache.maven.plugins</groupId> |
Marcel Offermans | 6f5348b | 2006-07-03 06:46:32 +0000 | [diff] [blame] | 120 | <artifactId>maven-surefire-plugin</artifactId> |
| 121 | </plugin> |
| 122 | <plugin> |
| 123 | <groupId>org.apache.maven.plugins</groupId> |
| 124 | <artifactId>maven-surefire-report-plugin</artifactId> |
| 125 | </plugin> |
| 126 | </plugins> |
| 127 | </build> |
| 128 | <reporting> |
| 129 | <plugins> |
| 130 | <plugin> |
| 131 | <groupId>org.apache.maven.plugins</groupId> |
| 132 | <artifactId>maven-project-info-reports-plugin</artifactId> |
| 133 | </plugin> |
| 134 | </plugins> |
| 135 | </reporting> |
Karl Pauls | 552f5b8 | 2006-05-14 15:20:37 +0000 | [diff] [blame] | 136 | </project> |