| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>com.sun.grizzly</groupId>
<artifactId>grizzly-project</artifactId>
<version>1.9.18-p</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.sun.grizzly</groupId>
<artifactId>grizzly-http</artifactId>
<packaging>jar</packaging>
<version>1.9.18-p</version>
<name>grizzly-http</name>
<url>https://grizzly.dev.java.net</url>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${felix-version}</version>
<configuration>
<instructions>
<Export-Package>
com.sun.grizzly.http.*,
com.sun.grizzly.ssl.*,
com.sun.grizzly.arp.*,
com.sun.grizzly.standalone.*
</Export-Package>
<Embed-Dependency>com.sun.grizzly;scope=runtime</Embed-Dependency>
</instructions>
<unpackBundle>true</unpackBundle>
</configuration>
<executions>
<execution>
<id>osgi-bundle</id>
<phase>package</phase>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.sun.grizzly</groupId>
<artifactId>grizzly-framework</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.sun.grizzly</groupId>
<artifactId>grizzly-rcm</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.sun.grizzly</groupId>
<artifactId>grizzly-portunif</artifactId>
<version>${project.version}</version>
</dependency>
<!-- TODO: this is temporary, JUnit should be upgraded for whole project -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|