portlet-bridge-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.myfaces.portlet-bridge</groupId> <artifactId>portlet-bridge-api</artifactId> <version>3.0.0-alpha</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2006 The Apache Software Foundation. Licensed 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> <name>MyFaces Portlet Bridge API</name> <artifactId>portlet-bridge-api</artifactId> <packaging>jar</packaging> <parent> <groupId>org.apache.myfaces.portlet-bridge</groupId> <artifactId>portlet-bridge</artifactId> <version>3.0.0-alpha</version> </parent> <distributionManagement> <site> <id>apache-site</id> <url>scpexe://minotaur.apache.org/www/myfaces.apache.org/portlet-bridge/2.0/api</url> </site> </distributionManagement> <dependencies> <dependency> <artifactId>servlet-api</artifactId> <groupId>javax.servlet</groupId> </dependency> <dependency> <artifactId>portlet-api</artifactId> <groupId>javax.portlet</groupId> </dependency> <dependency> <artifactId>jsp-api</artifactId> <groupId>javax.servlet.jsp</groupId> </dependency> <dependency> <artifactId>jsf-api</artifactId> <groupId>com.sun.faces</groupId> </dependency> </dependencies> <build> <plugins> <!-- This is for distribution of the APIDocs for the website. Must be run after the javadoc:javadoc target --> <plugin> <groupId>org.apache.myfaces.maven</groupId> <artifactId>wagon-maven-plugin</artifactId> <version>1.0.2</version> <configuration> <id>myfaces-nightly-builds</id> <url>scpexe://minotaur.apache.org/www/myfaces.apache.org/portlet-bridge/2.0/api/apidocs</url> <inputDirectory>target/site/apidocs</inputDirectory> </configuration> </plugin> <!-- Generates the Javadocs for the Website. Wagon will transport it --> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <doctitle>MyFaces Portlet Bridge ${project.version} API</doctitle> <windowtitle>MyFaces Portlet Bridge ${project.version} API</windowtitle> </configuration> </plugin> <!-- Allows building of jdev projects (jdev:jdev target) --> <!-- TODO: This is an artifical dependancy on Trinidad, should it be removed? --> <plugin> <groupId>org.apache.myfaces.trinidadbuild</groupId> <artifactId>maven-jdev-plugin</artifactId> </plugin> </plugins> </build> </project>