blob: de7ce36dbf6b5066312cea47efa4d8ea44c8cd67 [file] [log] [blame]
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +00005 <version>1.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00006 <relativePath>../pom/pom.xml</relativePath>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
Richard S. Hall0ad669d2007-06-18 19:05:48 +00009 <packaging>bundle</packaging>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000010 <name>Apache Felix Service Binder</name>
11 <artifactId>org.apache.felix.servicebinder</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000012 <version>0.9.0-SNAPSHOT</version>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000013 <dependencies>
14 <dependency>
15 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguezd70c2912006-03-30 19:57:31 +000016 <artifactId>org.osgi.core</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000017 <version>1.1.0-SNAPSHOT</version>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000018 <scope>provided</scope>
19 </dependency>
20 <dependency>
Michael E. Rodriguez406386d2007-03-20 02:56:45 +000021 <groupId>net.sf.kxml</groupId>
Richard S. Halld95fb4f2006-07-14 19:52:53 +000022 <artifactId>kxml2</artifactId>
23 <version>2.2.2</version>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000024 </dependency>
25 </dependencies>
26 <build>
27 <plugins>
28 <plugin>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000029 <groupId>org.apache.felix</groupId>
30 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000031 <version>1.1.0-SNAPSHOT</version>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000032 <extensions>true</extensions>
33 <configuration>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000034 <instructions>
35 <Bundle-Name>Service Binder</Bundle-Name>
36 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
37 <Bundle-Vendor>Apache Felix</Bundle-Vendor>
38 <!--<Bundle-Version>1.1.2</Bundle-Version>-->
39 <Bundle-Description>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000040 This bundle provides a mechanism to automate service dependency management.
Richard S. Hall0ad669d2007-06-18 19:05:48 +000041 </Bundle-Description>
42 <Bundle-Activator>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000043 org.apache.felix.servicebinder.impl.Activator
Richard S. Hall0ad669d2007-06-18 19:05:48 +000044 </Bundle-Activator>
45 <Export-Package>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000046 org.apache.felix.servicebinder; specification-version="1.1.0",org.apache.felix.servicebinder.architecture; specification-version="1.1.0"
Richard S. Hall0ad669d2007-06-18 19:05:48 +000047 </Export-Package>
48 <Private-Package>org.apache.felix.servicebinder.*,org.kxml2.*,org.xmlpull.*</Private-Package>
49 <Import-Package>!org.apache.felix.servicebinder.*,*</Import-Package>
50 <Metadata-Location>metadata.xml</Metadata-Location>
51 </instructions>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000052 </configuration>
53 </plugin>
54 </plugins>
55 </build>
56</project>