POM文件内容: |
<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>org.mortbay.jetty</groupId>
<artifactId>jetty-parent</artifactId>
<version>3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>servlet-api</artifactId>
<version>3.0.pre1</version>
<name>Servlet API</name>
<description>Servlet API</description>
<packaging>jar</packaging>
<url>http://jetty.mortbay.org</url>
<scm>
<connection>scm:svn:http://svn.codehaus.org/jetty/servlet-api/tags/servlet-api-3.0.pre1</connection>
<developerConnection>scm:svn:https://svn.codehaus.org/jetty/servlet-api/tags/servlet-api-3.0.pre1</developerConnection>
<url>scm:svn:https://svn.codehaus.org/jetty/servlet-api/tags/servlet-api-3.0.pre1</url>
</scm>
<build>
<defaultGoal>install</defaultGoal>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.dtd</include>
<include>**/*.xsd</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<verbose>false</verbose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>manifest</goal>
</goals>
<configuration>
<instructions>
<Bundle-Version>3.0</Bundle-Version>
<Import-Package>!javax.servlet.*,*</Import-Package>
<Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
<Implementation-Vendor>JCP</Implementation-Vendor>
<Specification-Version>3.0</Specification-Version>
</instructions>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<tagBase>https://svn.codehaus.org/jetty/servlet-api/tags</tagBase>
</configuration>
</plugin>
</plugins>
</build>
</project>
|