Home | History | Annotate | Download | only in 2.3.6
      1 <!--
      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 -->
     19 <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">
     20 
     21  <parent>
     22    <artifactId>felix-parent</artifactId>
     23    <groupId>org.apache.felix</groupId>
     24    <version>2.1</version>
     25    <relativePath>../pom/pom.xml</relativePath>
     26  </parent>
     27 
     28  <modelVersion>4.0.0</modelVersion>
     29 
     30  <artifactId>maven-bundle-plugin</artifactId>
     31  <version>2.3.6</version>
     32  <packaging>maven-plugin</packaging>
     33 
     34  <name>Maven Bundle Plugin</name>
     35  <description>
     36   Provides a maven plugin that supports creating an OSGi bundle
     37   from the contents of the compilation classpath along with its
     38   resources and dependencies. Plus a zillion other features.
     39   The plugin uses the Bnd tool (http://www.aqute.biz/Code/Bnd)
     40  </description>
     41 
     42  <scm>
     43   <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/maven-bundle-plugin-2.3.6</connection>
     44   <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/maven-bundle-plugin-2.3.6</developerConnection>
     45   <url>http://svn.apache.org/repos/asf/felix/releases/maven-bundle-plugin-2.3.6</url>
     46  </scm>
     47 
     48  <build>
     49   <plugins>
     50    <plugin>
     51     <groupId>org.apache.maven.plugins</groupId>
     52     <artifactId>maven-compiler-plugin</artifactId>
     53     <configuration>
     54      <source>1.5</source>
     55      <target>1.5</target>
     56     </configuration>
     57    </plugin>
     58   </plugins>
     59  </build>
     60 
     61  <dependencies>
     62   <dependency>
     63     <groupId>biz.aQute</groupId>
     64     <artifactId>bndlib</artifactId>
     65     <version>1.50.0</version>
     66   </dependency>
     67   <dependency>
     68     <groupId>org.apache.felix</groupId>
     69     <artifactId>org.apache.felix.bundlerepository</artifactId>
     70     <version>1.6.6</version>
     71   </dependency>
     72   <dependency>
     73    <groupId>org.apache.maven</groupId>
     74    <artifactId>maven-core</artifactId>
     75    <version>2.0.7</version>
     76   </dependency>
     77   <dependency>
     78    <groupId>org.apache.maven</groupId>
     79    <artifactId>maven-archiver</artifactId>
     80    <version>2.4.1</version>
     81   </dependency>
     82   <dependency>
     83    <groupId>org.apache.maven.shared</groupId>
     84    <artifactId>maven-dependency-tree</artifactId>
     85    <version>1.2</version>
     86   </dependency>
     87   <dependency>
     88    <groupId>org.codehaus.plexus</groupId>
     89    <artifactId>plexus-utils</artifactId>
     90    <version>2.1</version>
     91   </dependency>
     92   <dependency>
     93    <groupId>org.apache.maven.shared</groupId>
     94    <artifactId>maven-plugin-testing-harness</artifactId>
     95    <version>1.1</version>
     96    <scope>test</scope>
     97   </dependency>
     98  </dependencies>
     99 
    100  <reporting>
    101   <plugins>
    102    <plugin>
    103     <groupId>org.apache.maven.plugins</groupId>
    104     <artifactId>maven-plugin-plugin</artifactId>
    105     <version>2.8</version>
    106    </plugin>
    107    <plugin>
    108     <groupId>org.apache.maven.plugins</groupId>
    109     <artifactId>maven-changes-plugin</artifactId>
    110     <version>2.4</version>
    111     <configuration>
    112      <component>12311143</component>
    113      <versionPrefix>maven-bundle-plugin-</versionPrefix>
    114      <statusIds>Resolved,Closed</statusIds>
    115      <maxEntries>1000</maxEntries>
    116      <issueManagementSystems>
    117       <issueManagementSystem>JIRA</issueManagementSystem>
    118      </issueManagementSystems>
    119     </configuration>
    120    </plugin>
    121   </plugins>
    122  </reporting>
    123 
    124 </project>
    125