[jboss-cvs] repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0 ...
Alexander Smirnov
asmirnov at exadel.com
Fri Mar 9 12:45:09 EST 2007
User: alexsmirnov
Date: 07/03/09 12:45:09
Added: maven2/org/richfaces/richfaces/3.0.0
richfaces-3.0.0-javadoc.jar.md5
richfaces-3.0.0-javadoc.jar richfaces-3.0.0.jar.md5
richfaces-3.0.0.pom.md5 richfaces-3.0.0.pom.sha1
richfaces-3.0.0-bin.zip.md5 richfaces-3.0.0-bin.zip
richfaces-3.0.0.pom richfaces-3.0.0.jar
richfaces-3.0.0-bin.zip.sha1
richfaces-3.0.0-sources.jar.md5
richfaces-3.0.0-sources.jar.sha1
richfaces-3.0.0-sources.jar
richfaces-3.0.0.jar.sha1
richfaces-3.0.0-javadoc.jar.sha1
Log:
Publish releases of the ajax4jsf 1.1.0 and RichFaces 3.0.0
Revision Changes Path
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0-javadoc.jar.md5
Index: richfaces-3.0.0-javadoc.jar.md5
===================================================================
b239bd1e955e8e02f00dadec15b03a01
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0-javadoc.jar
<<Binary file>>
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0.jar.md5
Index: richfaces-3.0.0.jar.md5
===================================================================
6adeafb8d1ba7e9476354fe2be9806c1
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0.pom.md5
Index: richfaces-3.0.0.pom.md5
===================================================================
b633239d6ed1e44eb0067044e7926d34
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0.pom.sha1
Index: richfaces-3.0.0.pom.sha1
===================================================================
3cadc227bbb6957c184de6c05b479a77c46d9aa6
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0-bin.zip.md5
Index: richfaces-3.0.0-bin.zip.md5
===================================================================
47d74ab034f9fe5f633f6cd051af3294
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0-bin.zip
<<Binary file>>
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0.pom
Index: richfaces-3.0.0.pom
===================================================================
<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">
<parent>
<artifactId>richfaces-parent</artifactId>
<groupId>org.richfaces</groupId>
<version>3.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>richfaces</artifactId>
<name>RichFaces JSF components library</name>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.ajax4jsf.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
<version>1.1.0</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
<taglib>
<shortName>rich</shortName>
<taglib>richfaces</taglib>
<uri>
http://richfaces.ajax4jsf.org/rich
</uri>
</taglib>
</library>
</configuration>
<executions>
<execution>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- append extracted sources , for pack with library -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>process-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>
${project.build.directory}/src
</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.sourceforge.maven-taglib</groupId>
<artifactId>maven-taglib-plugin</artifactId>
<configuration>
<taglib.src.dir>
${project.build.outputDirectory}/META-INF
</taglib.src.dir>
<tldDocDir>
${project.build.directory}/tlddoc
</tldDocDir>
</configuration>
<executions>
<execution>
<id>attach-javadoc</id>
<phase>process-resources</phase>
<goals>
<goal>taglibdoc</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<outputDirectory>${project.build.directory}/dist</outputDirectory>
<descriptors>
<descriptor>src/main/assembly/richfaces.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase> <!-- append to the packaging phase. -->
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<outputDirectory>${project.build.directory}/dist</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0.jar
<<Binary file>>
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0-bin.zip.sha1
Index: richfaces-3.0.0-bin.zip.sha1
===================================================================
8349345c276ad20d66bf7391264bd0ccafa8aa1e
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0-sources.jar.md5
Index: richfaces-3.0.0-sources.jar.md5
===================================================================
9cad308d72ed1d2ef7fe49fcf73108a4
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0-sources.jar.sha1
Index: richfaces-3.0.0-sources.jar.sha1
===================================================================
5f7b2dcd68bfa6946b533653b77dec032ccf9cc8
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0-sources.jar
<<Binary file>>
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0.jar.sha1
Index: richfaces-3.0.0.jar.sha1
===================================================================
26a45e1648fa54534cc3986327e90600b0a27616
1.1 date: 2007/03/09 17:45:08; author: alexsmirnov; state: Exp;repository.jboss.com/maven2/org/richfaces/richfaces/3.0.0/richfaces-3.0.0-javadoc.jar.sha1
Index: richfaces-3.0.0-javadoc.jar.sha1
===================================================================
6db2a94d64c261f597179fd0f98a67c25e8e33ad
More information about the jboss-cvs-commits
mailing list