Home | History | Annotate | Download | only in 8.1.14.v20131031
      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/maven-v4_0_0.xsd">
      3   <parent>
      4     <artifactId>jetty-project</artifactId>
      5     <groupId>org.eclipse.jetty</groupId>
      6     <version>8.1.14.v20131031</version>
      7   </parent>
      8   <modelVersion>4.0.0</modelVersion>
      9   <artifactId>jetty-http</artifactId>
     10   <name>Jetty :: Http Utility</name>
     11   <url>http://www.eclipse.org/jetty</url>
     12   <properties>
     13     <bundle-symbolic-name>${project.groupId}.http</bundle-symbolic-name>
     14   </properties>
     15   <dependencies>
     16     <dependency>
     17       <groupId>org.eclipse.jetty</groupId>
     18       <artifactId>jetty-io</artifactId>
     19       <version>${project.version}</version>
     20     </dependency>
     21     <dependency>
     22       <groupId>org.eclipse.jetty.orbit</groupId>
     23       <artifactId>javax.servlet</artifactId>
     24       <scope>provided</scope>
     25     </dependency>
     26     <dependency>
     27       <groupId>junit</groupId>
     28       <artifactId>junit</artifactId>
     29       <scope>test</scope>
     30     </dependency>
     31   </dependencies>
     32   <build>
     33     <plugins>
     34       <plugin>
     35         <groupId>org.apache.felix</groupId>
     36         <artifactId>maven-bundle-plugin</artifactId>
     37         <extensions>true</extensions>
     38         <executions>
     39           <execution>
     40             <goals>
     41               <goal>manifest</goal>
     42             </goals>
     43             <configuration>
     44               <instructions>
     45                 <Import-Package>javax.servlet.*;version="2.6.0",javax.net.*,*</Import-Package>
     46               </instructions>
     47             </configuration>
     48            </execution>
     49         </executions>
     50       </plugin>
     51       <plugin>
     52         <groupId>org.apache.maven.plugins</groupId>
     53         <artifactId>maven-jar-plugin</artifactId>
     54         <executions>
     55           <execution>
     56             <id>artifact-jar</id>
     57             <goals>
     58               <goal>jar</goal>
     59             </goals>
     60           </execution>
     61           <execution>
     62             <id>test-jar</id>
     63             <goals>
     64               <goal>test-jar</goal>
     65             </goals>
     66           </execution>
     67         </executions>
     68         <configuration>
     69           <archive>
     70             <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
     71           </archive>
     72         </configuration>
     73       </plugin>
     74       <plugin>
     75         <groupId>org.codehaus.mojo</groupId>
     76         <artifactId>findbugs-maven-plugin</artifactId>
     77         <configuration>
     78           <onlyAnalyze>org.eclipse.jetty.http.*</onlyAnalyze>
     79         </configuration>
     80       </plugin>
     81     </plugins>
     82   </build>
     83 </project>
     84