Carsten Ziegeler | b61fe0e | 2008-01-03 09:24:12 +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 | --> |
Carsten Ziegeler | 4fec096 | 2008-01-11 16:13:31 +0000 | [diff] [blame] | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
Felix Meschberger | a4ad70a | 2009-04-27 13:12:37 +0000 | [diff] [blame] | 22 | <artifactId>felix-parent</artifactId> |
| 23 | <version>1.2.0</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 24 | <relativePath>../pom/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <name>Apache Felix Declarative Services</name> |
| 29 | <description> |
Felix Meschberger | 39d6c58 | 2010-05-28 20:28:18 +0000 | [diff] [blame] | 30 | Implementation of the Declarative Services specification 1.1 |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 31 | </description> |
| 32 | <artifactId>org.apache.felix.scr</artifactId> |
Felix Meschberger | 38dd63b | 2010-08-10 12:19:28 +0000 | [diff] [blame] | 33 | <version>1.6.1-SNAPSHOT</version> |
Felix Meschberger | 4753fcb | 2009-04-29 08:46:06 +0000 | [diff] [blame] | 34 | <scm> |
Felix Meschberger | 38dd63b | 2010-08-10 12:19:28 +0000 | [diff] [blame] | 35 | <connection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scr</connection> |
| 36 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scr</developerConnection> |
| 37 | <url>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/scr</url> |
Felix Meschberger | 4753fcb | 2009-04-29 08:46:06 +0000 | [diff] [blame] | 38 | </scm> |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 39 | |
| 40 | <!-- |
| 41 | A Note on Testing |
| 42 | ================= |
| 43 | |
| 44 | This project contains two kinds of tests: regular unit tests running |
| 45 | in the test phase and integration tests based on PAX Exam running |
| 46 | in the integration-test phase. |
| 47 | |
| 48 | Basically the complete project is build using Java 1.3 source and target |
| 49 | compatibility (as inherited from the parent pom). The exception are the |
| 50 | unit tests in the "integration" packages. These have to be compiled with |
| 51 | Java 5 source and target compatibility because the employ annotations |
| 52 | and generics. |
| 53 | |
| 54 | For running the integration tests from the console using Maven nothing |
| 55 | special has to be done as the tests run automatically. To run the tests |
| 56 | in your IDE, the project has to be built to the "package" phase with |
| 57 | the profile "ide" enabled: |
| 58 | |
| 59 | $ mvn -Pide clean package |
| 60 | |
| 61 | This creates the scr.jar file in the target folder, which is used by |
| 62 | the integration tests when run from the IDE. Alternatively the |
| 63 | "project.bundle.file" system property may be set to the bundle JAR |
| 64 | in the IDE launcher. |
| 65 | --> |
Felix Meschberger | c17fdbd | 2009-10-12 07:25:39 +0000 | [diff] [blame] | 66 | <properties> |
Felix Meschberger | 6c63b75 | 2009-10-12 08:11:27 +0000 | [diff] [blame] | 67 | <bundle.build.name> |
| 68 | ${basedir}/target |
| 69 | </bundle.build.name> |
Felix Meschberger | e130b0b | 2009-10-12 07:51:50 +0000 | [diff] [blame] | 70 | <bundle.file.name> |
Felix Meschberger | 6c63b75 | 2009-10-12 08:11:27 +0000 | [diff] [blame] | 71 | ${bundle.build.name}/${project.build.finalName}.jar |
Felix Meschberger | e130b0b | 2009-10-12 07:51:50 +0000 | [diff] [blame] | 72 | </bundle.file.name> |
Felix Meschberger | c17fdbd | 2009-10-12 07:25:39 +0000 | [diff] [blame] | 73 | </properties> |
| 74 | |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 75 | |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 76 | <dependencies> |
| 77 | <dependency> |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 78 | <groupId>org.osgi</groupId> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 79 | <artifactId>org.osgi.core</artifactId> |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 80 | <version>4.1.0</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 81 | <scope>provided</scope> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 82 | </dependency> |
| 83 | <dependency> |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 84 | <groupId>org.osgi</groupId> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 85 | <artifactId>org.osgi.compendium</artifactId> |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 86 | <version>4.2.0</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 87 | <scope>provided</scope> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 88 | </dependency> |
| 89 | <dependency> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 90 | <groupId>${pom.groupId}</groupId> |
| 91 | <artifactId>org.apache.felix.shell</artifactId> |
| 92 | <version>1.0.0</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 93 | <scope>provided</scope> |
Felix Meschberger | 6c63b75 | 2009-10-12 08:11:27 +0000 | [diff] [blame] | 94 | <exclusions> |
| 95 | <exclusion> |
| 96 | <groupId>org.apache.felix</groupId> |
| 97 | <artifactId>org.osgi.core</artifactId> |
| 98 | </exclusion> |
| 99 | </exclusions> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 100 | </dependency> |
| 101 | <dependency> |
Felix Meschberger | 44add77 | 2010-12-23 18:13:24 +0000 | [diff] [blame] | 102 | <groupId>org.apache.felix</groupId> |
| 103 | <artifactId>org.apache.felix.gogo.runtime</artifactId> |
| 104 | <version>0.6.1</version> |
| 105 | <scope>provided</scope> |
| 106 | </dependency> |
| 107 | <dependency> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 108 | <groupId>net.sf.kxml</groupId> |
| 109 | <artifactId>kxml2</artifactId> |
| 110 | <version>2.2.2</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 111 | <scope>provided</scope> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 112 | </dependency> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 113 | |
| 114 | <!-- Integration Testing with Pax Exam --> |
| 115 | <dependency> |
| 116 | <groupId>junit</groupId> |
| 117 | <artifactId>junit</artifactId> |
| 118 | <version>4.6</version> |
Felix Meschberger | bbd1e9d | 2009-10-11 08:18:18 +0000 | [diff] [blame] | 119 | <scope>test</scope> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 120 | </dependency> |
| 121 | <dependency> |
| 122 | <groupId>org.ops4j.pax.exam</groupId> |
| 123 | <artifactId>pax-exam</artifactId> |
| 124 | <version>0.6.0</version> |
| 125 | <scope>test</scope> |
| 126 | </dependency> |
| 127 | <dependency> |
| 128 | <groupId>org.ops4j.pax.exam</groupId> |
| 129 | <artifactId>pax-exam-junit</artifactId> |
| 130 | <version>0.6.0</version> |
| 131 | <scope>test</scope> |
| 132 | </dependency> |
| 133 | <dependency> |
| 134 | <groupId>org.ops4j.pax.exam</groupId> |
| 135 | <artifactId>pax-exam-container-default</artifactId> |
| 136 | <version>0.6.0</version> |
| 137 | <scope>test</scope> |
| 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>org.ops4j.pax.swissbox</groupId> |
| 141 | <artifactId>pax-swissbox-tinybundles</artifactId> |
| 142 | <version>1.0.0</version> |
| 143 | <scope>test</scope> |
| 144 | </dependency> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 145 | </dependencies> |
| 146 | <build> |
Felix Meschberger | 6c63b75 | 2009-10-12 08:11:27 +0000 | [diff] [blame] | 147 | <directory>${bundle.build.name}</directory> |
Felix Meschberger | 198140c | 2010-08-12 07:37:34 +0000 | [diff] [blame] | 148 | <resources> |
| 149 | <resource> |
| 150 | <directory>${basedir}/src/main/resources</directory> |
| 151 | </resource> |
| 152 | <resource> |
| 153 | <targetPath>META-INF</targetPath> |
| 154 | <directory>${basedir}</directory> |
| 155 | <includes> |
| 156 | <include>LICENSE</include> |
| 157 | <include>NOTICE</include> |
| 158 | <include>DEPENDENCIES</include> |
| 159 | </includes> |
| 160 | </resource> |
| 161 | </resources> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 162 | <plugins> |
| 163 | <plugin> |
| 164 | <groupId>org.apache.felix</groupId> |
| 165 | <artifactId>maven-bundle-plugin</artifactId> |
Felix Meschberger | 5fbf0f1 | 2009-12-07 07:52:51 +0000 | [diff] [blame] | 166 | <version>2.0.1</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 167 | <extensions>true</extensions> |
| 168 | <configuration> |
| 169 | <instructions> |
| 170 | <Bundle-SymbolicName> |
| 171 | ${artifactId} |
| 172 | </Bundle-SymbolicName> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 173 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Felix Meschberger | 40d3e60 | 2009-10-11 12:25:14 +0000 | [diff] [blame] | 174 | <Bundle-DocURL> |
| 175 | http://felix.apache.org/site/apache-felix-service-component-runtime.html |
| 176 | </Bundle-DocURL> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 177 | <Bundle-Activator> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 178 | org.apache.felix.scr.impl.Activator |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 179 | </Bundle-Activator> |
| 180 | <Export-Package> |
Felix Meschberger | 0da1bab | 2010-08-03 08:55:21 +0000 | [diff] [blame] | 181 | org.apache.felix.scr;version=1.6, |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 182 | org.osgi.service.component |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 183 | </Export-Package> |
| 184 | <Private-Package> |
Felix Meschberger | 9b4e023 | 2009-07-09 12:34:12 +0000 | [diff] [blame] | 185 | org.apache.felix.scr.impl.*, |
| 186 | org.osgi.util.tracker |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 187 | </Private-Package> |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 188 | <Import-Package> |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 189 | <!-- |
Felix Meschberger | 44add77 | 2010-12-23 18:13:24 +0000 | [diff] [blame] | 190 | optional import for Gogo annotations |
| 191 | --> |
| 192 | org.apache.felix.service.command;resolution:=optional, |
| 193 | |
| 194 | <!-- |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 195 | The Felix Shell support is optional |
| 196 | --> |
Felix Meschberger | 9b4e023 | 2009-07-09 12:34:12 +0000 | [diff] [blame] | 197 | org.apache.felix.shell; resolution:=optional, |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 198 | |
| 199 | <!-- |
Felix Meschberger | 8a8c633 | 2009-10-29 13:48:37 +0000 | [diff] [blame] | 200 | Framework version 1.4 (from R4.1) is required |
| 201 | because we depend on ServiceReference being |
| 202 | Comparable and Bundle.getBundleContext method |
| 203 | being available. |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 204 | --> |
Felix Meschberger | 8a8c633 | 2009-10-29 13:48:37 +0000 | [diff] [blame] | 205 | org.osgi.framework;version="[1.4,2)", |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 206 | |
| 207 | <!-- |
Felix Meschberger | d854a92 | 2009-10-29 12:28:50 +0000 | [diff] [blame] | 208 | LogService is optional but if present the |
| 209 | R4.0 version 1.3 is sufficient. |
| 210 | --> |
| 211 | org.osgi.service.log;version="[1.3,2)";resolution:=optional, |
| 212 | |
| 213 | <!-- |
Felix Meschberger | 08aaff6 | 2010-08-05 13:26:31 +0000 | [diff] [blame] | 214 | PackageAdmin is used to find reference types if |
| 215 | the any component's bundle does not import it. |
| 216 | See BindMethod.getParameterClass(Class) for details |
| 217 | --> |
| 218 | org.osgi.service.packageadmin;version="[1.2,2)";resolution:=optional, |
| 219 | |
| 220 | <!-- |
Felix Meschberger | 131ef02 | 2010-12-23 18:28:58 +0000 | [diff] [blame] | 221 | Configuration Admin version 1.2 (from R4.0) is enough |
| 222 | (FELIX-2578: API is currently required) |
Felix Meschberger | ca79792 | 2009-10-07 08:38:18 +0000 | [diff] [blame] | 223 | --> |
Felix Meschberger | 131ef02 | 2010-12-23 18:28:58 +0000 | [diff] [blame] | 224 | org.osgi.service.cm;version="[1.2,2)", |
Felix Meschberger | f6066cb | 2009-10-29 11:05:31 +0000 | [diff] [blame] | 225 | |
| 226 | <!-- |
Carsten Ziegeler | 6b5f9af | 2010-01-20 15:04:58 +0000 | [diff] [blame] | 227 | Metatype is optional and if it is |
| 228 | present, version 1.1 (from R4.1) is enough |
| 229 | --> |
| 230 | org.osgi.service.metatype;version="[1.1,2)";resolution:=optional, |
| 231 | |
| 232 | <!-- |
Felix Meschberger | f6066cb | 2009-10-29 11:05:31 +0000 | [diff] [blame] | 233 | SCR API is required (we also export it) and must |
| 234 | be of any 1.1 version, because we implement that |
| 235 | exact version. This import is only used if the |
| 236 | framework decides to wire the bundle to another |
| 237 | API provider. |
| 238 | --> |
| 239 | org.osgi.service.component;version="[1.1,1.2)" |
Felix Meschberger | d25a63d | 2007-11-23 13:02:49 +0000 | [diff] [blame] | 240 | </Import-Package> |
Felix Meschberger | 9b4e023 | 2009-07-09 12:34:12 +0000 | [diff] [blame] | 241 | <Embed-Dependency> |
| 242 | kxml2 |
| 243 | </Embed-Dependency> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 244 | </instructions> |
| 245 | </configuration> |
| 246 | </plugin> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 247 | |
| 248 | <!-- |
Felix Meschberger | 44add77 | 2010-12-23 18:13:24 +0000 | [diff] [blame] | 249 | Configure default compilation for Java 1.3 and integration |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 250 | test compilation for Java 5 (since integration tests use |
Felix Meschberger | 44add77 | 2010-12-23 18:13:24 +0000 | [diff] [blame] | 251 | Java Annotations for Pax Exam). |
| 252 | Also configure the compilation of the Gogo Command class |
| 253 | (using Java 5 annotations) with Java 5 target. |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 254 | --> |
| 255 | <plugin> |
| 256 | <artifactId>maven-compiler-plugin</artifactId> |
| 257 | <executions> |
| 258 | <execution> |
Felix Meschberger | 44add77 | 2010-12-23 18:13:24 +0000 | [diff] [blame] | 259 | <id>compile-java5</id> |
| 260 | <goals> |
| 261 | <goal>compile</goal> |
| 262 | </goals> |
| 263 | <configuration> |
| 264 | <source>1.5</source> |
| 265 | <target>1.5</target> |
| 266 | <excludes> |
| 267 | <exclude>dummy-to-overwrite-global-config</exclude> |
| 268 | </excludes> |
| 269 | <includes> |
| 270 | <include>**/ScrGogoCommand.java</include> |
| 271 | </includes> |
| 272 | </configuration> |
| 273 | </execution> |
| 274 | <execution> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 275 | <id>test-compile-java5</id> |
| 276 | <goals> |
| 277 | <goal>testCompile</goal> |
| 278 | </goals> |
| 279 | <configuration> |
| 280 | <source>1.5</source> |
| 281 | <target>1.5</target> |
| 282 | <testIncludes> |
| 283 | <testInclude>**/integration/**</testInclude> |
| 284 | </testIncludes> |
| 285 | <testExcludes> |
| 286 | <testExclude>**/impl/**</testExclude> |
| 287 | </testExcludes> |
| 288 | </configuration> |
| 289 | </execution> |
| 290 | </executions> |
| 291 | <configuration> |
| 292 | <testExcludes> |
| 293 | <testExclude>**/integration/**</testExclude> |
| 294 | </testExcludes> |
Felix Meschberger | 44add77 | 2010-12-23 18:13:24 +0000 | [diff] [blame] | 295 | <excludes> |
| 296 | <exclude>**/ScrGogoCommand.java</exclude> |
| 297 | </excludes> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 298 | </configuration> |
| 299 | </plugin> |
| 300 | |
| 301 | <!-- |
| 302 | Exclude Integration tests in (default) unit tests and |
| 303 | conversely enable integration tests for integration testing |
| 304 | only. Helper classes are completely excluded from testing. |
| 305 | --> |
| 306 | <plugin> |
| 307 | <artifactId>maven-surefire-plugin</artifactId> |
| 308 | <executions> |
| 309 | <execution> |
| 310 | <id>surefire-it</id> |
| 311 | <phase>integration-test</phase> |
| 312 | <goals> |
| 313 | <goal>test</goal> |
| 314 | </goals> |
| 315 | <configuration> |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 316 | <systemProperties> |
| 317 | <property> |
| 318 | <name>project.bundle.file</name> |
Felix Meschberger | e130b0b | 2009-10-12 07:51:50 +0000 | [diff] [blame] | 319 | <value>${bundle.file.name}</value> |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 320 | </property> |
| 321 | </systemProperties> |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 322 | <excludes> |
| 323 | <exclude>**/components/**</exclude> |
| 324 | </excludes> |
| 325 | <includes> |
| 326 | <include>**/integration/*</include> |
| 327 | </includes> |
| 328 | </configuration> |
| 329 | </execution> |
| 330 | </executions> |
| 331 | <configuration> |
| 332 | <excludes> |
| 333 | <exclude>**/integration/**</exclude> |
| 334 | <exclude>**/components/**</exclude> |
| 335 | <exclude>**/instances/**</exclude> |
| 336 | <exclude>**/instances2/**</exclude> |
| 337 | </excludes> |
| 338 | </configuration> |
| 339 | </plugin> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 340 | </plugins> |
| 341 | </build> |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 342 | |
| 343 | <profiles> |
| 344 | <!-- |
| 345 | copy the package such that IDEs may easily use it without |
| 346 | setting the system property |
| 347 | --> |
| 348 | <profile> |
| 349 | <id>ide</id> |
| 350 | <build> |
| 351 | <plugins> |
| 352 | <plugin> |
| 353 | <artifactId>maven-antrun-plugin</artifactId> |
| 354 | <version>1.3</version> |
| 355 | <executions> |
| 356 | <execution> |
| 357 | <id>scr-file-create</id> |
| 358 | <phase>package</phase> |
| 359 | <goals> |
| 360 | <goal>run</goal> |
| 361 | </goals> |
| 362 | <configuration> |
| 363 | <tasks> |
Felix Meschberger | 9afc4d7 | 2009-11-02 22:28:37 +0000 | [diff] [blame] | 364 | <copy file="${project.build.directory}/${project.build.finalName}.jar" tofile="${project.build.directory}/scr.jar" /> |
Felix Meschberger | 55e3b97 | 2009-10-12 07:16:08 +0000 | [diff] [blame] | 365 | </tasks> |
| 366 | </configuration> |
| 367 | </execution> |
| 368 | </executions> |
| 369 | </plugin> |
| 370 | </plugins> |
| 371 | </build> |
| 372 | </profile> |
| 373 | </profiles> |
| 374 | |
Felix Meschberger | 47eb037 | 2009-07-28 13:48:28 +0000 | [diff] [blame] | 375 | <!-- repositories for Pax Exam and BND tool --> |
| 376 | <repositories> |
| 377 | <repository> |
| 378 | <id>ops4j</id> |
| 379 | <name>ops4j</name> |
| 380 | <url>http://repository.ops4j.org/maven2</url> |
| 381 | <snapshots> |
| 382 | <enabled>false</enabled> |
| 383 | </snapshots> |
| 384 | </repository> |
| 385 | <repository> |
| 386 | <id>aqute</id> |
| 387 | <name>aqute</name> |
| 388 | <url>http://www.aqute.biz/repo</url> |
| 389 | <snapshots> |
| 390 | <enabled>false</enabled> |
| 391 | </snapshots> |
| 392 | </repository> |
| 393 | </repositories> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 394 | </project> |