blob: 9f4ab12e92e50660460ceee890e978cd6b047862 [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>
Richard S. Hallf2be1962006-12-22 19:46:42 +00005 <version>0.9.0-incubator-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>
12 <dependencies>
13 <dependency>
14 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguezd70c2912006-03-30 19:57:31 +000015 <artifactId>org.osgi.core</artifactId>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000016 <version>${pom.version}</version>
17 <scope>provided</scope>
18 </dependency>
19 <dependency>
Michael E. Rodriguez406386d2007-03-20 02:56:45 +000020 <groupId>net.sf.kxml</groupId>
Richard S. Halld95fb4f2006-07-14 19:52:53 +000021 <artifactId>kxml2</artifactId>
22 <version>2.2.2</version>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000023 </dependency>
24 </dependencies>
25 <build>
26 <plugins>
27 <plugin>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000028 <groupId>org.apache.felix</groupId>
29 <artifactId>maven-bundle-plugin</artifactId>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000030 <extensions>true</extensions>
31 <configuration>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000032 <instructions>
33 <Bundle-Name>Service Binder</Bundle-Name>
34 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
35 <Bundle-Vendor>Apache Felix</Bundle-Vendor>
36 <!--<Bundle-Version>1.1.2</Bundle-Version>-->
37 <Bundle-Description>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000038 This bundle provides a mechanism to automate service dependency management.
Richard S. Hall0ad669d2007-06-18 19:05:48 +000039 </Bundle-Description>
40 <Bundle-Activator>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000041 org.apache.felix.servicebinder.impl.Activator
Richard S. Hall0ad669d2007-06-18 19:05:48 +000042 </Bundle-Activator>
43 <Export-Package>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000044 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 +000045 </Export-Package>
46 <Private-Package>org.apache.felix.servicebinder.*,org.kxml2.*,org.xmlpull.*</Private-Package>
47 <Import-Package>!org.apache.felix.servicebinder.*,*</Import-Package>
48 <Metadata-Location>metadata.xml</Metadata-Location>
49 </instructions>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000050 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54</project>