equinox-agentclass-hook/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Mon, 19 May 2014 13:59:26 +0200
changeset 659 bab8e369c180
parent 642 38d99662928c
child 661 5c1855e13966
permissions -rw-r--r--
[maven-release-plugin] prepare release release-0.8.1
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <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/xsd/maven-4.0.0.xsd">
     3     <modelVersion>4.0.0</modelVersion>
     4     <parent>
     5         <groupId>org.netbeans.html</groupId>
     6         <artifactId>pom</artifactId>
     7         <version>0.8.1</version>
     8     </parent>
     9     <name>AgentClass Hook for Equinox</name>
    10     <artifactId>equinox-agentclass-hook</artifactId>
    11     <packaging>bundle</packaging>
    12     <build>
    13         <plugins>
    14             <plugin>
    15                 <groupId>org.apache.felix</groupId>
    16                 <artifactId>maven-bundle-plugin</artifactId>
    17                 <configuration>
    18                     <instructions>
    19                         <Fragment-Host>org.eclipse.osgi;bundle-version="[3.8.0,4.0)"</Fragment-Host>
    20                         <Import-Package />
    21                     </instructions>
    22                 </configuration>
    23             </plugin>
    24             <plugin>
    25                 <groupId>org.apache.maven.plugins</groupId>
    26                 <artifactId>maven-compiler-plugin</artifactId>
    27                 <version>2.3.2</version>
    28                 <configuration>
    29                     <source>1.5</source>
    30                     <target>1.5</target>
    31                 </configuration>
    32             </plugin>
    33         </plugins>
    34     </build>
    35     <dependencies>
    36         <dependency>
    37             <groupId>org.eclipse</groupId>
    38             <artifactId>org.eclipse.osgi</artifactId>
    39             <version>3.8.0.v20120529-1548</version>
    40         </dependency>
    41     </dependencies>
    42 </project>