blob: a4dc4bb19434695b64095c22bb53e3f3fe0629ed [file] [log] [blame]
Karl Pauls4ebe5082006-10-30 15:00:08 +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 Karasulu07d20492006-03-06 15:35:44 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
Karl Pauls5f398642009-05-10 21:44:42 +000022 <artifactId>felix-parent</artifactId>
Karl Pauls1795e462011-09-22 09:52:47 +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>
Richard S. Hall6748ac72006-12-07 20:30:11 +000028 <name>Apache Felix Framework</name>
Alex Karasulu07d20492006-03-06 15:35:44 +000029 <artifactId>org.apache.felix.framework</artifactId>
Karl Paulsce517e22013-02-05 22:30:58 +000030 <version>4.3.0-SNAPSHOT</version>
Alex Karasulu07d20492006-03-06 15:35:44 +000031 <dependencies>
Alex Karasulu07d20492006-03-06 15:35:44 +000032 </dependencies>
Richard S. Hall42cf9c92008-10-16 20:22:58 +000033 <properties>
34 <dollar>$</dollar>
35 </properties>
Karl Pauls31cc0892011-09-22 15:06:50 +000036 <scm>
Karl Paulsce517e22013-02-05 22:30:58 +000037 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/framework</connection>
38 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/framework</developerConnection>
39 <url>http://svn.apache.org/repos/asf/felix/framework</url>
Karl Pauls31cc0892011-09-22 15:06:50 +000040 </scm>
Alex Karasulu5cfd2a02006-03-09 14:15:38 +000041 <build>
Richard S. Hall1da4e542006-11-02 21:45:44 +000042 <plugins>
43 <plugin>
Richard S. Hallc018bde2010-03-03 15:09:47 +000044 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-compiler-plugin</artifactId>
46 <configuration>
Karl Pauls54a1b9c2013-02-03 23:02:27 +000047 <target>1.5</target>
48 <source>1.5</source>
Richard S. Hallc018bde2010-03-03 15:09:47 +000049 </configuration>
50 </plugin>
51
52 <plugin>
Richard S. Hall1da4e542006-11-02 21:45:44 +000053 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000054 <artifactId>maven-bundle-plugin</artifactId>
Richard S. Hall2e755502011-09-21 20:35:48 +000055 <version>2.3.5</version>
Richard S. Hall1da4e542006-11-02 21:45:44 +000056 <extensions>true</extensions>
57 <configuration>
58 <instructions>
Richard S. Hallf94a18f2008-09-23 16:25:54 +000059 <Bundle-SymbolicName>org.apache.felix.framework</Bundle-SymbolicName>
Richard S. Hall1da4e542006-11-02 21:45:44 +000060 <Bundle-Name>Apache Felix Framework</Bundle-Name>
61 <Bundle-Description>OSGi R4 framework implementation.</Bundle-Description>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000062 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Richard S. Halldfd78a42012-05-11 20:19:02 +000063 <Export-Package>org.osgi.framework.*;-split-package:=merge-first,org.osgi.resource,org.osgi.service.*,org.osgi.util.tracker</Export-Package>
Richard S. Hall7e09ef02010-06-01 17:43:44 +000064 <Private-Package>org.apache.felix.framework.*</Private-Package>
Richard S. Hall1da4e542006-11-02 21:45:44 +000065 <Import-Package>!*</Import-Package>
Richard S. Hall1da4e542006-11-02 21:45:44 +000066 </instructions>
67 </configuration>
68 </plugin>
Karl Pauls62ff7ab2009-03-31 21:06:46 +000069 <plugin>
Karl Pauls1795e462011-09-22 09:52:47 +000070 <groupId>org.apache.rat</groupId>
71 <artifactId>apache-rat-plugin</artifactId>
72 <executions>
73 <execution>
74 <phase>verify</phase>
75 <goals>
76 <goal>check</goal>
77 </goals>
78 </execution>
79 </executions>
80 <configuration>
81 <includes>
82 <include>src/**</include>
83 </includes>
84 <excludes>
85 <exclude>src/main/appended-resources/**</exclude>
86 <exclude>src/**/packageinfo</exclude>
87 <exclude>src/main/resources/META-INF/services/org.osgi.framework.launch.FrameworkFactory</exclude>
Richard S. Hall567b7142011-09-22 14:44:04 +000088 <exclude>src/main/resources/org/apache/felix/framework/Felix.properties</exclude>
Karl Pauls1795e462011-09-22 09:52:47 +000089 </excludes>
90 </configuration>
Karl Pauls62ff7ab2009-03-31 21:06:46 +000091 </plugin>
Richard S. Hall1da4e542006-11-02 21:45:44 +000092 </plugins>
Richard S. Hallc5208b42011-09-21 20:15:38 +000093 <resources>
Richard S. Hallc5208b42011-09-21 20:15:38 +000094 <resource>
95 <directory>src/main/resources</directory>
96 <filtering>true</filtering>
97 </resource>
Richard S. Hallc5208b42011-09-21 20:15:38 +000098 </resources>
Karl Pauls58db9f02008-04-22 12:38:04 +000099 </build>
Alex Karasulu07d20492006-03-06 15:35:44 +0000100</project>