blob: 6ea498522d7840556e55274a88312ee7daa0f192 [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>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
Richard S. Hall0ad669d2007-06-18 19:05:48 +00008 <packaging>bundle</packaging>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +00009 <name>Apache Felix Service Binder</name>
10 <artifactId>org.apache.felix.servicebinder</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguezd70c2912006-03-30 19:57:31 +000014 <artifactId>org.osgi.core</artifactId>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000015 <version>${pom.version}</version>
16 <scope>provided</scope>
17 </dependency>
18 <dependency>
Michael E. Rodriguez406386d2007-03-20 02:56:45 +000019 <groupId>net.sf.kxml</groupId>
Richard S. Halld95fb4f2006-07-14 19:52:53 +000020 <artifactId>kxml2</artifactId>
21 <version>2.2.2</version>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000022 </dependency>
23 </dependencies>
24 <build>
25 <plugins>
26 <plugin>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000027 <groupId>org.apache.felix</groupId>
28 <artifactId>maven-bundle-plugin</artifactId>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000029 <extensions>true</extensions>
30 <configuration>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000031 <instructions>
32 <Bundle-Name>Service Binder</Bundle-Name>
33 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
34 <Bundle-Vendor>Apache Felix</Bundle-Vendor>
35 <!--<Bundle-Version>1.1.2</Bundle-Version>-->
36 <Bundle-Description>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000037 This bundle provides a mechanism to automate service dependency management.
Richard S. Hall0ad669d2007-06-18 19:05:48 +000038 </Bundle-Description>
39 <Bundle-Activator>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000040 org.apache.felix.servicebinder.impl.Activator
Richard S. Hall0ad669d2007-06-18 19:05:48 +000041 </Bundle-Activator>
42 <Export-Package>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000043 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 +000044 </Export-Package>
45 <Private-Package>org.apache.felix.servicebinder.*,org.kxml2.*,org.xmlpull.*</Private-Package>
46 <Import-Package>!org.apache.felix.servicebinder.*,*</Import-Package>
47 <Metadata-Location>metadata.xml</Metadata-Location>
48 </instructions>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000049 </configuration>
50 </plugin>
51 </plugins>
52 </build>
53</project>