On 4/26/13 3:13 AM, Shing Wai Chan wrote:
> Hi Roman,
> I have promoted javax.servlet-api 3.1.
> https://maven.java.net/content/groups/promoted/javax/servlet/javax.servlet-api/
>
>
> Note that I see the following in servlet section:
> <specBuild>08</specBuild>
>
> Please let me know if we need to update this.
You have to use the following:
<spec>
<artifact>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet-api.version}</version>
</artifact>
<nonFinal>false</nonFinal>
<jarType>api</jarType>
<specVersion>3.1</specVersion>
<specImplVersion>3.1</specVersion>
<apiPackage>javax.servlet</apiPackage>
</spec>
You can re-use ${servlet-api.version} if you want.
Please verify the servlet metadata using:
cd appserver/distributions/glassfish ; mvn spec-version:check-distribution
Thanks,
Romain
>
> Shing Wai Chan