Skip to main content
summaryrefslogtreecommitdiffstats
blob: 75682dcd6ca9c01e7c4e3e384114d1feeaf4ef64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<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">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.eclipse.gemini.naming</groupId>
  <artifactId>org.eclipse.gemini.naming</artifactId>
  <packaging>bundle</packaging>
  <version>1.0.0-SNAPSHOT</version>
  <name>Gemini Naming Implementation Bundle</name>
  <url>http://maven.apache.org</url>

   <parent>
      <groupId>org.eclipse.gemini.naming</groupId>
      <artifactId>org.eclipse.gemini.naming.parent</artifactId>
      <version>1.0.0-SNAPSHOT</version>
   </parent>

   <dependencies>
     <dependency>     
	   <groupId>org.eclipse</groupId>     
	   <artifactId>osgi</artifactId>     
	   <version>3.5.0.v20090520</version> 
     </dependency>
   </dependencies>

   <build>
      <plugins>
         <plugin>
            <!--
               this is the BND plugin which generates the actual OSGi bundle for
               this project. You can find the documentation for this plugin at
               http://is.gd/hL7p
            -->
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <extensions>true</extensions>
            <configuration>
               <instructions>
                  <Include-Resource>{maven-resources}</Include-Resource>
                  <obrRepository>NONE</obrRepository>
                  <Bundle-Name>Gemini Naming (Incubation)</Bundle-Name>
                  <Bundle-SymbolicName>org.eclipse.gemini.naming</Bundle-SymbolicName>
                  <Bundle-Vendor>Oracle</Bundle-Vendor>
                  <Bundle-Version>0.9.0.M1</Bundle-Version>
                  <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
                  <Bundle-Activator>org.eclipse.gemini.naming.Activator</Bundle-Activator>
                  <Bundle-Description>Gemini Naming bundle (Incubation)</Bundle-Description>
                  <Bundle-Category>jndi</Bundle-Category>
                  <Import-Package>org.osgi.service.jndi,*</Import-Package>
               </instructions>
            </configuration>
         </plugin>
      </plugins>
   </build>



</project>

Back to the top