336 lines
12 KiB
XML
336 lines
12 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
|
|
|
|
Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
|
|
|
|
The contents of this file are subject to the terms of either the GNU
|
|
General Public License Version 2 only ("GPL") or the Common Development
|
|
and Distribution License("CDDL") (collectively, the "License"). You
|
|
may not use this file except in compliance with the License. You can
|
|
obtain a copy of the License at
|
|
https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
|
|
or packager/legal/LICENSE.txt. See the License for the specific
|
|
language governing permissions and limitations under the License.
|
|
|
|
When distributing the software, include this License Header Notice in each
|
|
file and include the License file at packager/legal/LICENSE.txt.
|
|
|
|
GPL Classpath Exception:
|
|
Oracle designates this particular file as subject to the "Classpath"
|
|
exception as provided by Oracle in the GPL Version 2 section of the License
|
|
file that accompanied this code.
|
|
|
|
Modifications:
|
|
If applicable, add the following below the License Header, with the fields
|
|
enclosed by brackets [] replaced by your own identifying information:
|
|
"Portions Copyright [year] [name of copyright owner]"
|
|
|
|
Contributor(s):
|
|
If you wish your version of this file to be governed by only the CDDL or
|
|
only the GPL Version 2, indicate your decision by adding "[Contributor]
|
|
elects to include this software in this distribution under the [CDDL or GPL
|
|
Version 2] license." If you don't indicate a single choice of license, a
|
|
recipient has the option to distribute your version of this file under
|
|
either the CDDL, the GPL Version 2 or to extend the choice of license to
|
|
its licensees as provided above. However, if you add GPL Version 2 code
|
|
and therefore, elected the GPL Version 2 license, then the option applies
|
|
only if the new code is made subject to such option by the copyright
|
|
holder.
|
|
|
|
-->
|
|
|
|
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.sun.faces</groupId>
|
|
<artifactId>jsf-api</artifactId>
|
|
<version>2.2.13</version>
|
|
<packaging>jar</packaging>
|
|
<name>
|
|
Oracle's implementation of the JSF 2.2 specification API.
|
|
</name>
|
|
<description>
|
|
This is the master POM file for Oracle's Implementation of the JSF 2.2 Specification.
|
|
</description>
|
|
<url>http://java.sun.com/javaee/javaserverfaces/</url>
|
|
<licenses>
|
|
<license>
|
|
<name>
|
|
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL
|
|
</name>
|
|
<url>http://glassfish.java.net/nonav/public/CDDL+GPL.html</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<scm>
|
|
<url>http://java.net/projects/mojarra/sources</url>
|
|
<connection>scm:svn:https://svn.java.net/svn/mojarra~svn/trunk</connection>
|
|
</scm>
|
|
<developers>
|
|
<developer>
|
|
<id>edburns</id>
|
|
<name>Ed Burns</name>
|
|
<email>edward.burns@oracle.com</email>
|
|
<organization>Oracle America, Inc.</organization>
|
|
<roles>
|
|
<role>project-owner</role>
|
|
</roles>
|
|
<timezone>-6</timezone>
|
|
</developer>
|
|
<developer>
|
|
<id>rogerk</id>
|
|
<name>Roger Kitain</name>
|
|
<email>roger.kitain@oracle.com</email>
|
|
<organization>Oracle America, Inc.</organization>
|
|
<roles>
|
|
<role>project-owner</role>
|
|
</roles>
|
|
<timezone>-6</timezone>
|
|
</developer>
|
|
</developers>
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>jvnet-nexus-snapshots</id>
|
|
<name>Java.net Nexus Snapshots Repository</name>
|
|
<url>https://maven.java.net/content/repositories/snapshots/</url>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>jvnet-nexus-staging</id>
|
|
<name>Java.net Nexus Staging Repository</name>
|
|
<url>https://maven.java.net/service/local/staging/deploy/maven2/</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
<build>
|
|
<defaultGoal>install</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.5</source>
|
|
<target>1.5</target>
|
|
<excludes>
|
|
<exclude>**/*.*</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<configuration>
|
|
<updateReleaseInfo>true</updateReleaseInfo>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<version>1.7</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-artifacts</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>attach-artifact</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifacts>
|
|
<artifact>
|
|
<file>target/jsf-api-2.2.13-javadoc.jar</file>
|
|
<type>jar</type>
|
|
<classifier>javadoc</classifier>
|
|
</artifact>
|
|
</artifacts>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<issueManagement>
|
|
<system>JIRA</system>
|
|
<url>https://java.net/jira/browse/JAVASERVERFACES</url>
|
|
</issueManagement>
|
|
<mailingLists>
|
|
<mailingList>
|
|
<name>JSF 2.2 Specification Comments</name>
|
|
<post>jsr-314-comments@jcp.org</post>
|
|
</mailingList>
|
|
<mailingList>
|
|
<name>Mojarra Implementation Dev List</name>
|
|
<post>dev@javaserverfaces.dev.java.net</post>
|
|
<archive>
|
|
https://javaserverfaces.dev.java.net/servlets/SummarizeList?listName=dev
|
|
</archive>
|
|
</mailingList>
|
|
</mailingLists>
|
|
<contributors>
|
|
<contributor>
|
|
<name>Craig McClanahan</name>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Deepak Gothe</name>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Gregory Murray</name>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Justyna Horwat</name>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Jayashri Visvanathan</name>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Jennifer Ball</name>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Jacob Hookom</name>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Raj Premkumar</name>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Stan Silvert</name>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Mike Youngstrom</name>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Jason Lee</name>
|
|
</contributor>
|
|
</contributors>
|
|
<organization>
|
|
<name>Oracle America, Inc</name>
|
|
<url>http://www.oracle.com/</url>
|
|
</organization>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<version>3.0.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
<artifactId>javax.servlet.jsp-api</artifactId>
|
|
<version>2.2.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.el</groupId>
|
|
<artifactId>javax.el-api</artifactId>
|
|
<version>2.2.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet.jsp.jstl</groupId>
|
|
<artifactId>jstl-api</artifactId>
|
|
<version>1.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<profiles>
|
|
<profile>
|
|
<id>release-sign-artifacts</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.5</source>
|
|
<target>1.5</target>
|
|
<excludes>
|
|
<exclude>**/*.*</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<version>1.7</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-artifacts</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>attach-artifact</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifacts>
|
|
<artifact>
|
|
<file>target/jsf-api-2.2.13-javadoc.jar</file>
|
|
<type>jar</type>
|
|
<classifier>javadoc</classifier>
|
|
</artifact>
|
|
</artifacts>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
|
|
</archive>
|
|
</configuration>
|
|
</plugin> <plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<version>1.3</version>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|