portlet-bridge
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.myfaces.portlet-bridge</groupId> <artifactId>portlet-bridge</artifactId> <version>3.0.0-alpha</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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"> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.myfaces.portlet-bridge</groupId> <artifactId>portlet-bridge</artifactId> <packaging>pom</packaging> <name>MyFaces Portlet Bridge</name> <version>3.0.0-alpha</version> <inceptionYear>2007</inceptionYear> <description> Portlet Bridge for JavaServer Faces is a subproject of Apache MyFaces which provides an implementation of the standardized Portlet Bridge as outlined by JSR-301 and subsequent specifications. This project will work with MyFaces as well as the R.I. and intended to be used to develop the Portlet Bridge Reference Implementation. </description> <url>http://myfaces.apache.org/portlet-bridge/3.0</url> <parent> <artifactId>portlet-bridge-master-pom</artifactId> <groupId>org.apache.myfaces.portlet-bridge</groupId> <version>4</version> </parent> <properties> <latestRelease>3.0.0-SNAPSHOT</latestRelease> <portletSpecVersion>2.0</portletSpecVersion> <jsfSpecVersion>2.0</jsfSpecVersion> <specVersion>1.0</specVersion> <jsrNumber>xxx</jsrNumber> <!-- <specLink>http://www.jcp.org/en/jsr/detail?id=${jsrNumber}</specLink> --> <specName>Portlet ${portletSpecVersion} Bridge for JavaServer Faces ${jsfSpecVersion}</specName> <projectSeries>3.x</projectSeries> <mojarra.version>2.0.1</mojarra.version> <myfaces.version>2.0.1</myfaces.version> <myfaces.shared.version>4.0.5</myfaces.shared.version> <blueprints.version>5</blueprints.version> </properties> <!-- issueManagement is in parent --> <!-- ciManagement are in parent --> <!-- mailingLists are in parent --> <!-- developers are in parent --> <!-- contributors are in parent --> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/portlet-bridge/core/tags/3.0.0-alpha</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/portlet-bridge/core/tags/3.0.0-alpha</developerConnection> <url>http://svn.apache.org/viewcvs.cgi/myfaces/portlet-bridge/core/tags/3.0.0-alpha</url> </scm> <distributionManagement> <site> <id>apache-site</id> <url>scpexe://minotaur.apache.org/www/myfaces.apache.org/portlet-bridge/3.0</url> </site> </distributionManagement> <!-- This is needed for JSF 1.2 --> <repositories> <repository> <id>maven1-repository.dev.java.net</id> <name>Java.net Repository for Maven</name> <url>http://download.java.net/maven/1</url> <layout>legacy</layout> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <modules> <module>api</module> <module>impl</module> <module>examples</module> </modules> <!-- Versions and scope of dependencies --> <dependencyManagement> <dependencies> <!-- Blueprints--> <dependency> <groupId>com.sun.javaee.blueprints</groupId> <artifactId>bp-ui-simple</artifactId> <version>5</version> </dependency> <!-- Portlet API --> <dependency> <groupId>javax.portlet</groupId> <artifactId>portlet-api</artifactId> <version>2.0</version> <scope>provided</scope> </dependency> <!-- Servlet API --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <!-- JSP API --> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.1</version> <scope>provided</scope> </dependency> <!-- J2EE Annotations --> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-annotation_1.0_spec</artifactId> <version>1.0</version> <scope>provided</scope> </dependency> <!-- MyFaces API --> <dependency> <groupId>org.apache.myfaces.core</groupId> <artifactId>myfaces-api</artifactId> <version>${myfaces.version}</version> </dependency> <dependency> <groupId>org.apache.myfaces.core</groupId> <artifactId>myfaces-impl</artifactId> <version>${myfaces.version}</version> </dependency> <!-- JSF R.I. API --> <dependency> <groupId>com.sun.faces</groupId> <artifactId>jsf-api</artifactId> <!-- As per spec, 1.2_03 is the minimum R.I. for version 1.0 bridge --> <version>${mojarra.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.sun.faces</groupId> <artifactId>jsf-impl</artifactId> <!-- As per spec, 1.2_03 is the minimum R.I. for version 1.0 bridge --> <version>${mojarra.version}</version> <scope>provided</scope> </dependency> <!-- Pluto 2.0 is not yet ready to embed into Jetty --> <!-- Jetty Pluto Plugin --> <!--dependency> <groupId>com.bekk.boss</groupId> <artifactId>maven-jetty-pluto-embedded</artifactId> <version>2.0</version> </dependency--> <!-- Needed by the StateUtils in Shared --> <dependency> <groupId>org.apache.myfaces.buildtools</groupId> <artifactId>myfaces-builder-annotations</artifactId> <version>1.0.4</version> <scope>provided</scope> <optional>true</optional> </dependency> <!-- Needed by the StateUtils in Shared --> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.3</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1</version> </dependency> <!-- JSF Portlet Bridge API --> <dependency> <groupId>${pom.groupId}</groupId> <artifactId>portlet-bridge-api</artifactId> <version>${project.version}</version> </dependency> <!-- JSF Portlet Bridge Impl --> <dependency> <groupId>${pom.groupId}</groupId> <artifactId>portlet-bridge-impl</artifactId> <version>${project.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <tagBase>https://svn.apache.org/repos/asf/myfaces/portlet-bridge/core/tags</tagBase> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Specification-Title>${specName}</Specification-Title> <Specification-Version>${specVersion}</Specification-Version> <Specification-Vendor>Java Community (JSR-301)</Specification-Vendor> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-remote-resources-plugin</artifactId> <version>1.0-alpha-6</version> <executions> <execution> <goals> <goal>process</goal> </goals> <configuration> <resourceBundles> <resourceBundle>org.apache:apache-jar-resource-bundle:1.3</resourceBundle> </resourceBundles> <properties> <addLicense>true</addLicense> </properties> </configuration> </execution> </executions> </plugin> <!-- Generates the Javadocs for the Website. Wagon will transport it --> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <aggregate>false</aggregate> <linksource>true</linksource> <breakiterator>true</breakiterator> <quiet>true</quiet> <verbose>false</verbose> <source>${jdk.version}</source> <charset>UTF-8</charset> <links> <link>http://java.sun.com/j2se/1.5.0/docs/api</link> <link>http://java.sun.com/javaee/javaserverfaces/1.2_MR1/docs/api</link> <link>http://www.bluesunrise.com/portlet-api</link> </links> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <version>0.7</version> <configuration> <excludes> <exclude>src/site/resources/css/png-fix.htc</exclude> <exclude>src/main/resources/META-INF/services/javax.faces.context.ExternalContextFactory</exclude> <exclude>src/main/resources/META-INF/services/javax.portlet.faces.Bridge</exclude> <exclude>src/main/resources/META-INF/services/javax.faces.view.ViewDeclarationLanguageFactory</exclude> <exclude>src/main/resources/META-INF/services/javax.faces.context.FacesContextFactory</exclude> <exclude>src/main/resources/META-INF/services/javax.faces.application.ApplicationFactory</exclude> <exclude>src/main/webapp/javadocs/package-list</exclude> </excludes> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <!-- This profile is invoked by -DprepareRelease=true. This allows mvn release:prepare to run successfully on the assembly projects. --> <profile> <id>prepare-release</id> <activation> <property> <name>prepareRelease</name> </property> </activation> <modules> <module>assembly</module> </modules> <build> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <arguments>-DprepareRelease</arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>perform-release</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <modules> <module>assembly</module> </modules> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-plugin</artifactId> <executions> <execution> <phase>validate</phase> <id>getting-scm.revision</id> <goals> <goal>update</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>