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 | --> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 19 | <project> |
Alex Karasulu | c15532e | 2006-03-06 19:42:54 +0000 | [diff] [blame] | 20 | <parent> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix</artifactId> |
Karl Pauls | bfdc6bd | 2007-09-17 22:16:09 +0000 | [diff] [blame] | 23 | <version>1.0.0</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 24 | <relativePath>../pom/pom.xml</relativePath> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 27 | <packaging>bundle</packaging> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 28 | <name>Apache Felix Main</name> |
| 29 | <artifactId>org.apache.felix.main</artifactId> |
Karl Pauls | 34724e9 | 2007-09-17 22:25:00 +0000 | [diff] [blame] | 30 | <version>1.1.0-SNAPSHOT</version> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>${pom.groupId}</groupId> |
| 34 | <artifactId>org.apache.felix.framework</artifactId> |
Karl Pauls | 34724e9 | 2007-09-17 22:25:00 +0000 | [diff] [blame] | 35 | <version>1.1.0-SNAPSHOT</version> |
Richard S. Hall | c2c5804 | 2006-11-28 20:50:51 +0000 | [diff] [blame] | 36 | <exclusions> |
| 37 | <exclusion> |
| 38 | <groupId>${pom.groupId}</groupId> |
| 39 | <artifactId>org.osgi.core</artifactId> |
| 40 | </exclusion> |
Richard S. Hall | b35c038 | 2007-07-16 17:29:17 +0000 | [diff] [blame] | 41 | <!--exclusion> |
| 42 | For now framework doesn't have this dependency, but it |
| 43 | will once the compendium bundle is released. |
Richard S. Hall | 487c44d | 2007-05-22 15:58:30 +0000 | [diff] [blame] | 44 | <groupId>${pom.groupId}</groupId> |
| 45 | <artifactId>org.osgi.compendium</artifactId> |
Richard S. Hall | b35c038 | 2007-07-16 17:29:17 +0000 | [diff] [blame] | 46 | </exclusion--> |
Richard S. Hall | c2c5804 | 2006-11-28 20:50:51 +0000 | [diff] [blame] | 47 | </exclusions> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 48 | </dependency> |
Karl Pauls | 4d82d2f | 2006-11-03 00:08:28 +0000 | [diff] [blame] | 49 | <dependency> |
| 50 | <groupId>${pom.groupId}</groupId> |
| 51 | <artifactId>org.apache.felix.shell</artifactId> |
Karl Pauls | 34724e9 | 2007-09-17 22:25:00 +0000 | [diff] [blame] | 52 | <version>1.1.0-SNAPSHOT</version> |
Richard S. Hall | c2c5804 | 2006-11-28 20:50:51 +0000 | [diff] [blame] | 53 | <exclusions> |
| 54 | <exclusion> |
| 55 | <groupId>${pom.groupId}</groupId> |
| 56 | <artifactId>org.osgi.core</artifactId> |
| 57 | </exclusion> |
| 58 | </exclusions> |
Karl Pauls | 4d82d2f | 2006-11-03 00:08:28 +0000 | [diff] [blame] | 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>${pom.groupId}</groupId> |
| 62 | <artifactId>org.apache.felix.shell.tui</artifactId> |
Karl Pauls | 34724e9 | 2007-09-17 22:25:00 +0000 | [diff] [blame] | 63 | <version>1.1.0-SNAPSHOT</version> |
Richard S. Hall | c2c5804 | 2006-11-28 20:50:51 +0000 | [diff] [blame] | 64 | <exclusions> |
| 65 | <exclusion> |
| 66 | <groupId>${pom.groupId}</groupId> |
| 67 | <artifactId>org.osgi.core</artifactId> |
| 68 | </exclusion> |
| 69 | </exclusions> |
Karl Pauls | 4d82d2f | 2006-11-03 00:08:28 +0000 | [diff] [blame] | 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>${pom.groupId}</groupId> |
| 73 | <artifactId>org.apache.felix.bundlerepository</artifactId> |
Karl Pauls | 34724e9 | 2007-09-17 22:25:00 +0000 | [diff] [blame] | 74 | <version>1.1.0-SNAPSHOT</version> |
Richard S. Hall | c2c5804 | 2006-11-28 20:50:51 +0000 | [diff] [blame] | 75 | <exclusions> |
| 76 | <exclusion> |
| 77 | <groupId>${pom.groupId}</groupId> |
| 78 | <artifactId>org.osgi.core</artifactId> |
| 79 | </exclusion> |
Richard S. Hall | d4d36cc | 2007-06-26 10:04:00 +0000 | [diff] [blame] | 80 | <exclusion> |
| 81 | <groupId>net.sf.kxml</groupId> |
| 82 | <artifactId>kxml2</artifactId> |
| 83 | </exclusion> |
Richard S. Hall | c2c5804 | 2006-11-28 20:50:51 +0000 | [diff] [blame] | 84 | </exclusions> |
Karl Pauls | 4d82d2f | 2006-11-03 00:08:28 +0000 | [diff] [blame] | 85 | </dependency> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 86 | </dependencies> |
Alex Karasulu | c15532e | 2006-03-06 19:42:54 +0000 | [diff] [blame] | 87 | <properties> |
| 88 | <property name="install.home" value="${basedir.absolutePath}"/> |
| 89 | </properties> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 90 | <build> |
| 91 | <plugins> |
| 92 | <plugin> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 93 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 94 | <artifactId>maven-bundle-plugin</artifactId> |
Karl Pauls | bfdc6bd | 2007-09-17 22:16:09 +0000 | [diff] [blame] | 95 | <version>1.0.0</version> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 96 | <extensions>true</extensions> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 97 | <configuration> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 98 | <instructions> |
Richard S. Hall | 2730552 | 2007-03-28 15:28:25 +0000 | [diff] [blame] | 99 | <_donotcopy>(CVS|.svn|config.properties)</_donotcopy> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 100 | <Main-Class>org.apache.felix.main.Main</Main-Class> |
| 101 | <Bundle-Name>Apache Felix</Bundle-Name> |
| 102 | <Bundle-Description>OSGi R4 framework.</Bundle-Description> |
Karl Pauls | 39f9e54 | 2007-09-12 18:18:40 +0000 | [diff] [blame] | 103 | <Private-Package>org.apache.felix.main.*,org.apache.felix.moduleloader.*,org.apache.felix.framework.*,org.osgi.framework,org.osgi.service.packageadmin,org.osgi.service.startlevel,org.osgi.service.url,org.osgi.util.tracker</Private-Package> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 104 | <Import-Package>!*</Import-Package> |
| 105 | <Include-Resource>{src/main/resources/}</Include-Resource> |
Richard S. Hall | f78c6b6 | 2007-10-16 16:14:42 +0000 | [diff] [blame] | 106 | <!-- Include these properties here because we want them |
| 107 | substituted in the default.properties resource file |
| 108 | so that we only have to maintain one set of properties |
Richard S. Hall | 4d18a85 | 2007-10-16 16:17:19 +0000 | [diff] [blame^] | 109 | and only for that reason. --> |
Richard S. Hall | f78c6b6 | 2007-10-16 16:14:42 +0000 | [diff] [blame] | 110 | <_include>src/main/resources/config.properties</_include> |
| 111 | <dollar>$</dollar> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 112 | </instructions> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 113 | </configuration> |
| 114 | </plugin> |
Alex Karasulu | c15532e | 2006-03-06 19:42:54 +0000 | [diff] [blame] | 115 | <plugin> |
Karl Pauls | aa573ad | 2007-07-19 19:09:54 +0000 | [diff] [blame] | 116 | <groupId>org.apache.maven.plugins</groupId> |
| 117 | <artifactId>maven-dependency-plugin</artifactId> |
| 118 | <executions> |
| 119 | <execution> |
Karl Pauls | 39f9e54 | 2007-09-12 18:18:40 +0000 | [diff] [blame] | 120 | <id>unpack</id> |
| 121 | <phase>validate</phase> |
| 122 | <goals> |
| 123 | <goal>unpack</goal> |
| 124 | </goals> |
| 125 | <configuration> |
| 126 | <outputDirectory>${project.build.outputDirectory}</outputDirectory> |
| 127 | <artifactItems> |
| 128 | <artifactItem> |
| 129 | <groupId>${pom.groupId}</groupId> |
| 130 | <artifactId>org.apache.felix.framework</artifactId> |
Karl Pauls | 34724e9 | 2007-09-17 22:25:00 +0000 | [diff] [blame] | 131 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 39f9e54 | 2007-09-12 18:18:40 +0000 | [diff] [blame] | 132 | </artifactItem> |
| 133 | </artifactItems> |
| 134 | </configuration> |
| 135 | </execution> |
| 136 | <execution> |
Karl Pauls | aa573ad | 2007-07-19 19:09:54 +0000 | [diff] [blame] | 137 | <id>copy</id> |
| 138 | <phase>install</phase> |
| 139 | <goals> |
| 140 | <goal>copy</goal> |
| 141 | </goals> |
| 142 | <configuration> |
| 143 | <artifactItems> |
| 144 | <artifactItem> |
| 145 | <groupId>${pom.groupId}</groupId> |
| 146 | <artifactId>org.apache.felix.shell</artifactId> |
Karl Pauls | 34724e9 | 2007-09-17 22:25:00 +0000 | [diff] [blame] | 147 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | aa573ad | 2007-07-19 19:09:54 +0000 | [diff] [blame] | 148 | <type>jar</type> |
| 149 | <overWrite>true</overWrite> |
| 150 | <outputDirectory>${project.build.directory}/bundle</outputDirectory > |
| 151 | </artifactItem> |
| 152 | <artifactItem> |
| 153 | <groupId>${pom.groupId}</groupId> |
| 154 | <artifactId>org.apache.felix.shell.tui</artifactId> |
Karl Pauls | 34724e9 | 2007-09-17 22:25:00 +0000 | [diff] [blame] | 155 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | aa573ad | 2007-07-19 19:09:54 +0000 | [diff] [blame] | 156 | <type>jar</type> |
| 157 | <overWrite>true</overWrite> |
| 158 | <outputDirectory>${project.build.directory}/bundle</outputDirectory > |
| 159 | </artifactItem> |
| 160 | <artifactItem> |
| 161 | <groupId>${pom.groupId}</groupId> |
| 162 | <artifactId>org.apache.felix.bundlerepository</artifactId> |
Karl Pauls | 34724e9 | 2007-09-17 22:25:00 +0000 | [diff] [blame] | 163 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | aa573ad | 2007-07-19 19:09:54 +0000 | [diff] [blame] | 164 | <type>jar</type> |
| 165 | <overWrite>true</overWrite> |
| 166 | <outputDirectory>${project.build.directory}/bundle</outputDirectory > |
| 167 | </artifactItem> |
| 168 | </artifactItems> |
| 169 | </configuration> |
| 170 | </execution> |
| 171 | </executions> |
| 172 | </plugin> |
| 173 | <plugin> |
Alex Karasulu | c15532e | 2006-03-06 19:42:54 +0000 | [diff] [blame] | 174 | <artifactId>maven-antrun-plugin</artifactId> |
| 175 | <executions> |
| 176 | <execution> |
| 177 | <phase>install</phase> |
| 178 | <configuration> |
| 179 | <tasks> |
| 180 | <delete dir="${basedir}/bin"/> |
| 181 | <mkdir dir="${basedir}/bin"/> |
Alex Karasulu | c15532e | 2006-03-06 19:42:54 +0000 | [diff] [blame] | 182 | <delete dir="${basedir}/conf"/> |
| 183 | <mkdir dir="${basedir}/conf"/> |
| 184 | <delete dir="${basedir}/bundle"/> |
Karl Pauls | aa573ad | 2007-07-19 19:09:54 +0000 | [diff] [blame] | 185 | <copy file="${basedir}/target/org.apache.felix.main-${pom.version}.jar" |
| 186 | tofile="${basedir}/bin/felix.jar"/> |
| 187 | <copy file="${basedir}/target/classes/config.properties" |
| 188 | todir="${basedir}/conf"/> |
| 189 | <move file="${basedir}/target/bundle" |
| 190 | todir="${basedir}"/> |
Alex Karasulu | c15532e | 2006-03-06 19:42:54 +0000 | [diff] [blame] | 191 | </tasks> |
| 192 | </configuration> |
| 193 | <goals> |
| 194 | <goal>run</goal> |
| 195 | </goals> |
| 196 | </execution> |
| 197 | </executions> |
| 198 | </plugin> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 199 | </plugins> |
Alex Karasulu | c15532e | 2006-03-06 19:42:54 +0000 | [diff] [blame] | 200 | <resources> |
| 201 | <resource> |
| 202 | <directory>src/main/resources</directory> |
| 203 | <filtering>true</filtering> |
| 204 | </resource> |
Richard S. Hall | 1da4e54 | 2006-11-02 21:45:44 +0000 | [diff] [blame] | 205 | </resources> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 206 | </build> |
| 207 | </project> |