equinox-agentclass-hook/pom.xml
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Sat, 04 Jan 2014 21:47:47 +0100
branchosgi
changeset 393 8b025bcde7bb
child 394 88c06549e122
permissions -rw-r--r--
All tests in OSGi mode are executed (as we add new Equinox Hook), they however fail
     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.7-SNAPSHOT</version>
     8     </parent>
     9     <artifactId>equinox-agentclass-hook</artifactId>
    10     <packaging>bundle</packaging>
    11     <build>
    12         <plugins>
    13             <plugin>
    14                 <groupId>org.apache.felix</groupId>
    15                 <artifactId>maven-bundle-plugin</artifactId>
    16                 <configuration>
    17                     <instructions>
    18                         <Fragment-Host>org.eclipse.osgi;bundle-version="[3.8.0,4.0)"</Fragment-Host>
    19                         <Import-Package></Import-Package>
    20                     </instructions>
    21                 </configuration>
    22             </plugin>
    23             <plugin>
    24                 <groupId>org.apache.maven.plugins</groupId>
    25                 <artifactId>maven-compiler-plugin</artifactId>
    26                 <version>2.3.2</version>
    27                 <configuration>
    28                     <source>1.5</source>
    29                     <target>1.5</target>
    30                 </configuration>
    31             </plugin>
    32         </plugins>
    33     </build>
    34     <dependencies>
    35         <dependency>
    36             <groupId>org.eclipse</groupId>
    37             <artifactId>org.eclipse.osgi</artifactId>
    38             <version>3.8.0.v20120529-1548</version>
    39         </dependency>
    40     </dependencies>
    41 </project>