Karl Pauls | d69e8af | 2006-08-12 09:51:20 +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> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 6 | <name>Apache Felix</name> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 7 | <version>0.8.0-SNAPSHOT</version> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 8 | <url>http://incubator.apache.org/felix/</url> |
| 9 | <description>Apache felix is an OSGi implementation.</description> |
| 10 | |
| 11 | <issueManagement> |
| 12 | <system>Jira</system> |
| 13 | <url>http://issues.apache.org/jira/browse/FELIX</url> |
| 14 | </issueManagement> |
| 15 | |
| 16 | <mailingLists> |
| 17 | <mailingList> |
| 18 | <name>Felix Dev</name> |
| 19 | <subscribe>felix-dev-subscribe@incubator.apache.org</subscribe> |
| 20 | <unsubscribe>felix-dev-unsubscribe@incubator.apache.org</unsubscribe> |
| 21 | <post>-</post> |
| 22 | <archive>http://www.mail-archive.com/felix-dev%40incubator.apache.org/</archive> |
| 23 | </mailingList> |
| 24 | <mailingList> |
| 25 | <name>Felix Commits</name> |
| 26 | <subscribe>felix-commits-subscribe@incubator.apache.org</subscribe> |
| 27 | <unsubscribe>felix-commits-unsubscribe@incubator.apache.org</unsubscribe> |
| 28 | <post>-</post> |
| 29 | <archive>http://www.mail-archive.com/felix-commits%40incubator.apache.org/</archive> |
| 30 | </mailingList> |
| 31 | </mailingLists> |
| 32 | |
| 33 | <licenses> |
| 34 | <license> |
| 35 | <name>The Apache Software License, Version 2.0</name> |
| 36 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 37 | <distribution>repo</distribution> |
| 38 | </license> |
| 39 | </licenses> |
| 40 | |
| 41 | <scm> |
| 42 | <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/felix</connection> |
| 43 | <developerConnection>scm:svn:http://svn.apache.org/repos/asf/incubator/felix</developerConnection> |
| 44 | <url>http://cvs.apache.org/viewcvs.cgi/incubator/felix/?root=Apache-SVN</url> |
| 45 | </scm> |
| 46 | |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 47 | <modules> |
| 48 | <module>tools/maven2/maven-osgi-plugin</module> |
| 49 | <module>javax.servlet</module> |
| 50 | <module>org.osgi.core</module> |
| 51 | <module>org.osgi.compendium</module> |
| 52 | <module>framework</module> |
| 53 | <module>shell</module> |
| 54 | <module>shell.tui</module> |
| 55 | <module>shell.gui</module> |
| 56 | <module>shell.gui.plugin</module> |
| 57 | <module>bundlerepository</module> |
| 58 | <module>org.apache.felix.daemon</module> |
| 59 | <module>org.apache.felix.dependencymanager</module> |
| 60 | <module>main</module> |
| 61 | |
| 62 | <module>examples</module> |
| 63 | |
| 64 | <module>servicebinder</module> |
| 65 | <module>wireadmin</module> |
| 66 | <module>upnp.extra</module> |
| 67 | <module>upnp.basedriver</module> |
| 68 | <module>upnp.tester</module> |
| 69 | <module>upnp.sample.tv</module> |
| 70 | <module>upnp.sample.clock</module> |
| 71 | <module>upnp.sample.binaryLight</module> |
| 72 | <module>http.jetty</module> |
| 73 | <module>scr</module> |
| 74 | <module>eventadmin</module> |
| 75 | <module>eventadmin.bridge.upnp</module> |
| 76 | <module>eventadmin.bridge.configuration</module> |
| 77 | <module>eventadmin.bridge.useradmin</module> |
| 78 | <module>eventadmin.bridge.wireadmin</module> |
| 79 | <module>ipojo</module> |
| 80 | <module>ipojo.metadata</module> |
| 81 | <module>ipojo.plugin</module> |
| 82 | <module>ipojo.arch</module> |
Rob Walker | cf85daa | 2006-08-24 11:04:56 +0000 | [diff] [blame] | 83 | |
| 84 | <module>tools/mangen</module> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 85 | </modules> |
| 86 | |
| 87 | <repositories> |
| 88 | <!-- For snapshots (no release jars or non-apache jars) --> |
| 89 | <repository> |
| 90 | <id>apache.snapshots</id> |
| 91 | <name>Apache Snapshot Repository</name> |
| 92 | <url>http://cvs.apache.org/maven-snapshot-repository</url> |
| 93 | </repository> |
| 94 | |
| 95 | <repository> |
| 96 | <id>safehaus</id> |
| 97 | <name>Alternate Repository for Missing Ibiblio Artifacts</name> |
| 98 | <url>http://m2.safehaus.org</url> |
| 99 | </repository> |
| 100 | </repositories> |
| 101 | |
| 102 | <distributionManagement> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 103 | <site> |
| 104 | <id>felix website</id> |
Marcel Offermans | f673703 | 2006-08-17 19:49:13 +0000 | [diff] [blame] | 105 | <url>file:///${user.dir}/target/site-deployed/</url> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 106 | </site> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 107 | <snapshotRepository> |
| 108 | <name>Apache Snapshots</name> |
| 109 | <id>apache.snapshots</id> |
| 110 | <url> |
| 111 | scp://apache.org/www/cvs.apache.org/maven-snapshot-repository |
| 112 | </url> |
| 113 | </snapshotRepository> |
| 114 | <repository> |
| 115 | <name>ASF Mirrored M2 Distributions</name> |
| 116 | <id>apache.distributions</id> |
| 117 | <url> |
| 118 | scp://minotaur.apache.org/www/www.apache.org/dist/maven-repository |
| 119 | </url> |
| 120 | </repository> |
| 121 | </distributionManagement> |
| 122 | |
| 123 | <pluginRepositories> |
| 124 | <pluginRepository> |
| 125 | <id>apache.snapshots</id> |
| 126 | <name>snapshot plugins</name> |
| 127 | <url> |
| 128 | http://cvs.apache.org/maven-snapshot-repository |
| 129 | </url> |
| 130 | </pluginRepository> |
| 131 | </pluginRepositories> |
| 132 | |
| 133 | <!-- definitions for testing --> |
| 134 | <dependencies> |
| 135 | <dependency> |
| 136 | <groupId>junit</groupId> |
| 137 | <artifactId>junit</artifactId> |
| 138 | <version>3.8.1</version> |
| 139 | <scope>test</scope> |
| 140 | </dependency> |
| 141 | <dependency> |
| 142 | <groupId>easymock</groupId> |
| 143 | <artifactId>easymock</artifactId> |
| 144 | <version>1.2_Java1.3</version> |
| 145 | <scope>test</scope> |
| 146 | </dependency> |
| 147 | </dependencies> |
| 148 | <build> |
| 149 | <plugins> |
| 150 | <plugin> |
| 151 | <groupId>org.apache.maven.plugins</groupId> |
| 152 | <artifactId>maven-compiler-plugin</artifactId> |
| 153 | <configuration> |
| 154 | <target>1.4</target> |
| 155 | </configuration> |
| 156 | </plugin> |
| 157 | <plugin> |
| 158 | <groupId>org.apache.maven.plugins</groupId> |
| 159 | <artifactId>maven-surefire-plugin</artifactId> |
| 160 | </plugin> |
| 161 | <plugin> |
| 162 | <groupId>org.apache.maven.plugins</groupId> |
| 163 | <artifactId>maven-surefire-report-plugin</artifactId> |
| 164 | </plugin> |
| 165 | </plugins> |
| 166 | </build> |
| 167 | <reporting> |
| 168 | <plugins> |
| 169 | <plugin> |
| 170 | <groupId>org.apache.maven.plugins</groupId> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 171 | <artifactId>maven-site-plugin</artifactId> |
| 172 | <configuration> |
Marcel Offermans | 5dcb02c | 2006-08-17 20:58:34 +0000 | [diff] [blame] | 173 | <templateDirectory>${user.dir}/src/site/</templateDirectory> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 174 | <template>maven-site.vm</template> |
| 175 | </configuration> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 176 | </plugin> |
Marcel Offermans | 0ed8729 | 2006-08-17 19:10:30 +0000 | [diff] [blame] | 177 | <plugin> |
| 178 | <groupId>org.apache.maven.plugins</groupId> |
| 179 | <artifactId>maven-surefire-plugin</artifactId> |
| 180 | </plugin> |
| 181 | <plugin> |
| 182 | <groupId>org.codehaus.mojo</groupId> |
| 183 | <artifactId>jxr-maven-plugin</artifactId> |
| 184 | </plugin> |
| 185 | <plugin> |
| 186 | <groupId>org.apache.maven.plugins</groupId> |
| 187 | <artifactId>maven-project-info-reports-plugin</artifactId> |
| 188 | <reportSets> |
| 189 | <reportSet> |
| 190 | <reports> |
| 191 | <report>index</report> |
| 192 | <report>dependencies</report> |
| 193 | <report>project-team</report> |
| 194 | <report>mailing-list</report> |
| 195 | <report>issue-tracking</report> |
| 196 | <report>license</report> |
| 197 | <report>scm</report> |
| 198 | </reports> |
| 199 | </reportSet> |
| 200 | </reportSets> |
| 201 | </plugin> |
| 202 | <!--plugin> |
| 203 | <groupId>org.apache.maven.plugins</groupId> |
| 204 | <artifactId>maven-javadoc-plugin</artifactId> |
| 205 | <configuration> |
| 206 | <aggregate>true</aggregate> |
| 207 | </configuration> |
| 208 | </plugin--> |
Karl Pauls | d69e8af | 2006-08-12 09:51:20 +0000 | [diff] [blame] | 209 | </plugins> |
| 210 | </reporting> |
| 211 | </project> |