blob: ab78a2f01bff0e7adb7286d5a4c9ca2a3d874883 [file] [log] [blame]
Karl Pauls5c093752008-04-22 15:36:51 +00001<!--
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 Ziegeler4fec0962008-01-11 16:13:31 +000019<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">
Alex Karasuluc15532e2006-03-06 19:42:54 +000020 <parent>
Alex Karasulu07d20492006-03-06 15:35:44 +000021 <groupId>org.apache.felix</groupId>
Karl Pauls040e4322009-05-10 22:09:56 +000022 <artifactId>felix-parent</artifactId>
Karl Paulsa6fc86b2011-09-22 12:46:54 +000023 <version>2.1</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../pom/pom.xml</relativePath>
Alex Karasulu07d20492006-03-06 15:35:44 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
Richard S. Hall1da4e542006-11-02 21:45:44 +000027 <packaging>bundle</packaging>
Alex Karasulu07d20492006-03-06 15:35:44 +000028 <name>Apache Felix Main</name>
29 <artifactId>org.apache.felix.main</artifactId>
Karl Pauls53136bf2015-01-11 23:51:58 +000030 <version>4.7.0-SNAPSHOT</version>
Karl Paulsac6574f2011-09-22 15:31:25 +000031 <scm>
Karl Pauls53136bf2015-01-11 23:51:58 +000032 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/main</connection>
33 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/main</developerConnection>
34 <url>http://svn.apache.org/repos/asf/felix/main</url>
Karl Paulsac6574f2011-09-22 15:31:25 +000035 </scm>
Alex Karasulu07d20492006-03-06 15:35:44 +000036 <dependencies>
37 <dependency>
38 <groupId>${pom.groupId}</groupId>
39 <artifactId>org.apache.felix.framework</artifactId>
Karl Pauls911d47b2010-02-04 23:19:54 +000040 <version>${framework.version}</version>
Alex Karasulu07d20492006-03-06 15:35:44 +000041 </dependency>
Alex Karasulu07d20492006-03-06 15:35:44 +000042 </dependencies>
Alex Karasuluc15532e2006-03-06 19:42:54 +000043 <properties>
Karl Paulsa59b6c42010-08-18 20:38:51 +000044 <log.level>4</log.level>
Richard S. Hall726b6162008-10-09 15:54:32 +000045 <dollar>$</dollar>
Karl Pauls0eb0c8d2015-01-11 23:55:40 +000046 <framework.version>4.7.0-SNAPSHOT</framework.version>
A. J. David Bosschaertd6769362014-06-26 10:26:25 +000047 <gogo.runtime.version>0.12.1</gogo.runtime.version>
Richard S. Hall0eb83c52011-08-11 16:46:31 +000048 <gogo.shell.version>0.10.0</gogo.shell.version>
A. J. David Bosschaertd6769362014-06-26 10:26:25 +000049 <gogo.command.version>0.14.0</gogo.command.version>
Karl Pauls0eb0c8d2015-01-11 23:55:40 +000050 <obr.version>2.0.3-SNAPSHOT</obr.version>
Alex Karasuluc15532e2006-03-06 19:42:54 +000051 </properties>
Stuart McCullochf202a822008-10-22 11:55:02 +000052 <profiles>
53 <profile>
54 <id>release</id>
55 <properties>
Karl Pauls46d13742009-11-01 19:35:18 +000056 <log.level>1</log.level>
Karl Pauls48d887c2009-04-26 20:54:43 +000057 <dollar>$</dollar>
Stuart McCullochf202a822008-10-22 11:55:02 +000058 </properties>
59 </profile>
60 </profiles>
Alex Karasulu07d20492006-03-06 15:35:44 +000061 <build>
62 <plugins>
63 <plugin>
Richard S. Hall5c77e1d2012-06-16 19:13:30 +000064 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-compiler-plugin</artifactId>
66 <configuration>
67 <target>1.5</target>
68 <source>1.5</source>
69 </configuration>
70 </plugin>
71
72 <plugin>
Richard S. Hall1da4e542006-11-02 21:45:44 +000073 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000074 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls10707b92014-07-09 16:22:55 +000075 <version>2.5.0</version>
Richard S. Hall1da4e542006-11-02 21:45:44 +000076 <extensions>true</extensions>
Alex Karasulu07d20492006-03-06 15:35:44 +000077 <configuration>
Richard S. Hall1da4e542006-11-02 21:45:44 +000078 <instructions>
Richard S. Hall27305522007-03-28 15:28:25 +000079 <_donotcopy>(CVS|.svn|config.properties)</_donotcopy>
Richard S. Hall1da4e542006-11-02 21:45:44 +000080 <Main-Class>org.apache.felix.main.Main</Main-Class>
Richard S. Hallf94a18f2008-09-23 16:25:54 +000081 <Bundle-SymbolicName>org.apache.felix.main</Bundle-SymbolicName>
Richard S. Hall1da4e542006-11-02 21:45:44 +000082 <Bundle-Name>Apache Felix</Bundle-Name>
83 <Bundle-Description>OSGi R4 framework.</Bundle-Description>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000084 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Richard S. Hall42cf9c92008-10-16 20:22:58 +000085 <Embed-Dependency>*;artifactId=org.apache.felix.framework;inline=true</Embed-Dependency>
86 <Private-Package>org.apache.felix.main.*</Private-Package>
Richard S. Hall53264582012-05-30 14:47:16 +000087 <Export-Package>!org.osgi.service.log, !org.osgi.service.obr, org.osgi.*</Export-Package>
Richard S. Hall1da4e542006-11-02 21:45:44 +000088 <Import-Package>!*</Import-Package>
Richard S. Hall1da4e542006-11-02 21:45:44 +000089 </instructions>
Alex Karasulu07d20492006-03-06 15:35:44 +000090 </configuration>
91 </plugin>
Alex Karasuluc15532e2006-03-06 19:42:54 +000092 <plugin>
Karl Paulsaa573ad2007-07-19 19:09:54 +000093 <groupId>org.apache.maven.plugins</groupId>
94 <artifactId>maven-dependency-plugin</artifactId>
95 <executions>
96 <execution>
Karl Paulsaa573ad2007-07-19 19:09:54 +000097 <id>copy</id>
Karl Pauls72502b92010-02-04 21:25:09 +000098 <phase>package</phase>
Karl Paulsaa573ad2007-07-19 19:09:54 +000099 <goals>
100 <goal>copy</goal>
101 </goals>
102 <configuration>
103 <artifactItems>
104 <artifactItem>
Richard S. Hallc0e3ef72010-05-24 19:35:19 +0000105 <groupId>${pom.groupId}</groupId>
Richard S. Hallf65896e2010-05-05 15:21:54 +0000106 <artifactId>org.apache.felix.gogo.runtime</artifactId>
107 <version>${gogo.runtime.version}</version>
108 <type>jar</type>
109 <overWrite>true</overWrite>
110 <outputDirectory>${project.basedir}/bundle</outputDirectory>
111 </artifactItem>
112 <artifactItem>
Richard S. Hallc0e3ef72010-05-24 19:35:19 +0000113 <groupId>${pom.groupId}</groupId>
114 <artifactId>org.apache.felix.gogo.shell</artifactId>
115 <version>${gogo.shell.version}</version>
Karl Paulsaa573ad2007-07-19 19:09:54 +0000116 <type>jar</type>
117 <overWrite>true</overWrite>
Karl Pauls72502b92010-02-04 21:25:09 +0000118 <outputDirectory>${project.basedir}/bundle</outputDirectory>
Karl Paulsaa573ad2007-07-19 19:09:54 +0000119 </artifactItem>
120 <artifactItem>
Richard S. Hallc0e3ef72010-05-24 19:35:19 +0000121 <groupId>${pom.groupId}</groupId>
122 <artifactId>org.apache.felix.gogo.command</artifactId>
123 <version>${gogo.command.version}</version>
Karl Paulsaa573ad2007-07-19 19:09:54 +0000124 <type>jar</type>
125 <overWrite>true</overWrite>
Karl Pauls72502b92010-02-04 21:25:09 +0000126 <outputDirectory>${project.basedir}/bundle</outputDirectory>
Karl Paulsaa573ad2007-07-19 19:09:54 +0000127 </artifactItem>
128 <artifactItem>
129 <groupId>${pom.groupId}</groupId>
130 <artifactId>org.apache.felix.bundlerepository</artifactId>
Karl Pauls72502b92010-02-04 21:25:09 +0000131 <version>${obr.version}</version>
Karl Paulsaa573ad2007-07-19 19:09:54 +0000132 <type>jar</type>
133 <overWrite>true</overWrite>
Karl Pauls72502b92010-02-04 21:25:09 +0000134 <outputDirectory>${project.basedir}/bundle</outputDirectory>
Karl Paulsaa573ad2007-07-19 19:09:54 +0000135 </artifactItem>
136 </artifactItems>
137 </configuration>
138 </execution>
139 </executions>
140 </plugin>
141 <plugin>
Alex Karasuluc15532e2006-03-06 19:42:54 +0000142 <artifactId>maven-antrun-plugin</artifactId>
143 <executions>
144 <execution>
Karl Pauls72502b92010-02-04 21:25:09 +0000145 <phase>package</phase>
Alex Karasuluc15532e2006-03-06 19:42:54 +0000146 <configuration>
147 <tasks>
Karl Pauls2b8bd372008-04-22 13:13:49 +0000148 <delete dir="${basedir}/bin" />
149 <mkdir dir="${basedir}/bin" />
150 <delete dir="${basedir}/conf" />
151 <mkdir dir="${basedir}/conf" />
Karl Pauls2b8bd372008-04-22 13:13:49 +0000152 <copy file="${basedir}/target/org.apache.felix.main-${pom.version}.jar" tofile="${basedir}/bin/felix.jar" />
153 <copy file="${basedir}/target/classes/config.properties" todir="${basedir}/conf" />
Alex Karasuluc15532e2006-03-06 19:42:54 +0000154 </tasks>
155 </configuration>
156 <goals>
157 <goal>run</goal>
158 </goals>
159 </execution>
160 </executions>
161 </plugin>
Karl Pauls10707b92014-07-09 16:22:55 +0000162 <plugin>
163 <groupId>org.apache.maven.plugins</groupId>
164 <artifactId>maven-source-plugin</artifactId>
165 <executions>
166 <execution>
167 <id>attach-sources</id>
168 <goals>
169 <goal>jar</goal>
170 </goals>
171 </execution>
172 </executions>
173 </plugin>
174 <plugin>
175 <groupId>org.apache.maven.plugins</groupId>
176 <artifactId>maven-javadoc-plugin</artifactId>
177 <configuration>
178 <failOnError>false</failOnError>
179 </configuration>
180 </plugin>
Alex Karasulu07d20492006-03-06 15:35:44 +0000181 </plugins>
Alex Karasuluc15532e2006-03-06 19:42:54 +0000182 <resources>
183 <resource>
184 <directory>src/main/resources</directory>
185 <filtering>true</filtering>
186 </resource>
Richard S. Hall1da4e542006-11-02 21:45:44 +0000187 </resources>
Alex Karasulu07d20492006-03-06 15:35:44 +0000188 </build>
Karl Pauls250a7142008-04-22 13:27:15 +0000189</project>