richfaces-a4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.albfernandez.richfaces</groupId> <artifactId>richfaces-a4j</artifactId> <version>4.6.21.ayg</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- JBoss, Home of Professional Open Source Copyright 2013, Red Hat, Inc. and individual contributors by the @authors tag. See the copyright.txt in the distribution for a full listing of individual contributors. This is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this software; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site: http://www.fsf.org. --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.albfernandez.richfaces</groupId> <artifactId>richfaces-components-parent</artifactId> <version>4.6.21.ayg</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>richfaces-a4j</artifactId> <name>RichFaces a4j components</name> <packaging>jar</packaging> <dependencies> <dependency> <groupId>org.jboss.spec</groupId> <artifactId>jboss-javaee-6.0</artifactId> <type>pom</type> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.jboss.spec.javax.faces</groupId> <artifactId>jboss-jsf-api_2.1_spec</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.github.albfernandez.richfaces</groupId> <artifactId>richfaces-core</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.github.albfernandez.richfaces.cdk</groupId> <artifactId>richfaces-cdk-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <!-- Travis build workaround --> <argLine>${surefire.jvm.params}</argLine> </configuration> </plugin> </plugins> </build> <profiles> <!-- Release --> <profile> <id>release</id> <build> <plugins> <!-- JavaDoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <source>7</source> <links> <link>https://docs.oracle.com/javase/7/docs/api/</link> </links> </configuration> <executions> <execution> <id>generate-javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- VDL DOC --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.6.0</version> <executions> <execution> <id>generate-vdldoc</id> <phase>prepare-package</phase> <goals> <goal>exec</goal> </goals> </execution> </executions> <configuration> <executable>java</executable> <arguments> <argument>-jar</argument> <argument>${settings.localRepository}/org/omnifaces/vdldoc/${version.vdldoc}/vdldoc-${version.vdldoc}.jar</argument> <argument>-d</argument> <argument>${project.build.directory}/vdldoc</argument> <argument>-windowtitle</argument> <argument>${project.name} ${version.richfaces} VDL Documentation</argument> <argument>-doctitle</argument> <argument>${project.name} ${version.richfaces} VDL Documentation</argument> <argument>${project.build.directory}/generated-sources/main/resources/META-INF/a4j.taglib.xml</argument> </arguments> </configuration> <dependencies> <dependency> <groupId>org.omnifaces</groupId> <artifactId>vdldoc</artifactId> <version>${version.vdldoc}</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/main/xml/assembler-vdldoc.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>richfaces-a4j-vdldoc-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>pack-jsodcs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classesDirectory>target/site/jsdoc</classesDirectory> <classifier>jsdoc</classifier> <excludes> <exclude>**/symbols/src/*</exclude> </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>