JBoss Rich Faces SVN: r15697 - in root/cdk/trunk/plugins: maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2009-10-05 17:26:45 -0400 (Mon, 05 Oct 2009)
New Revision: 15697
Removed:
root/cdk/trunk/plugins/generator/src/main/resources/org/
root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AbstractCreateMojo.java
root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AssemblyAttachedLibraryMojo.java
root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AssemblyLibraryMojo.java
root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/CreateComponentMojo.java
root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/CreateSkinMojo.java
root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/CreateThemeMojo.java
root/cdk/trunk/plugins/maven-cdk-plugin/src/main/resources/META-INF/plexus/
Modified:
root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AbstractCDKMojo.java
Log:
fix missed velocity dependencies
Modified: root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AbstractCDKMojo.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AbstractCDKMojo.java 2009-10-05 16:54:09 UTC (rev 15696)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AbstractCDKMojo.java 2009-10-05 21:26:45 UTC (rev 15697)
@@ -161,10 +161,6 @@
*/
protected File outputDirectory;
/**
- * @component
- */
- protected VelocityComponent velocity;
- /**
* Check library configuration, and fill all empty values to default.
*
* @return
@@ -288,19 +284,6 @@
return "1.2";
}
- protected void writeParsedTemplate(String templateName, VelocityContext context, File configFile) throws IOException, ResourceNotFoundException, ParseErrorException, MethodInvocationException, Exception {
- File dir = configFile.getParentFile();
- if(!dir.exists()){
- dir.mkdirs();
- }
- VelocityEngine engine = velocity.getEngine();
- FileWriter fileWriter = new FileWriter(configFile);
- Template velocityTemplate = engine.getTemplate(templateName);
- velocityTemplate.merge(context, fileWriter);
- fileWriter.flush();
- fileWriter.close();
- }
-
protected ClassLoader createProjectClassLoader(MavenProject project, boolean useCCL) {
ClassLoader classLoader = Thread.currentThread()
.getContextClassLoader();
Deleted: root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AbstractCreateMojo.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AbstractCreateMojo.java 2009-10-05 16:54:09 UTC (rev 15696)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AbstractCreateMojo.java 2009-10-05 21:26:45 UTC (rev 15697)
@@ -1,141 +0,0 @@
-/**
- * License Agreement.
- *
- * Rich Faces - Natural Ajax for Java Server Faces (JSF)
- *
- * Copyright (C) 2007 Exadel, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation.
- *
- * This library 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 library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-package org.richfaces.builder.mojo;
-
-import java.io.File;
-import java.util.HashSet;
-import java.util.Set;
-
-import org.apache.maven.plugin.MojoExecutionException;
-import org.apache.velocity.VelocityContext;
-import org.richfaces.cdk.model.Resource;
-
-/**
- * @author Nick Belaevski
- *
- */
-public abstract class AbstractCreateMojo extends AbstractCDKMojo {
-
- protected static final String SRC_MAIN_RESOURCES = "src/main/resources";
-
- protected static final Set<String> JAVA_RESERVED_WORDS;
-
- static{
- JAVA_RESERVED_WORDS = new HashSet<String>();
- JAVA_RESERVED_WORDS.add("abstract");
- JAVA_RESERVED_WORDS.add("assert");
- JAVA_RESERVED_WORDS.add("boolean");
- JAVA_RESERVED_WORDS.add("break");
- JAVA_RESERVED_WORDS.add("byte");
- JAVA_RESERVED_WORDS.add("case");
- JAVA_RESERVED_WORDS.add("catch");
- JAVA_RESERVED_WORDS.add("char");
- JAVA_RESERVED_WORDS.add("class");
- JAVA_RESERVED_WORDS.add("const");
- JAVA_RESERVED_WORDS.add("continue");
- JAVA_RESERVED_WORDS.add("default");
- JAVA_RESERVED_WORDS.add("do");
- JAVA_RESERVED_WORDS.add("double");
- JAVA_RESERVED_WORDS.add("else");
- JAVA_RESERVED_WORDS.add("extends");
- JAVA_RESERVED_WORDS.add("false");
- JAVA_RESERVED_WORDS.add("final");
- JAVA_RESERVED_WORDS.add("finally");
- JAVA_RESERVED_WORDS.add("float");
- JAVA_RESERVED_WORDS.add("for");
- JAVA_RESERVED_WORDS.add("goto");
- JAVA_RESERVED_WORDS.add("if");
- JAVA_RESERVED_WORDS.add("implements");
- JAVA_RESERVED_WORDS.add("import");
- JAVA_RESERVED_WORDS.add("instanceof");
- JAVA_RESERVED_WORDS.add("int");
- JAVA_RESERVED_WORDS.add("interface");
- JAVA_RESERVED_WORDS.add("long");
- JAVA_RESERVED_WORDS.add("native");
- JAVA_RESERVED_WORDS.add("new");
- JAVA_RESERVED_WORDS.add("null");
- JAVA_RESERVED_WORDS.add("package");
- JAVA_RESERVED_WORDS.add("private");
- JAVA_RESERVED_WORDS.add("protected");
- JAVA_RESERVED_WORDS.add("public");
- JAVA_RESERVED_WORDS.add("return");
- JAVA_RESERVED_WORDS.add("short");
- JAVA_RESERVED_WORDS.add("static");
- JAVA_RESERVED_WORDS.add("strictfp");
- JAVA_RESERVED_WORDS.add("super");
- JAVA_RESERVED_WORDS.add("switch");
- JAVA_RESERVED_WORDS.add("synchronized");
- JAVA_RESERVED_WORDS.add("this");
- JAVA_RESERVED_WORDS.add("throw");
- JAVA_RESERVED_WORDS.add("throws");
- JAVA_RESERVED_WORDS.add("transient");
- JAVA_RESERVED_WORDS.add("true");
- JAVA_RESERVED_WORDS.add("try");
- JAVA_RESERVED_WORDS.add("void");
- JAVA_RESERVED_WORDS.add("volatile");
- JAVA_RESERVED_WORDS.add("while");
- }
-
- protected void checkAndCreateDirectory(File directory)
- throws MojoExecutionException {
- getLog().debug("Checking directory " + directory + " for existence");
- if (!directory.exists()) {
- directory.mkdirs();
- getLog().debug("Directory " + directory + " created");
- }
- if (!directory.isDirectory()) {
- throw new MojoExecutionException("Directory " + directory.getAbsolutePath() + " is not a Directory");
- }
- }
-
- protected void filterJarResource(Resource template, Resource skinResource, File baseDir,
- VelocityContext context) throws Exception {
- File newFile = new File(baseDir, skinResource.getPath());
- if (newFile.exists()) {
- getLog().debug("File " + newFile + " already exists. Skipping.");
- } else {
- try {
- writeParsedTemplate(template.getPath(), context, newFile);
- } catch (Exception e) {
- throw new MojoExecutionException("Unable to write file " + newFile, e);
- }
- }
- }
-
- protected boolean isValidJavaName(String name) {
- return !JAVA_RESERVED_WORDS.contains(name);
- }
-
- protected boolean isValidPackageName(String packageName) {
- if (packageName != null) {
- String[] packageNameSegments = packageName.split("\\.");
- for (String packageNameSegment : packageNameSegments) {
- if (!isValidJavaName(packageNameSegment)) {
- return false;
- }
- }
- }
-
- return true;
- }
-
-}
Deleted: root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AssemblyAttachedLibraryMojo.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AssemblyAttachedLibraryMojo.java 2009-10-05 16:54:09 UTC (rev 15696)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AssemblyAttachedLibraryMojo.java 2009-10-05 21:26:45 UTC (rev 15697)
@@ -1,737 +0,0 @@
-/**
- * License Agreement.
- *
- * Rich Faces - Natural Ajax for Java Server Faces (JSF)
- *
- * Copyright (C) 2007 Exadel, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation.
- *
- * This library 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 library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-package org.richfaces.builder.mojo;
-
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.FileNotFoundException;
-import java.io.FileReader;
-import java.io.FileWriter;
-import java.io.IOException;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.Collections;
-import java.util.Comparator;
-import java.util.HashMap;
-import java.util.HashSet;
-import java.util.Iterator;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
-
-import org.apache.maven.artifact.Artifact;
-import org.apache.maven.artifact.repository.ArtifactRepository;
-import org.apache.maven.artifact.resolver.ArtifactNotFoundException;
-import org.apache.maven.artifact.resolver.ArtifactResolutionException;
-import org.apache.maven.model.Dependency;
-import org.apache.maven.model.Model;
-import org.apache.maven.model.Parent;
-import org.apache.maven.model.Resource;
-import org.apache.maven.model.io.xpp3.MavenXpp3Reader;
-import org.apache.maven.model.io.xpp3.MavenXpp3Writer;
-import org.apache.maven.plugin.MojoExecutionException;
-import org.apache.maven.plugin.MojoFailureException;
-import org.apache.maven.project.MavenProject;
-import org.apache.maven.project.MavenProjectBuilder;
-import org.apache.maven.project.MavenProjectHelper;
-import org.apache.maven.project.ProjectBuildingException;
-import org.apache.velocity.VelocityContext;
-import org.codehaus.plexus.archiver.UnArchiver;
-import org.codehaus.plexus.archiver.manager.ArchiverManager;
-import org.codehaus.plexus.util.DirectoryScanner;
-import org.richfaces.cdk.xmlutils.NamesListComparator;
-import org.richfaces.cdk.xmlutils.ParsingException;
-import org.richfaces.cdk.xmlutils.XMLBody;
-import org.richfaces.cdk.xmlutils.XMLBodyMerge;
-import org.richfaces.cdk.xmlutils.XPathComparator;
-import org.w3c.dom.Node;
-
-/**
- * This plugin assembly full components library from modules, included in parent
- * project. Steps to create library : 1. Got parent project, and check modules
- * included in them. 2. For every module , build project and got it properties.
- * 3. Resolve module artifact, check for "jar" type and include/exclude
- * criteria. for accepted modules, unpack it to classes directory, and put
- * config files in separate directories. 4. Append unpacked directory to
- * resources, included in result jar. 5. Merge all META-INF/faces-config.xml ,
- * *.tld, *.taglib.xml , resources-config.xml into ones. 6. append dependencies
- * of included projects to this.
- *
- * @author shura
- * @goal attached
- * @phase package
- * @aggregator
- */
-public class AssemblyAttachedLibraryMojo extends AbstractCDKMojo {
-
- private static final String TEMPLATES_PREFIX = "/templates/";
-
- private static final String TEMPLATES12_PREFIX = "/templates12/";
-
- private static final String FACES_CONFIG_TEMPLATE = "faces-config.vm";
-
- private static final String RESOURCES_CONFIG_TEMPLATE = "resources-config.vm";
-
- private static final String TLD_TEMPLATE = "tld.vm";
-
- private static final String TAGLIB_TEMPLATE = "taglib.vm";
-
- private static final String[] TLD_TAG_NAMES = new String[] {
- "description", "display-name", "icon", "tlib-version",
- "short-name", "uri", "validator", "listener", "tag",
- "tag-file", "function", "taglib-extension"
- };
-
- private static final String[] TAGLIB_TAG_NAMES = new String[] {
- "library-class", "namespace", "tag", "function"
- };
-
- /**
- * Used to look up Artifacts in the remote repository.
- *
- * @component
- */
- private org.apache.maven.artifact.factory.ArtifactFactory factory;
-
- /**
- * Used to look up Artifacts in the remote repository.
- *
- * @component
- */
- private org.apache.maven.artifact.resolver.ArtifactResolver resolver;
-
- /**
- * The local repository.
- *
- * @parameter expression="${localRepository}"
- */
- private ArtifactRepository localRepository;
-
- /**
- * To look up Archiver/UnArchiver implementations
- *
- * @component
- */
- private ArchiverManager archiverManager;
-
- /**
- * Project builder
- *
- * @component
- */
- private MavenProjectBuilder mavenProjectBuilder;
-
- /**
- * Maven ProjectHelper
- *
- * @component
- */
- private MavenProjectHelper projectHelper;
-
- /**
- * The reactor projects.
- *
- * @parameter expression="${reactorProjects}"
- * @required
- * @readonly
- */
- private List reactorProjects;
-
- /**
- * The reactor projects.
- *
- * @parameter expression="${project.parent}"
- * @readonly
- */
- private MavenProject parentProject;
-
- /**
- * The directory for compiled classes.
- *
- * @parameter expression="${project.build.directory}"
- * @required
- * @readonly
- */
- private File buildDirectory;
-
- /**
- * The directory for compiled classes.
- *
- * @parameter expression="${project.build.directory}/pom.xml"
- * @required
- * @readonly
- */
- private File generatedPom;
-
- /**
- * The directory for compiled classes.
- *
- * @parameter expression="${project.build.directory}/src"
- * @required
- * @readonly
- */
- private File modulesSrc;
-
- /**
- * @parameter
- */
- private String templates;
-
- /**
- * @parameter
- */
- private String includeTld = "META-INF/*.tld";
-
- /**
- * @parameter
- */
- private String includeTaglib = "META-INF/*.taglib.xml";
-
-
- /**
- * @parameter
- */
- private Taglib[] taglibs;
-
- /**
- *
- */
- public AssemblyAttachedLibraryMojo() {
- // used for plexus init.
- }
-
- /*
- * (non-Javadoc)
- *
- * @see org.apache.maven.plugin.Mojo#execute()
- */
- public void execute() throws MojoExecutionException, MojoFailureException {
- if(null != reactorProjects){
- getLog().info("Reactor projects");
- for (Iterator iterator = reactorProjects.iterator(); iterator.hasNext();) {
- MavenProject reactor = (MavenProject) iterator.next();
- getLog().info("Project "+reactor.getGroupId()+":"+reactor.getArtifactId());
- }
- }
- // assemblyProjects();
-
- }
-
- /**
- * @throws MojoFailureException
- * @throws MojoExecutionException
- */
- protected void assemblyProjects() throws MojoFailureException,
- MojoExecutionException {
- // Parent project not set for a custom lifecycles. Try to load artifact.
- if (null == parentProject || null == parentProject.getFile()) {
- Parent parentModel = project.getModel().getParent();
- if (null != parentModel) {
- String relativePath = parentModel.getRelativePath();
- File parentPom = new File(project.getFile().getAbsoluteFile().getParentFile(), relativePath);
- if (parentPom.isDirectory()) {
- parentPom = new File(parentPom, "pom.xml");
- }
- if (parentPom.exists()) {
- try {
- parentProject = mavenProjectBuilder.build(parentPom,
- localRepository, null);
- } catch (ProjectBuildingException e) {
- throw new MojoFailureException("Error get parent project for a components library");
- }
- } else {
- throw new MojoFailureException("Parent project pom file not found for a components library");
- }
- }else {
- throw new MojoFailureException("Components library project must have parent pom with components modules");
- }
-
- }
- if (null != parentProject) {
- this.checkLibraryConfig();
- if (null == templates) {
- templates = Library.JSF12.equals(library.getJsfVersion()) ? TEMPLATES12_PREFIX
- : TEMPLATES_PREFIX;
- }
- Model generatedProject;
- try {
- MavenXpp3Reader reader = new MavenXpp3Reader();
- generatedProject = reader
- .read(new FileReader(project.getFile()));
- } catch (Exception e1) {
- throw new MojoExecutionException("Unable to read local POM", e1);
- }
- List modules = parentProject.getModules();
- List models = new ArrayList(modules.size());
- Map<String, Dependency> projectsDependencies = new HashMap<String, Dependency>();
- for (Iterator iter = modules.iterator(); iter.hasNext();) {
- String moduleName = (String) iter.next();
- getLog().info("Parent project have module " + moduleName);
- Model model;
- File f = new File(parentProject.getBasedir(), moduleName
- + "/pom.xml");
- if (f.exists()) {
- try {
- model = mavenProjectBuilder.build(f, localRepository,
- null).getModel();
- } catch (ProjectBuildingException e) {
- throw new MojoExecutionException(
- "Unable to read local module-POM", e);
- }
- } else {
- getLog().warn("No filesystem module-POM available");
-
- model = new Model();
- model.setName(moduleName);
- model.setUrl(moduleName);
- }
- if (project.getGroupId().equals(model.getGroupId())
- && "jar".equals(model.getPackaging())
- && (!project.getArtifactId().equals(
- model.getArtifactId()))) {
- // TODO - check include/exclude
- getLog().debug(
- "Project " + model.getName()
- + " included to library set");
- List dependencies = model.getDependencies();
- for (Iterator iterator = dependencies.iterator(); iterator
- .hasNext();) {
- Dependency dependency = (Dependency) iterator.next();
- getLog().debug(
- dependency.getClass().getName() + " : "
- + dependency + " with key: "
- + dependency.getManagementKey());
- if (!"test".equals(dependency.getScope())) {
- projectsDependencies.put(dependency
- .getManagementKey(), dependency);
-
- }
- }
- models.add(model);
- }
- }
- // Remove modules projects from dependencise
- Set<String> unwanted = new HashSet<String>(projectsDependencies
- .size());
- for (Iterator iter = models.iterator(); iter.hasNext();) {
- Model model = (Model) iter.next();
- for (Iterator iterator = projectsDependencies.values()
- .iterator(); iterator.hasNext();) {
- Dependency dependency = (Dependency) iterator.next();
- if (model.getGroupId().equals(dependency.getGroupId())
- && model.getArtifactId().equals(
- dependency.getArtifactId())) {
- getLog().debug(
- "Remove dependency of library module "
- + dependency.getManagementKey());
- unwanted.add(dependency.getManagementKey());
- }
- }
- // Got module and unpack it to target directory.
- Artifact artifact = factory.createBuildArtifact(model
- .getGroupId(), model.getArtifactId(), model
- .getVersion(), model.getPackaging());
- File moduleDir = new File(buildDirectory, model.getArtifactId());
- unpackArtifact(artifact, moduleDir, true);
- artifact = factory.createArtifactWithClassifier(model
- .getGroupId(), model.getArtifactId(), model
- .getVersion(), "jar", "sources");
- unpackArtifact(artifact, modulesSrc, false);
- }
- // Add projects dependencies to this project
- projectsDependencies.keySet().removeAll(unwanted);
- generatedProject.getDependencies().addAll(
- projectsDependencies.values());
- writePom(generatedProject);
- mergeFacesConfig(models);
- File resourcesConfig = new File(outputDirectory,
- "META-INF/resources-config.xml");
- mergeXML(models, "META-INF/resources-config.xml",
- RESOURCES_CONFIG_TEMPLATE, "/resource-config/resource", "name/text()",
- new VelocityContext(), resourcesConfig, null);
- File tld = new File(outputDirectory, "META-INF/"
- + library.getTaglib().getShortName() + ".tld");
- mergeXML(models, includeTld, TLD_TEMPLATE,
- "/taglib/tag | /taglib/listener",
- null, new VelocityContext(), tld, new NamesListComparator(
- new XPathComparator("name/text()", "listener-class/text()"), TLD_TAG_NAMES));
- File taglib = new File(outputDirectory, "META-INF/"
- + library.getTaglib().getShortName() + ".taglib.xml");
- mergeXML(models, includeTaglib, TAGLIB_TEMPLATE,
- "/facelet-taglib/tag | /facelet-taglib/function",
- null, new VelocityContext(), taglib, new NamesListComparator(
- new XPathComparator("tag-name/text()", "function-name/text()"), TAGLIB_TAG_NAMES));
- }else {
- throw new MojoFailureException("Components library project must have parent pom with components modules");
- }
- }
-
- /**
- * @param models
- * @throws MojoExecutionException
- */
- private void mergeFacesConfig(List models) throws MojoExecutionException {
- StringBuffer config = new StringBuffer();
- for (int i = 0; i < library.getRenderkits().length; i++) {
- Renderkit kit = library.getRenderkits()[i];
- kit.setContent(new StringBuffer());
- }
- for (Iterator iter = models.iterator(); iter.hasNext();) {
- Model model = (Model) iter.next();
- File moduleFacesConfig = new File(buildDirectory, model
- .getArtifactId()
- + "/META-INF/faces-config.xml");
- if (moduleFacesConfig.exists()) {
- getLog().info(
- "Process faces-config.xml for module "
- + model.getArtifactId());
- XMLBody configBody = new XMLBody();
- try {
- configBody.loadXML(new FileInputStream(moduleFacesConfig));
- config
- .append(configBody
- .getContent("/faces-config/*[name()!=\'render-kit\']"));
- for (int i = 0; i < library.getRenderkits().length; i++) {
- Renderkit kit = library.getRenderkits()[i];
- kit
- .getContent()
- .append(
- configBody
- .getContent("/faces-config/render-kit[child::render-kit-id='"
- + kit.getName()
- + "']/renderer"));
- }
- } catch (FileNotFoundException e) {
- throw new MojoExecutionException(
- "Could't read faces-config file", e);
- } catch (org.richfaces.cdk.xmlutils.ParsingException e) {
- throw new MojoExecutionException(
- "Error parsing faces-config file", e);
- }
- }
- }
- VelocityContext context = new VelocityContext();
- context.put("content", config.toString());
- context.put("library", library);
- context.put("renderkits", Arrays.asList(library.getRenderkits()));
- try {
- writeParsedTemplate(templates + FACES_CONFIG_TEMPLATE, context,
- new File(outputDirectory, "META-INF/faces-config.xml"));
- } catch (Exception e) {
- throw new MojoExecutionException(
- "Error to process faces-config template", e);
- }
- }
-
- /**
- * Merge XML files from extracted models to one in build directory.
- *
- * @param models
- * models collected in library.
- * @param filename
- * relative path to config file in models/output.
- * @param templateName -
- * name of velocity template for result file.
- * @param commonXpath -
- * XPath expression fof common part of result file.
- * @param keyXPath - XPath expression for key part of common parts
- * @param keySet - {@link Set} to check for duplicate keys. Must not be null
- * @param context -
- * Velocity context for template processing.
- * @throws MojoExecutionException
- */
- private void mergeXML(List<Model> models, String filename, String templateName,
- String commonXpath, String keyXPath, VelocityContext context, File target, Comparator<Node> comparator)
- throws MojoExecutionException {
- StringBuilder content = new StringBuilder();
- XMLBodyMerge bodyMerge = new XMLBodyMerge(commonXpath, keyXPath);
- List<XMLBody> xmls = new ArrayList<XMLBody>(models.size());
- String[] split = filename.split(",");
- for (Iterator<Model> iter = models.iterator(); iter.hasNext();) {
- Model model = iter.next();
- File moduleDir = new File(buildDirectory, model.getArtifactId());
- DirectoryScanner ds = new DirectoryScanner();
- ds.setFollowSymlinks(true);
- ds.setBasedir(moduleDir);
- ds.setIncludes(split);
- ds.addDefaultExcludes();
- ds.scan();
- String[] files = ds.getIncludedFiles();
- for (int i = 0; i < files.length; i++) {
- File moduleFacesConfig = new File(moduleDir, files[i]);
- getLog().info(
- "Process " + files[i] + " for module "
- + model.getArtifactId());
- XMLBody configBody = new XMLBody();
- try {
- configBody.loadXML(new FileInputStream(moduleFacesConfig));
- xmls.add(configBody);
- bodyMerge.add(configBody);
- } catch (FileNotFoundException e) {
- throw new MojoExecutionException("Could't read file "
- + moduleFacesConfig.getPath(), e);
- } catch (ParsingException e) {
- throw new MojoExecutionException(
- "Error parsing config file "
- + moduleFacesConfig.getPath(), e);
- }
-
-
- }
- }
- if (comparator != null) {
- bodyMerge.sort(comparator);
- }
-
- try {
- content.append(bodyMerge.getContent());
- } catch (Exception e) {
- // TODO: handle exception
- }
-
- if (xmls.size() > 0) {
- context.put("content", content);
- context.put("library", library);
- context.put("models", models);
- context.put("xmls", xmls);
- try {
- writeParsedTemplate(templates + templateName, context, target);
- } catch (Exception e) {
- throw new MojoExecutionException("Error to process template "
- + templateName + " for files " + filename, e);
- }
-
- }
- }
-
- private void unpackArtifact(Artifact artifact, File moduleDir,
- boolean isResource) throws MojoExecutionException {
- try {
- resolver.resolve(artifact, Collections.EMPTY_LIST, localRepository);
- unpack(artifact.getFile(), moduleDir);
- if (isResource) {
- Resource resource = new Resource();
- resource.setDirectory(moduleDir.getPath());
- resource.addExclude("META-INF/faces-config.xml");
- resource.addExclude("META-INF/resources-config.xml");
- resource.addExclude("META-INF/*.taglib.xml");
- resource.addExclude("META-INF/*.tld");
- project.addResource(resource);
-
- }
- } catch (ArtifactResolutionException e) {
- getLog().error("Error with resolve artifact " + artifact, e);
- } catch (ArtifactNotFoundException e) {
- getLog().error("Not found artifact " + artifact, e);
- }
- }
-
- private List<MavenProject> populateReactorProjects() {
- List<MavenProject> projects = new ArrayList<MavenProject>();
- if (reactorProjects != null && reactorProjects.size() > 1) {
- Iterator reactorItr = reactorProjects.iterator();
-
- while (reactorItr.hasNext()) {
- MavenProject reactorProject = (MavenProject) reactorItr.next();
-
- if (reactorProject != null
- && reactorProject.getParent() != null
- && project.getArtifactId().equals(
- reactorProject.getParent().getArtifactId())) {
- String name = reactorProject.getGroupId() + ":"
- + reactorProject.getArtifactId();
- getLog().info("Have reactor project with name " + name);
- projects.add(reactorProject);
- }
- }
- }
- return projects;
- }
-
- /**
- * Unpacks the archive file.
- *
- * @param file
- * File to be unpacked.
- * @param location
- * Location where to put the unpacked files.
- */
- private void unpack(File file, File location) throws MojoExecutionException {
-
- getLog().debug(
- "Unpack file " + file.getAbsolutePath() + " to: "
- + location.getAbsolutePath());
- try {
- location.mkdirs();
-
- UnArchiver unArchiver;
-
- unArchiver = archiverManager.getUnArchiver(file);
-
- unArchiver.setSourceFile(file);
-
- unArchiver.setDestDirectory(location);
-
- unArchiver.setOverwrite(true);
-
- unArchiver.extract();
-
- } catch (Exception e) {
- throw new MojoExecutionException("Error unpacking file: " + file
- + " to: " + location + "\r\n" + e.toString(), e);
- }
- }
-
- private void writePom(Model pom) throws MojoExecutionException {
- MavenXpp3Writer pomWriter = new MavenXpp3Writer();
- try {
- FileWriter out = new FileWriter(generatedPom);
- pomWriter.write(out, pom);
- } catch (IOException e) {
- throw new MojoExecutionException("Error for write generated pom", e);
- }
-
- }
-
- /**
- * @return the archiverManager
- */
- public ArchiverManager getArchiverManager() {
- return this.archiverManager;
- }
-
- /**
- * @param archiverManager
- * the archiverManager to set
- */
- public void setArchiverManager(ArchiverManager archiverManager) {
- this.archiverManager = archiverManager;
- }
-
- /**
- * @return the buildDirectory
- */
- public File getBuildDirectory() {
- return this.buildDirectory;
- }
-
- /**
- * @param buildDirectory
- * the buildDirectory to set
- */
- public void setBuildDirectory(File buildDirectory) {
- this.buildDirectory = buildDirectory;
- }
-
- /**
- * @return the factory
- */
- public org.apache.maven.artifact.factory.ArtifactFactory getFactory() {
- return this.factory;
- }
-
- /**
- * @param factory
- * the factory to set
- */
- public void setFactory(
- org.apache.maven.artifact.factory.ArtifactFactory factory) {
- this.factory = factory;
- }
-
- /**
- * @return the localRepository
- */
- public ArtifactRepository getLocalRepository() {
- return this.localRepository;
- }
-
- /**
- * @param localRepository
- * the localRepository to set
- */
- public void setLocalRepository(ArtifactRepository localRepository) {
- this.localRepository = localRepository;
- }
-
- /**
- * @return the mavenProjectBuilder
- */
- public MavenProjectBuilder getMavenProjectBuilder() {
- return this.mavenProjectBuilder;
- }
-
- /**
- * @param mavenProjectBuilder
- * the mavenProjectBuilder to set
- */
- public void setMavenProjectBuilder(MavenProjectBuilder mavenProjectBuilder) {
- this.mavenProjectBuilder = mavenProjectBuilder;
- }
-
- /**
- * @return the parentProject
- */
- public MavenProject getParentProject() {
- return this.parentProject;
- }
-
- /**
- * @param parentProject
- * the parentProject to set
- */
- public void setParentProject(MavenProject parentProject) {
- this.parentProject = parentProject;
- }
-
- /**
- * @return the reactorProjects
- */
- public List getReactorProjects() {
- return this.reactorProjects;
- }
-
- /**
- * @param reactorProjects
- * the reactorProjects to set
- */
- public void setReactorProjects(List reactorProjects) {
- this.reactorProjects = reactorProjects;
- }
-
- /**
- * @return the resolver
- */
- public org.apache.maven.artifact.resolver.ArtifactResolver getResolver() {
- return this.resolver;
- }
-
- /**
- * @param resolver
- * the resolver to set
- */
- public void setResolver(
- org.apache.maven.artifact.resolver.ArtifactResolver resolver) {
- this.resolver = resolver;
- }
-
-}
Deleted: root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AssemblyLibraryMojo.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AssemblyLibraryMojo.java 2009-10-05 16:54:09 UTC (rev 15696)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/AssemblyLibraryMojo.java 2009-10-05 21:26:45 UTC (rev 15697)
@@ -1,942 +0,0 @@
-/**
- * License Agreement.
- *
- * Rich Faces - Natural Ajax for Java Server Faces (JSF)
- *
- * Copyright (C) 2007 Exadel, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation.
- *
- * This library 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 library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-package org.richfaces.builder.mojo;
-
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.FileNotFoundException;
-import java.io.FileReader;
-import java.io.FileWriter;
-import java.io.IOException;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.Collections;
-import java.util.Comparator;
-import java.util.HashMap;
-import java.util.HashSet;
-import java.util.Iterator;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
-
-import org.apache.maven.artifact.Artifact;
-import org.apache.maven.artifact.repository.ArtifactRepository;
-import org.apache.maven.artifact.resolver.ArtifactNotFoundException;
-import org.apache.maven.artifact.resolver.ArtifactResolutionException;
-import org.apache.maven.model.Dependency;
-import org.apache.maven.model.Model;
-import org.apache.maven.model.Parent;
-import org.apache.maven.model.Resource;
-import org.apache.maven.model.io.xpp3.MavenXpp3Reader;
-import org.apache.maven.model.io.xpp3.MavenXpp3Writer;
-import org.apache.maven.plugin.MojoExecutionException;
-import org.apache.maven.plugin.MojoFailureException;
-import org.apache.maven.project.MavenProject;
-import org.apache.maven.project.MavenProjectBuilder;
-import org.apache.maven.project.ProjectBuildingException;
-import org.apache.velocity.VelocityContext;
-import org.codehaus.plexus.archiver.UnArchiver;
-import org.codehaus.plexus.archiver.manager.ArchiverManager;
-import org.codehaus.plexus.util.DirectoryScanner;
-import org.richfaces.cdk.xmlutils.NamesListComparator;
-import org.richfaces.cdk.xmlutils.ParsingException;
-import org.richfaces.cdk.xmlutils.XMLBody;
-import org.richfaces.cdk.xmlutils.XMLBodyMerge;
-import org.richfaces.cdk.xmlutils.XPathComparator;
-import org.w3c.dom.Node;
-
-/**
- * This plugin assembly full components library from modules, included in parent
- * project. Steps to create library : 1. Got parent project, and check modules
- * included in them. 2. For every module , build project and got it properties.
- * 3. Resolve module artifact, check for "jar" type and include/exclude
- * criteria. for accepted modules, unpack it to classes directory, and put
- * config files in separate directories. 4. Append unpacked directory to
- * resources, included in result jar. 5. Merge all META-INF/faces-config.xml ,
- * *.tld, *.taglib.xml, *.component-dependencies.xml , resources-config.xml into ones.
- * 6. append dependencies of included projects to this.
- *
- * @author shura
- * @goal assembly
- * @requiresDependencyResolution compile
- * @phase generate-resources
- */
-public class AssemblyLibraryMojo extends AbstractCDKMojo {
-
- private static final String TEMPLATES_PREFIX = "/templates/";
-
- private static final String TEMPLATES12_PREFIX = "/templates12/";
-
- private static final String FACES_CONFIG_TEMPLATE = "faces-config.vm";
-
- private static final String RESOURCES_CONFIG_TEMPLATE = "resources-config.vm";
-
- private static final String COMPONENT_DEPENDENCIES_TEMPLATE = "component-dependencies.vm";
-
- private static final String XCSS_TEMPLATE = "xcss.vm";
-
- private static final String TLD_TEMPLATE = "tld.vm";
-
- private static final String TAGLIB_TEMPLATE = "taglib.vm";
-
- private static final String[] TLD_TAG_NAMES = new String[] {
- "description", "display-name", "icon", "tlib-version",
- "short-name", "uri", "validator", "listener", "tag",
- "tag-file", "function", "taglib-extension"
- };
-
- private static final String[] TAGLIB_TAG_NAMES = new String[] {
- "library-class", "namespace", "tag", "function"
- };
-
- private static final String[] DEPENDENCIES_TAG_NAMES = new String[] {
- "component"
- };
-
- private static final Comparator<Node> TLD_COMPARATOR = new NamesListComparator(
- new XPathComparator("listener-class/text()", "name/text()"), TLD_TAG_NAMES);
-
- private static final Comparator<Node> FACELET_COMPARATOR = new NamesListComparator(
- new XPathComparator("function-name/text()", "tag-name/text()"), TAGLIB_TAG_NAMES);
-
- private static final Comparator<Node> DEPENDENCIES_COMPARATOR = new NamesListComparator(
- new XPathComparator("name/text()"), DEPENDENCIES_TAG_NAMES);
-
- /**
- * Used to look up Artifacts in the remote repository.
- *
- * @component
- */
- private org.apache.maven.artifact.factory.ArtifactFactory factory;
-
- /**
- * Used to look up Artifacts in the remote repository.
- *
- * @component
- */
- private org.apache.maven.artifact.resolver.ArtifactResolver resolver;
-
- /**
- * The local repository.
- *
- * @parameter expression="${localRepository}"
- */
- private ArtifactRepository localRepository;
-
- /**
- * To look up Archiver/UnArchiver implementations
- *
- * @component
- */
- private ArchiverManager archiverManager;
-
- /**
- * Project builder
- *
- * @component
- */
- private MavenProjectBuilder mavenProjectBuilder;
-
- /**
- * The reactor projects.
- *
- * @parameter expression="${reactorProjects}"
- * @required
- * @readonly
- */
- private List reactorProjects;
-
- /**
- * The reactor projects.
- *
- * @parameter expression="${project.parent}"
- * @readonly
- */
- private MavenProject parentProject;
-
- /**
- * The list of resources we want to transfer.
- *
- * @parameter default-value="src/main/config"
- */
- private File config;
-
- /**
- * The directory for compiled classes.
- *
- * @parameter expression="${project.build.directory}"
- * @required
- * @readonly
- */
- private File buildDirectory;
-
- /**
- * @parameter default-value="${project.build.directory}/modules"
- */
- private File modulesDirectory;
-
- /**
- * The directory for compiled classes.
- *
- * @parameter expression="${project.build.directory}/pom.xml"
- * @required
- * @readonly
- */
- private File generatedPom;
-
- /**
- * The directory for compiled classes.
- *
- * @parameter expression="${project.build.directory}/src"
- * @required
- * @readonly
- */
- private File modulesSrc;
-
- /**
- * @parameter
- */
- private String templates;
-
- /**
- * @parameter
- */
- private String includeTld = "META-INF/*.tld";
-
- /**
- * @parameter
- */
- private String includeTaglib = "META-INF/*.taglib.xml";
-
- /**
- * @parameter
- */
- private String includeDependencies = "META-INF/*.component-dependencies.xml";
-
- /**
- * @parameter
- */
- private String includeXcss = "**/*.xcss";
-
- /**
- * @parameter
- */
- private String excludeXcss = null;
-
- /**
- * @parameter
- */
- private String commonStyle;
-
- /**
- * @parameter
- */
- private String templateXpath;
-
- /**
- *
- */
- public AssemblyLibraryMojo() {
- // used for plexus init.
- }
-
- /*
- * (non-Javadoc)
- *
- * @see org.apache.maven.plugin.Mojo#execute()
- */
- public void execute() throws MojoExecutionException, MojoFailureException {
- setupParentProject();
- checkLibraryConfig();
- if (null == templates) {
- templates = Library.JSF12.equals(library.getJsfVersion()) ? TEMPLATES12_PREFIX
- : TEMPLATES_PREFIX;
- }
- List<Model> models = extractModules();
- mergeFacesConfig(models);
- File resourcesConfig = new File(outputDirectory,
- "META-INF/resources-config.xml");
- mergeXML(models, "META-INF/resources-config.xml", null,
- RESOURCES_CONFIG_TEMPLATE, "/resource-config/resource",
- "name/text()", new VelocityContext(), resourcesConfig, false, null);
-
- if (null != commonStyle) {
- File commonXcss = new File(outputDirectory, commonStyle);
- mergeXML(models, includeXcss, excludeXcss, XCSS_TEMPLATE,
- templateXpath, null, new VelocityContext(), commonXcss, true, null);
- }
-
- if (null != library.getTaglibs() && library.getTaglibs().length > 0) {
- for (int i = 0; i < library.getTaglibs().length; i++) {
- Taglib taglib = library.getTaglibs()[i];
- List<Model> taglibModels;
- if (taglib.getIncludeModules() == null
- && taglib.getExcludeModules() == null) {
- taglibModels = models;
- } else {
- String[] includeModules = null;
- String[] excludeModules = null;
- if (null != taglib.getIncludeModules()) {
- includeModules = taglib.getIncludeModules().split(",");
- Arrays.sort(includeModules);
- }
- if (null != taglib.getExcludeModules()) {
- excludeModules = taglib.getExcludeModules().split(",");
- Arrays.sort(excludeModules);
- }
- taglibModels = new ArrayList<Model>();
- for (Iterator iterator = models.iterator(); iterator
- .hasNext();) {
- Model model = (Model) iterator.next();
- String id = model.getArtifactId();
- if ((includeModules == null || Arrays.binarySearch(
- includeModules, id) >= 0)
- && (excludeModules == null || Arrays
- .binarySearch(excludeModules, id) < 0)) {
- taglibModels.add(model);
- }
- }
- }
- generateTaglibAndDependencies(taglibModels, taglib);
- }
- } else {
- generateTaglibAndDependencies(models, library.getTaglib());
- }
- }
-
- /**
- * @param models
- * @throws MojoExecutionException
- */
- private void generateTaglibAndDependencies(List<Model> models, Taglib taglib)
- throws MojoExecutionException {
- getLog().debug(
- "Assembly taglib for uri " + taglib.getUri()
- + " with short name " + taglib.getShortName());
- VelocityContext taglibContext = new VelocityContext();
- taglibContext.put("taglib", taglib);
- // Build includes/excludes Xpath condition
- String nameTag = "name";
- createTagCondition(taglib, nameTag);
- File tld = new File(outputDirectory, "META-INF/" + taglib.getTaglib()
- + ".tld");
- getLog().debug("Write JSP taglib " + tld.getPath());
- String commonXPath = "/taglib/tag"
- + createTagCondition(taglib, "name") + " | /taglib/listener | /taglib/function";
-
- mergeXML(models, includeTld, null, TLD_TEMPLATE, commonXPath,
- "listener-class/text() | name/text()", new VelocityContext(taglibContext), tld, false, TLD_COMPARATOR);
-
-
- File faceletsTaglib = new File(outputDirectory, "META-INF/"
- + taglib.getTaglib() + ".taglib.xml");
- commonXPath = "/facelet-taglib/tag"
- + createTagCondition(taglib, "tag-name")
- + " | /facelet-taglib/function";
-
- mergeXML(models, includeTaglib, null, TAGLIB_TEMPLATE, commonXPath, "tag-name/text() | function-name/text()", new VelocityContext(
- taglibContext), faceletsTaglib, false, FACELET_COMPARATOR);
- getLog().debug("Write Facelets taglib " + faceletsTaglib.getPath());
-
- File dependenciesFile = new File(outputDirectory, "META-INF/"
- + taglib.getTaglib() + ".component-dependencies.xml");
- commonXPath = "/components/component" + createTagCondition(taglib, "name");
-
- mergeXML(models, includeDependencies, null, COMPONENT_DEPENDENCIES_TEMPLATE, commonXPath, "name/text()", new VelocityContext(
- taglibContext), dependenciesFile, false, DEPENDENCIES_COMPARATOR);
- getLog().debug("Write dependencies file " + dependenciesFile.getPath());
- }
-
- /**
- * @param taglib
- * @param nameTag
- */
- private String createTagCondition(Taglib taglib, String nameTag) {
- StringBuffer condition = new StringBuffer();
- if (taglib.getIncludeTags() != null || taglib.getExcludeTags() != null) {
- condition.append('[');
- if (taglib.getIncludeTags() != null) {
- condition.append('(');
- String[] includes = taglib.getIncludeTags().split(",");
- for (int i = 0; i < includes.length; i++) {
- String includeTag = includes[i];
- if (i != 0) {
- condition.append(" or ");
- }
- condition.append("normalize-space(").append(nameTag)
- .append(")='").append(includeTag).append("'");
- }
- condition.append(')');
- }
- if (taglib.getIncludeTags() != null
- && taglib.getExcludeTags() != null) {
- condition.append(" and ");
- }
- if (taglib.getExcludeTags() != null) {
- condition.append('(');
- String[] excludes = taglib.getExcludeTags().split(",");
- for (int i = 0; i < excludes.length; i++) {
- String includeTag = excludes[i];
- if (i != 0) {
- condition.append(" and ");
- }
- condition.append("normalize-space(").append(nameTag)
- .append(")!='").append(includeTag).append("'");
- }
- condition.append(')');
- }
- condition.append(']');
- }
- return condition.toString();
- }
-
- /**
- * @return
- * @throws MojoExecutionException
- */
- private List<Model> extractModules() throws MojoExecutionException {
- List<String> modules = parentProject.getModules();
- List<Model> models = new ArrayList<Model>(modules.size());
- Map<String, Dependency> projectsDependencies = new HashMap<String, Dependency>();
- for (Iterator<String> iter = modules.iterator(); iter.hasNext();) {
- String moduleName = iter.next();
- getLog().info("Parent project have module " + moduleName);
- Model model;
- File f = new File(parentProject.getBasedir(), moduleName
- + "/pom.xml");
- if (f.exists()) {
- try {
- model = mavenProjectBuilder.build(f, localRepository, null)
- .getModel();
- } catch (ProjectBuildingException e) {
- throw new MojoExecutionException(
- "Unable to read local module-POM", e);
- }
- } else {
- getLog().warn("No filesystem module-POM available");
-
- model = new Model();
- model.setName(moduleName);
- model.setUrl(moduleName);
- }
- if (project.getGroupId().equals(model.getGroupId())
- && "jar".equals(model.getPackaging())
- && (!project.getArtifactId().equals(model.getArtifactId()))) {
- // TODO - check include/exclude
- getLog().debug(
- "Project " + model.getName()
- + " included to library set");
- List<Dependency> dependencies = model.getDependencies();
- for (Iterator<Dependency> iterator = dependencies.iterator(); iterator
- .hasNext();) {
- Dependency dependency = iterator.next();
- getLog().debug(
- dependency.getClass().getName() + " : "
- + dependency + " with key: "
- + dependency.getManagementKey());
- if (!"test".equals(dependency.getScope())) {
- projectsDependencies.put(dependency.getManagementKey(),
- dependency);
-
- }
- }
- models.add(model);
- }
- }
- // Remove modules projects from dependencise
- Set<String> unwanted = new HashSet<String>(projectsDependencies.size());
- for (Iterator<Model> iter = models.iterator(); iter.hasNext();) {
- Model model = (Model) iter.next();
- for (Iterator<Dependency> iterator = projectsDependencies.values().iterator(); iterator
- .hasNext();) {
- Dependency dependency = (Dependency) iterator.next();
- if (model.getGroupId().equals(dependency.getGroupId())
- && model.getArtifactId().equals(
- dependency.getArtifactId())) {
- getLog().debug(
- "Remove dependency of library module "
- + dependency.getManagementKey());
- unwanted.add(dependency.getManagementKey());
- }
- }
- // Got module and unpack it to target directory.
- Artifact artifact = factory.createBuildArtifact(model.getGroupId(),
- model.getArtifactId(), model.getVersion(), model
- .getPackaging());
- File moduleDir = new File(modulesDirectory, model.getArtifactId());
- unpackArtifact(artifact, moduleDir, true);
- artifact = factory
- .createArtifactWithClassifier(model.getGroupId(), model
- .getArtifactId(), model.getVersion(), "jar",
- "sources");
- unpackArtifact(artifact, modulesSrc, false);
- }
- // Add projects dependencies to this project
- projectsDependencies.keySet().removeAll(unwanted);
- setupGeneratedProject(projectsDependencies);
- return models;
- }
-
- /**
- * @param projectsDependencies
- * @throws MojoExecutionException
- */
- private void setupGeneratedProject(
- Map<String, Dependency> projectsDependencies)
- throws MojoExecutionException {
- Model generatedProject;
- try {
- MavenXpp3Reader reader = new MavenXpp3Reader();
- generatedProject = reader.read(new FileReader(project.getFile()));
- } catch (Exception e1) {
- throw new MojoExecutionException("Unable to read local POM", e1);
- }
- generatedProject.getDependencies()
- .addAll(projectsDependencies.values());
- writePom(generatedProject);
- project.setDependencies(new ArrayList<Dependency>(projectsDependencies.values()));
- // project.setFile(generatedPom);
- }
-
- /**
- * Check parent project, build if nesessary.
- *
- * @throws MojoFailureException
- */
- protected void setupParentProject() throws MojoFailureException {
- // Parent project not set for a custom lifecycles. Try to load artifact.
- if (null == parentProject || null == parentProject.getFile()) {
- Parent parentModel = project.getModel().getParent();
- if (null != parentModel) {
- String relativePath = parentModel.getRelativePath();
- File parentPom = new File(project.getFile().getAbsoluteFile()
- .getParentFile(), relativePath);
- if (parentPom.isDirectory()) {
- parentPom = new File(parentPom, "pom.xml");
- }
- if (parentPom.exists()) {
- try {
- parentProject = mavenProjectBuilder.build(parentPom,
- localRepository, null);
- if (null == parentProject) {
- throw new MojoFailureException(
- "Components library project must have parent pom with components modules");
- }
- } catch (ProjectBuildingException e) {
- throw new MojoFailureException(
- "Error get parent project for a components library");
- }
- } else {
- throw new MojoFailureException(
- "Parent project pom file not found for a components library");
- }
- } else {
- throw new MojoFailureException(
- "Components library project must have parent pom with components modules");
- }
-
- }
- }
-
- /**
- * @param models
- * @throws MojoExecutionException
- */
- private void mergeFacesConfig(List<Model> models) throws MojoExecutionException {
- StringBuffer facesConfig = new StringBuffer();
- for (int i = 0; i < library.getRenderkits().length; i++) {
- Renderkit kit = library.getRenderkits()[i];
- kit.setContent(new StringBuffer());
- }
- // Process all faces-config.xml from modules
- for (Iterator<Model> iter = models.iterator(); iter.hasNext();) {
- Model model = iter.next();
- File moduleFacesConfig = new File(modulesDirectory, model
- .getArtifactId()
- + "/META-INF/faces-config.xml");
- processFacesConfigFile(facesConfig, moduleFacesConfig);
- }
- // Process faces-config from project resources
- if (null !=config) {
- processFacesConfigFile(facesConfig, new File(config, "META-INF/faces-config.xml"));
- }
- VelocityContext context = new VelocityContext();
- context.put("content", facesConfig.toString());
- context.put("library", library);
- context.put("renderkits", Arrays.asList(library.getRenderkits()));
- try {
- writeParsedTemplate(templates + FACES_CONFIG_TEMPLATE, context,
- new File(outputDirectory, "META-INF/faces-config.xml"));
- } catch (Exception e) {
- throw new MojoExecutionException(
- "Error to process faces-config template", e);
- }
- }
-
- /**
- * @param config
- * @param moduleFacesConfig
- * @throws MojoExecutionException
- */
- private void processFacesConfigFile(StringBuffer config,
- File moduleFacesConfig) throws MojoExecutionException {
- if (moduleFacesConfig.exists()) {
- getLog().info(
- "Process "+moduleFacesConfig.getName());
- XMLBody configBody = new XMLBody();
- try {
- configBody.loadXML(new FileInputStream(moduleFacesConfig));
- config
- .append(configBody
- .getContent("/faces-config/*[name()!=\'render-kit\']"));
- for (int i = 0; i < library.getRenderkits().length; i++) {
- Renderkit kit = library.getRenderkits()[i];
- kit
- .getContent()
- .append(
- configBody
- .getContent("/faces-config/render-kit[child::render-kit-id='"
- + kit.getName()
- + "']/renderer"));
- }
- } catch (FileNotFoundException e) {
- throw new MojoExecutionException(
- "Could't read faces-config file", e);
- } catch (ParsingException e) {
- throw new MojoExecutionException(
- "Error parsing faces-config file", e);
- }
- }
- }
-
- /**
- * Merge XML files from extracted models to one in build directory.
- *
- * @param models
- * models collected in library.
- * @param includes
- * relative path to config file in models/output.
- * @param templateName -
- * name of velocity template for result file.
- * @param commonXpath -
- * XPath expression fof common part of result file.
- * @param keyXPath -
- * XPath expression for key part of common parts
- * @param context -
- * Velocity context for template processing.
- * @param namespaceAware TODO
- * @param keySet -
- * {@link Set} to check for duplicate keys. Must not be null
- * @throws MojoExecutionException
- */
- private void mergeXML(List<Model> models, String includes, String excludes, String templateName,
- String commonXpath, String keyXPath, VelocityContext context,
- File target, boolean namespaceAware, Comparator<Node> comparator) throws MojoExecutionException {
- StringBuffer content = new StringBuffer();
- String[] split = includes.split(",");
- String[] excludesSplit = excludes != null ? excludes.split(",") : null;
- XMLBodyMerge xBodyMerge = new XMLBodyMerge(commonXpath, keyXPath);
- for (Iterator<Model> iter = models.iterator(); iter.hasNext();) {
- Model model = iter.next();
- File moduleDir = new File(modulesDirectory, model.getArtifactId());
- mergeXMLdir(moduleDir, namespaceAware, split, excludesSplit, xBodyMerge);
- }
- if(null!=config){
- mergeXMLdir(config, namespaceAware, split, excludesSplit, xBodyMerge);
- }
-
- if (comparator != null) {
- xBodyMerge.sort(comparator);
- }
- try {
- content.append(xBodyMerge.getContent());
- } catch (Exception e1) {
- throw new MojoExecutionException("XML Merge Exception Occured", e1);
- }
- if (content.length() > 0) {
- context.put("content", content.toString());
- context.put("library", library);
- context.put("models", models);
- try {
- writeParsedTemplate(templates + templateName, context, target);
- } catch (Exception e) {
- throw new MojoExecutionException("Error to process template "
- + templateName + " for files " + includes, e);
- }
-
- }
- }
-
- /**
- * @param moduleDir
- * @param commonXpath
- * @param keyXPath
- * @param namespaceAware
- * @param keySet
- * @param content
- * @param xmls
- * @param split
- * @throws IllegalStateException
- * @throws MojoExecutionException
- */
- private void mergeXMLdir(File moduleDir, boolean namespaceAware, String[] split, String[] excludesSplit, XMLBodyMerge xBodyMerge)
- throws IllegalStateException, MojoExecutionException {
- DirectoryScanner ds = new DirectoryScanner();
- ds.setFollowSymlinks(true);
- ds.setBasedir(moduleDir);
- ds.setIncludes(split);
- ds.setExcludes(excludesSplit);
- ds.addDefaultExcludes();
- ds.scan();
- String[] files = ds.getIncludedFiles();
- for (int i = 0; i < files.length; i++) {
- File moduleFacesConfig = new File(moduleDir, files[i]);
- getLog().info(
- "Process " + files[i] );
- XMLBody configBody = new XMLBody();
- try {
- configBody.loadXML(new FileInputStream(moduleFacesConfig),namespaceAware);
- xBodyMerge.add(configBody);
- } catch (FileNotFoundException e) {
- throw new MojoExecutionException("Could't read file "
- + moduleFacesConfig.getPath(), e);
- } catch (ParsingException e) {
- throw new MojoExecutionException(
- "Error parsing config file "
- + moduleFacesConfig.getPath(), e);
- }
- }
- }
-
- private void unpackArtifact(Artifact artifact, File moduleDir,
- boolean isResource) throws MojoExecutionException {
- try {
- resolver.resolve(artifact, Collections.EMPTY_LIST, localRepository);
- unpack(artifact.getFile(), moduleDir);
- if (isResource) {
- Resource resource = new Resource();
- resource.setDirectory(moduleDir.getPath());
- resource.addExclude("META-INF/faces-config.xml");
- resource.addExclude("META-INF/resources-config.xml");
- resource.addExclude("META-INF/*.taglib.xml");
- resource.addExclude("META-INF/*.component-dependencies.xml");
- resource.addExclude("META-INF/*.tld");
- project.addResource(resource);
-
- }
- } catch (ArtifactResolutionException e) {
- getLog().error("Error with resolve artifact " + artifact, e);
- } catch (ArtifactNotFoundException e) {
- getLog().error("Not found artifact " + artifact, e);
- }
- }
-
- private List<MavenProject> populateReactorProjects() {
- List<MavenProject> projects = new ArrayList<MavenProject>();
- if (reactorProjects != null && reactorProjects.size() > 1) {
- Iterator reactorItr = reactorProjects.iterator();
-
- while (reactorItr.hasNext()) {
- MavenProject reactorProject = (MavenProject) reactorItr.next();
-
- if (reactorProject != null
- && reactorProject.getParent() != null
- && project.getArtifactId().equals(
- reactorProject.getParent().getArtifactId())) {
- String name = reactorProject.getGroupId() + ":"
- + reactorProject.getArtifactId();
- getLog().info("Have reactor project with name " + name);
- projects.add(reactorProject);
- }
- }
- }
- return projects;
- }
-
- /**
- * Unpacks the archive file.
- *
- * @param file
- * File to be unpacked.
- * @param location
- * Location where to put the unpacked files.
- */
- private void unpack(File file, File location) throws MojoExecutionException {
-
- getLog().debug(
- "Unpack file " + file.getAbsolutePath() + " to: "
- + location.getAbsolutePath());
- try {
- location.mkdirs();
-
- UnArchiver unArchiver;
-
- unArchiver = archiverManager.getUnArchiver(file);
-
- unArchiver.setSourceFile(file);
-
- unArchiver.setDestDirectory(location);
-
- unArchiver.setOverwrite(true);
-
- unArchiver.extract();
-
- } catch (Exception e) {
- throw new MojoExecutionException("Error unpacking file: " + file
- + " to: " + location + "\r\n" + e.toString(), e);
- }
- }
-
- private void writePom(Model pom) throws MojoExecutionException {
- MavenXpp3Writer pomWriter = new MavenXpp3Writer();
- try {
- FileWriter out = new FileWriter(generatedPom);
- pomWriter.write(out, pom);
- } catch (IOException e) {
- throw new MojoExecutionException("Error for write generated pom", e);
- }
-
- }
-
- /**
- * @return the archiverManager
- */
- public ArchiverManager getArchiverManager() {
- return this.archiverManager;
- }
-
- /**
- * @param archiverManager
- * the archiverManager to set
- */
- public void setArchiverManager(ArchiverManager archiverManager) {
- this.archiverManager = archiverManager;
- }
-
- /**
- * @return the buildDirectory
- */
- public File getBuildDirectory() {
- return this.buildDirectory;
- }
-
- /**
- * @param buildDirectory
- * the buildDirectory to set
- */
- public void setBuildDirectory(File buildDirectory) {
- this.buildDirectory = buildDirectory;
- }
-
- /**
- * @return the factory
- */
- public org.apache.maven.artifact.factory.ArtifactFactory getFactory() {
- return this.factory;
- }
-
- /**
- * @param factory
- * the factory to set
- */
- public void setFactory(
- org.apache.maven.artifact.factory.ArtifactFactory factory) {
- this.factory = factory;
- }
-
- /**
- * @return the localRepository
- */
- public ArtifactRepository getLocalRepository() {
- return this.localRepository;
- }
-
- /**
- * @param localRepository
- * the localRepository to set
- */
- public void setLocalRepository(ArtifactRepository localRepository) {
- this.localRepository = localRepository;
- }
-
- /**
- * @return the mavenProjectBuilder
- */
- public MavenProjectBuilder getMavenProjectBuilder() {
- return this.mavenProjectBuilder;
- }
-
- /**
- * @param mavenProjectBuilder
- * the mavenProjectBuilder to set
- */
- public void setMavenProjectBuilder(MavenProjectBuilder mavenProjectBuilder) {
- this.mavenProjectBuilder = mavenProjectBuilder;
- }
-
- /**
- * @return the parentProject
- */
- public MavenProject getParentProject() {
- return this.parentProject;
- }
-
- /**
- * @param parentProject
- * the parentProject to set
- */
- public void setParentProject(MavenProject parentProject) {
- this.parentProject = parentProject;
- }
-
- /**
- * @return the reactorProjects
- */
- public List getReactorProjects() {
- return this.reactorProjects;
- }
-
- /**
- * @param reactorProjects
- * the reactorProjects to set
- */
- public void setReactorProjects(List reactorProjects) {
- this.reactorProjects = reactorProjects;
- }
-
- /**
- * @return the resolver
- */
- public org.apache.maven.artifact.resolver.ArtifactResolver getResolver() {
- return this.resolver;
- }
-
- /**
- * @param resolver
- * the resolver to set
- */
- public void setResolver(
- org.apache.maven.artifact.resolver.ArtifactResolver resolver) {
- this.resolver = resolver;
- }
-
-}
Deleted: root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/CreateComponentMojo.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/CreateComponentMojo.java 2009-10-05 16:54:09 UTC (rev 15696)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/CreateComponentMojo.java 2009-10-05 21:26:45 UTC (rev 15697)
@@ -1,148 +0,0 @@
-/**
- * License Agreement.
- *
- * Rich Faces - Natural Ajax for Java Server Faces (JSF)
- *
- * Copyright (C) 2007 Exadel, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation.
- *
- * This library 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 library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-package org.richfaces.builder.mojo;
-
-import java.io.File;
-import java.util.Iterator;
-import java.util.List;
-
-import org.apache.maven.model.Plugin;
-import org.apache.maven.plugin.MojoExecutionException;
-import org.apache.maven.plugin.MojoFailureException;
-import org.apache.velocity.VelocityContext;
-
-/**
- * @author shura
- * @goal create
- *
- */
-public class CreateComponentMojo extends AbstractCDKMojo {
-
- private static final String TEMPLATES_PREFIX = "/component/";
-
- private static final String CONFIG_TEMPLATE = TEMPLATES_PREFIX+"config.xml";
-
- private static final String CLASS_TEMPLATE = TEMPLATES_PREFIX+"UIClass.java";
-
- private static final String RENDERER_TEMPLATE = TEMPLATES_PREFIX+"template.jspx";
-
- /**
- * @parameter expression="${name}"
- * @required
- */
- private String name ;
-
- /**
- * @parameter expression="${markup}"
- */
- private String markup ;
-
- /**
- * @parameter expression="${baseClass}" default-value="javax.faces.component.UIComponentBase"
- */
- private String baseClass ;
-
- /**
- * Directory where the output Java Files will be located.
- *
- * @parameter expression="${project.build.plugins}"
- * @required
- * @readonly
- */
- private List plugins ;
-
- /* (non-Javadoc)
- * @see org.apache.maven.plugin.Mojo#execute()
- */
- public void execute() throws MojoExecutionException, MojoFailureException {
- if(project.getFile()!= null){
- boolean found= false;
- Plugin plugin = null;
- // Search for this plugin in project pom
- for (Iterator iter = plugins.iterator(); iter.hasNext();) {
- plugin = (Plugin) iter.next();
- if("maven-cdk-plugin".equals(plugin.getArtifactId())) {
-
- String groupId;
- if ("3.1.0".compareTo(plugin.getVersion()) > 0) {
- groupId = "org.richfaces.cdk";
- } else {
- groupId = "org.richfaces.cdk";
- }
-
- if (groupId.equals(plugin.getGroupId())) {
- found = true;
- break;
- }
- }
- }
- if(found){
- try {
- createComponent(plugin);
- } catch (Exception e) {
- throw new MojoExecutionException("Error on create component",e);
- }
- } else {
- throw new MojoFailureException("This project is not configured for JSF components generation");
- }
- } else {
- throw new MojoFailureException("Goal 'create' must be run in existing project directory");
- }
-
- }
-
- /**
- * @param plugin
- * @throws Exception
- */
- private void createComponent(Plugin plugin) throws Exception {
- checkLibraryConfig();
- String className = Character.toUpperCase(name.charAt(0))+name.substring(1);
- VelocityContext context = new VelocityContext();
- context.put("name", name);
- context.put("className", className);
- String basePackage = baseClass.substring(0, baseClass.lastIndexOf('.'));
- String baseClassName = baseClass.substring(baseClass.lastIndexOf('.')+1);
- context.put("baseClass", baseClass);
- context.put("basePackage", basePackage);
- context.put("baseClassName", baseClassName);
- String prefix = library.getPrefix();
- context.put("package", prefix);
- context.put("prefix", prefix);
- String path = prefix.replace('.', '/');
- context.put("path", path);
- if(null == markup){
- markup = library.getRenderkits()[0].getMarkup();
- }
- context.put("markup", markup);
- String markupName = Character.toUpperCase(markup.charAt(0))+markup.substring(1);
- context.put("markupName", markupName);
- // Create component configuration file.
- File configFile = new File(componentConfigDirectory,name+".xml");
- writeParsedTemplate(CONFIG_TEMPLATE, context, configFile);
- File classFile = new File(project.getBuild().getSourceDirectory()+"/"+path+"/component/UI"+className+".java");
- writeParsedTemplate(CLASS_TEMPLATE, context, classFile);
- File templFile = new File(templatesDirectory,path+"/"+markup+className+".jspx");
- writeParsedTemplate(RENDERER_TEMPLATE, context, templFile);
- }
-
-}
Deleted: root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/CreateSkinMojo.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/CreateSkinMojo.java 2009-10-05 16:54:09 UTC (rev 15696)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/CreateSkinMojo.java 2009-10-05 21:26:45 UTC (rev 15697)
@@ -1,437 +0,0 @@
-/**
- * License Agreement.
- *
- * Rich Faces - Natural Ajax for Java Server Faces (JSF)
- *
- * Copyright (C) 2007 Exadel, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation.
- *
- * This library 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 library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-package org.richfaces.builder.mojo;
-
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.FileOutputStream;
-import java.io.FileWriter;
-import java.io.InputStream;
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.Enumeration;
-import java.util.List;
-import java.util.jar.JarEntry;
-import java.util.jar.JarFile;
-
-import org.apache.maven.artifact.Artifact;
-import org.apache.maven.artifact.resolver.ArtifactNotFoundException;
-import org.apache.maven.artifact.resolver.ArtifactResolutionException;
-import org.apache.maven.artifact.versioning.VersionRange;
-import org.apache.maven.plugin.MojoExecutionException;
-import org.apache.maven.plugin.MojoFailureException;
-import org.apache.velocity.VelocityContext;
-import org.richfaces.cdk.model.Resource;
-import org.richfaces.cdk.model.ResourceConfig;
-import org.richfaces.cdk.model.io.xpp3.ResourceConfigXpp3Reader;
-import org.richfaces.cdk.model.io.xpp3.ResourceConfigXpp3Writer;
-
-/**
- * This mojo is intended to create new skin add-on within existing project.
- * New resources are added to the project, and existing resource config is modified to include new files.
- * <p><b>Usage</b> <tt>mvn cdk:add-skin -Dname=<skinName> -Dpackage=<skinPackage>. </tt></p>
- * This adds new skin named <skinName> to project resources/META-INF/skins folder.<br/>
- * Skin resources - XCSS files are placed in <skinPackage>.<skinName> package within project resources directory.<br/>
- * If <em>package</em> is not specified, it is set same as groupId.<br/>
- *
- * Following parameters can be used
- * <li><strong>name</strong> - name of the skin. <strong>Required.</strong></li>
- * <li><strong>package</strong> - base package of the skin. If not specified, <em>groupId</em> is used</li>
- * <li><strong>createExt</strong> - if set to true, extended skin files are added</li>
- * <li><strong>baseSkin</strong> - name of base skin</li>
- *
- * @goal add-skin
- * @requiresProject true
- *
- *
-
- * @author Maksim Kaszynski
- *
- */
-public class CreateSkinMojo extends AbstractCreateMojo {
-
- private static final String PROPERTIES = ".skin.properties";
-
- private static final String XCSS = ".xcss";
-
- private static final String EXT_XCSS = "-ext.xcss";
-
- private static final String SRC_MAIN_CONFIG_RESOURCES = "src/main/config/resources";
-
- private static final String META_INF_SKINS = "META-INF/skins/";
-
- /**
- * Name of base package of skin.
- * If it is not set, GroupId is used.
- * @parameter expression="${package}" default-value="${project.groupId}"
- */
- private String packageName;
-
-
- /**
- * Name of skin. Required parameter.
- * @parameter expression="${name}"
- * @required
- */
- private String skinName;
-
-
- /**
- * Name of base skin.
- * @parameter expression="${baseSkin}"
- */
- private String baseSkin;
-
- /**
- * If set to true, a set of extended classes is generated
- * @parameter expression="${createExt}"
- */
- private boolean createExt;
-
-
- /**
- * @parameter expression="${plugin.artifactId}"
- * @readonly
- */
- private String pluginArtifactId;
-
- /**
- * @parameter expression="${plugin.groupId}"
- * @readonly
- */
- private String pluginGroupId;
-
- /**
- * @parameter expression="${plugin.version}"
- * @readonly
- */
- private String pluginVersion;
-
- /** @component */
- private org.apache.maven.artifact.factory.ArtifactFactory artifactFactory;
-
- /** @component */
- private org.apache.maven.artifact.resolver.ArtifactResolver resolver;
-
- /**
- * @parameter expression="${localRepository}"
- * @readonly
- * */
- private org.apache.maven.artifact.repository.ArtifactRepository localRepository;
-
- /**
- *
- */
- private File pluginJarFile = null;
-
- /**
- *
- */
- private File resourceDir;
-
- public void execute() throws MojoExecutionException, MojoFailureException {
-
- getLog().info("Executing " + project);
- getLog().info("Generating Skin " + skinName);
- String fullSkinName = packageName.replace('/', '.') + "." + skinName;
- String shortName = skinName;
- getLog().debug("Skin name is supposed to be " + shortName);
- getLog().debug("Root package " + packageName);
- getLog().debug("Skin package is " + fullSkinName);
-
- //RF-4023
- if (!isValidJavaName(skinName)){
- throw new MojoExecutionException("Invalid skin name '" + skinName + "'. Please type another name.");
- }
-
- if (!isValidPackageName(packageName)) {
- throw new MojoExecutionException("Invalid skin package '" + packageName + "'. Please type another package.");
- }
-
- SkinInfo skinInfoTemplate = new SkinInfo();
- skinInfoTemplate.setShortName(shortName);
- skinInfoTemplate.setPackageName(fullSkinName.toLowerCase());
- skinInfoTemplate.setBaseClassResources(getArchetypeSkinTemplatesFromJar("skin/baseclasses"));
- skinInfoTemplate.setExtClassResources(getArchetypeSkinTemplatesFromJar("skin/extclasses"));
- skinInfoTemplate.setBaseSkin(baseSkin);
- skinInfoTemplate.setPropertyFile(new Resource("skin/skin.properties"));
- skinInfoTemplate.setMasterXcss(new Resource("skin/skin.xcss"));
- skinInfoTemplate.setExtendedXcss(new Resource("skin/skin.xcss"));
- skinInfoTemplate.setUseExt(createExt);
- generateSkin(skinInfoTemplate);
-
-
- getLog().info("Generating Skin successful");
-
- }
-
- private void copyJarResource(Resource template, Resource skinResource, File baseDir) throws Exception{
- File newFile = new File(baseDir, skinResource.getPath());
- if (newFile.exists()) {
- getLog().debug("File " + newFile + " already exists. Skipping.");
- } else {
- try {
- File dir = newFile.getParentFile();
- if (!dir.exists()) {
- dir.mkdirs();
- }
-
- InputStream inputStream = getClass().getClassLoader().getResourceAsStream(template.getPath());
- FileOutputStream fileOutputStream = new FileOutputStream(newFile);
- byte [] buffer = new byte[1024];
- int read = -1;
- while((read = inputStream.read(buffer)) != -1) {
- fileOutputStream.write(buffer, 0, read);
- }
- inputStream.close();
- fileOutputStream.close();
-
- } catch (Exception e) {
- throw new MojoExecutionException("Unable to write file " + newFile, e);
- }
- }
- }
-
- private List<Resource> filterComponentSkinTemplates(List<Resource> jarTemplates, SkinInfo skinInfo, File resourceDir) throws MojoExecutionException {
- List<Resource> newResources = new ArrayList<Resource>(jarTemplates.size());
- for (Resource jarTemplate : jarTemplates) {
- Resource newResource = new Resource();
- String jarTemplateName = jarTemplate.getName();
- int indexOfSlash = jarTemplateName.lastIndexOf('/');
- if (indexOfSlash > 0) {
- jarTemplateName = jarTemplateName.substring(indexOfSlash + 1);
- }
- String resourceName = skinInfo.getPackageName().replace('.', '/') + "/css/" + jarTemplateName;
- newResource.setName(resourceName);
- newResource.setPath(resourceName);
- newResources.add(newResource);
- try {
- filterJarResource(jarTemplate, newResource, resourceDir, new VelocityContext());
- } catch (Exception e) {
- throw new MojoExecutionException("An exception occured while filtering resource " + jarTemplate + " into " + newResource, e);
- }
- }
- return newResources;
- }
-
-
- private SkinInfo cloneSkinInfo(SkinInfo skinInfo) throws MojoExecutionException {
- try {
- return (SkinInfo) skinInfo.clone();
- } catch(CloneNotSupportedException exception) {
- throw new MojoExecutionException("Dunno why.", exception);
- }
- }
-
- private void generateSkin(SkinInfo skinInfoTemplate) throws MojoExecutionException, MojoFailureException{
- resourceDir = new File(project.getBasedir(), SRC_MAIN_RESOURCES);
- getLog().debug("Resources directory is supposed to be" + resourceDir);
- checkAndCreateDirectory(resourceDir);
-
- String fullName = skinInfoTemplate.getPackageName();
- String packageFolder = fullName.replace('.', '/');
- getLog().debug("Relative path to package is " + packageFolder);
-
- VelocityContext velocityMasterContext = new VelocityContext();
- velocityMasterContext.put("mojo", this);
- velocityMasterContext.put("packagePath", packageFolder);
- velocityMasterContext.put("name", skinInfoTemplate.getShortName());
-
- if (baseSkin != null) {
- velocityMasterContext.put("baseSkin", baseSkin);
- }
-
- SkinInfo effectiveSkinInfo = cloneSkinInfo(skinInfoTemplate);
- List<Resource> allResources = new ArrayList<Resource>();
- velocityMasterContext.put("skinInfo", effectiveSkinInfo);
-
- //Copy basic classes, and list them
-
- List<Resource> baseClassResources = filterComponentSkinTemplates(skinInfoTemplate.getBaseClassResources(), skinInfoTemplate, resourceDir);
-
- effectiveSkinInfo.setBaseClassResources(baseClassResources);
- allResources.addAll(baseClassResources);
- velocityMasterContext.put("baseClassResources", baseClassResources);
-
- //Generate Master XCSS file
- Resource masterXcss = new Resource(META_INF_SKINS + effectiveSkinInfo.getShortName() + XCSS);
- effectiveSkinInfo.setMasterXcss(masterXcss);
- allResources.add(masterXcss);
- try {
- generateMasterXCSSFile(skinInfoTemplate.getMasterXcss(), effectiveSkinInfo.getMasterXcss(), effectiveSkinInfo.getBaseClassResources());
- } catch(Exception e) {
- throw new MojoExecutionException("Unable to generate master.xcss file " + masterXcss, e);
- }
-
- if (createExt) {
- //Copy Ext classes, if needed
- List<Resource> extClassResources = filterComponentSkinTemplates(skinInfoTemplate.getExtClassResources(), skinInfoTemplate, resourceDir);
- effectiveSkinInfo.setExtClassResources(extClassResources);
- allResources.addAll(extClassResources);
- velocityMasterContext.put("extClassResources", extClassResources);
-
- //Generate Master EXT XCSS file
- Resource masterExtXcss = new Resource(META_INF_SKINS + effectiveSkinInfo.getShortName() + EXT_XCSS);
- effectiveSkinInfo.setExtendedXcss(masterExtXcss);
- allResources.add(masterExtXcss);
- try {
- generateMasterXCSSFile(skinInfoTemplate.getExtendedXcss(), effectiveSkinInfo.getExtendedXcss(), effectiveSkinInfo.getExtClassResources());
-
- } catch(Exception e) {
- throw new MojoExecutionException("Unable to generate master.xcss file " + masterExtXcss, e);
- }
- }
-
- Resource properties = new Resource(META_INF_SKINS + effectiveSkinInfo.getShortName() + PROPERTIES);
- effectiveSkinInfo.setPropertyFile(properties);
- try {
- filterJarResource(skinInfoTemplate.getPropertyFile(), properties, resourceDir, velocityMasterContext);
- } catch (Exception e) {
- throw new MojoExecutionException("An exception occured while filtering resource " + skinInfoTemplate.getPropertyFile() + " into " + properties, e);
- }
-
-
- File resourceConfigDir = new File(project.getBasedir(), SRC_MAIN_CONFIG_RESOURCES);
- checkAndCreateDirectory(resourceConfigDir);
- File resourceConfigFile = new File(resourceConfigDir, effectiveSkinInfo.getShortName() + "-resources.xml");;
- try {
- addToResourceConfig(allResources, resourceConfigFile);
- } catch (Exception e) {
- throw new MojoExecutionException("Unable to register newly added resources in resource-config.xml", e);
- }
-
-
- packageArchetypeResourcesToBaseDir("src/main/java", effectiveSkinInfo, true);
- packageArchetypeResourcesToBaseDir("src/main/resources", effectiveSkinInfo, false);
- packageArchetypeResourcesToBaseDir("src/test/java", effectiveSkinInfo, true);
-
-
-
- }
-
- private List<Resource> packageArchetypeResourcesToBaseDir(String prefix, final SkinInfo skinInfo, boolean filter) throws MojoExecutionException{
- String archetypePrefix = "skin/archetype/" + prefix;
- List<Resource> archetypeResources = getArchetypeSkinTemplatesFromJar(archetypePrefix);
- List<Resource> filteredResources = new ArrayList<Resource>(archetypeResources.size());
- String newPrefix = prefix;
- String packageFolder = skinInfo.getPackageName().replace('.', '/');
- if (packageFolder != null) {
- newPrefix = prefix + "/" + packageFolder;
- }
-
-
- @SuppressWarnings("serial") VelocityContext velocityContext = new VelocityContext() {
- {
- put("skinInfo", skinInfo);
- }
- };
- for (Resource resource : archetypeResources) {
- String archetypePath = resource.getPath();
- String pathSuffix = archetypePath.substring(archetypePrefix.length());
- String newPath = newPrefix + pathSuffix;
-
- Resource newResource = new Resource(newPath);
-
- try {
- if (filter) {
- filterJarResource(resource, newResource, project.getBasedir(), velocityContext);
- } else {
- copyJarResource(resource, newResource, project.getBasedir());
- }
- } catch (Exception e) {
- throw new MojoExecutionException("Unable to process archetype file " + resource.getPath(), e);
- }
-
- filteredResources.add(newResource);
- }
- return filteredResources;
- }
-
- private void generateMasterXCSSFile(Resource template, Resource target, List<Resource> includedResources) throws Exception {
- VelocityContext context = new VelocityContext();
- context.put("mojo", this);
- context.put("includedResources", includedResources);
- filterJarResource(template, target, resourceDir, context);
- }
-
- private Resource fromJarEntry(JarEntry entry) {
- Resource resource = new Resource();
- resource.setName(entry.getName());
- resource.setPath(entry.getName());
- return resource;
- }
-
- private List<Resource> getArchetypeSkinTemplatesFromJar(String prefix) throws MojoExecutionException{
- try {
- if (pluginJarFile == null) {
- pluginJarFile = getPluginArtifactJar();
- }
- List <Resource> fileNames = new ArrayList<Resource>();
- JarFile jar = new JarFile(pluginJarFile);
- Enumeration<JarEntry> entries = jar.entries();
- while(entries.hasMoreElements()) {
- JarEntry jarEntry = entries.nextElement();
- String jarEntryName = jarEntry.getName();
- if(jarEntryName.startsWith(prefix) && !jarEntry.isDirectory()) {
- fileNames.add(fromJarEntry(jarEntry));
- }
- }
- return fileNames;
- } catch (Exception e) {
- throw new MojoExecutionException("Unable to list templates within Plugin Jar file");
- }
- }
-
- private File getPluginArtifactJar() throws ArtifactResolutionException, ArtifactNotFoundException {
- Artifact pluginArtifact =
- artifactFactory.createPluginArtifact(pluginGroupId, pluginArtifactId, VersionRange.createFromVersion(pluginVersion));
-
- resolver.resolve(pluginArtifact, Collections.emptyList(), localRepository);
-
- return pluginArtifact.getFile();
- }
-
- private void addToResourceConfig(List<Resource> resources, File resourceConfigFile) throws Exception{
- ResourceConfig resourceConfig = null;
-
- if (resourceConfigFile.exists()) {
- resourceConfig = new ResourceConfigXpp3Reader().read(new FileInputStream(resourceConfigFile));
- }
-
- if (resourceConfig == null) {
- resourceConfig = new ResourceConfig();
- resourceConfig.setResources(resources);
- } else {
- for (Resource resource : resources) {
- if (!resourceConfig.containsResource(resource)) {
- resourceConfig.addResource(resource);
- }
- }
- }
-
-
-
- new ResourceConfigXpp3Writer().write(new FileWriter(resourceConfigFile), resourceConfig);
-
- }
-
-}
Deleted: root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/CreateThemeMojo.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/CreateThemeMojo.java 2009-10-05 16:54:09 UTC (rev 15696)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/main/java/org/richfaces/builder/mojo/CreateThemeMojo.java 2009-10-05 21:26:45 UTC (rev 15697)
@@ -1,158 +0,0 @@
-/**
- * License Agreement.
- *
- * Rich Faces - Natural Ajax for Java Server Faces (JSF)
- *
- * Copyright (C) 2007 Exadel, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation.
- *
- * This library 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 library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-package org.richfaces.builder.mojo;
-
-import java.io.File;
-import java.util.Locale;
-
-import org.apache.maven.plugin.MojoExecutionException;
-import org.apache.maven.plugin.MojoFailureException;
-import org.apache.velocity.VelocityContext;
-import org.richfaces.cdk.model.Resource;
-
-/**
- * This mojo is intended to create new theme within existing project.
- * <p><b>Usage</b> <tt>mvn cdk:add-theme -Dname=<themeName> [ -Dpackage=<themePackage> ]</tt></p>
- * This adds new theme named <themeName> to project resources/META-INF/themes folder.<br/>
- * If <em>package</em> is not specified, it is set same as groupId.<br/>
- *
- * Following parameters can be used
- * <li><strong>name</strong> - name of the theme. <strong>Required.</strong></li>
- * <li><strong>package</strong> - base package of the theme. If not specified, <em>groupId</em> is used</li>
- *
- * @goal add-theme
- * @requiresProject true
- *
- * @author Nick Belaevski
- */
-public class CreateThemeMojo extends AbstractCreateMojo {
-
- private static final String XCSS = ".xcss";
-
- private static final String META_INF_THEMES = "META-INF/themes/";
-
- private static final String XCSS_THEMES_PACKAGE = "/renderkit/html/css";
-
- private static final String THEME_PROPERTIES = ".theme.properties";
-
- private static final String RENDERKIT_THEMES = "renderkit.html";
-
- /**
- * Name of base package of theme.
- * If it is not set, GroupId is used.
- * @parameter expression="${package}" default-value="${project.groupId}"
- */
- private String packageName;
-
-
- /**
- * Name of theme. Required parameter.
- * @parameter expression="${name}"
- * @required
- */
- private String themeName;
-
- private String generateRendererName(String themeName) {
- StringBuilder rendererTypeBuilder = new StringBuilder();
- rendererTypeBuilder.append(Character.toUpperCase(themeName.charAt(0)));
- rendererTypeBuilder.append(themeName.subSequence(1, themeName.length()));
- rendererTypeBuilder.append("Renderer");
- return rendererTypeBuilder.toString();
- }
-
- private void generateTheme(String packageName, String themeName) throws MojoExecutionException, MojoFailureException {
- Resource themeProperties = new Resource("theme/themes/theme.properties");
- Resource themeXCSS = new Resource("theme/css/theme.xcss");
- Resource themeConfig = new Resource("theme/component/theme.xml");
- Resource themeTemplate = new Resource("theme/template/theme.jspx");
-
- File resourceDir = new File(project.getBasedir(), SRC_MAIN_RESOURCES);
-
- String packagePath = packageName.replace('.', '/');
- String xcssPackagePath = packagePath + XCSS_THEMES_PACKAGE;
- String rendererName = generateRendererName(themeName);
- String rendererType = packageName + '.' + rendererName;
- String rendererClassName = packageName + '.' + RENDERKIT_THEMES + '.' + rendererName;
-
- getLog().debug("Relative path to package is " + packagePath);
-
- VelocityContext velocityMasterContext = new VelocityContext();
- velocityMasterContext.put("packagePath", packagePath);
- velocityMasterContext.put("xcssPackagePath", xcssPackagePath);
- velocityMasterContext.put("name", themeName);
- velocityMasterContext.put("rendererType", rendererType);
- velocityMasterContext.put("rendererClassName", rendererClassName);
-
- Resource properties = new Resource(META_INF_THEMES + themeName + THEME_PROPERTIES);
- try {
- filterJarResource(themeProperties, properties, resourceDir, velocityMasterContext);
- } catch (Exception e) {
- throw new MojoExecutionException("An exception occured while filtering resource " + themeProperties + " into " + properties, e);
- }
-
- Resource xcss = new Resource(xcssPackagePath + '/' + themeName + XCSS);
- try {
- filterJarResource(themeXCSS, xcss, resourceDir, velocityMasterContext);
- } catch (Exception e) {
- throw new MojoExecutionException("An exception occured while filtering resource " + themeXCSS + " into " + xcss, e);
- }
-
- File configDir = new File(project.getBasedir(), "src/main/config/component");
- Resource config = new Resource(themeName + ".xml");
- try {
- filterJarResource(themeConfig, config, configDir, velocityMasterContext);
- } catch (Exception e) {
- throw new MojoExecutionException("An exception occured while filtering resource " + themeConfig + " into " + config, e);
- }
-
- File templateDir = new File(project.getBasedir(), "src/main/templates");
- Resource template = new Resource(packagePath + '/' + themeName + ".jspx");
- try {
- filterJarResource(themeTemplate, template, templateDir, velocityMasterContext);
- } catch (Exception e) {
- throw new MojoExecutionException("An exception occured while filtering resource " + themeTemplate + " into " + template, e);
- }
- }
-
- public void execute() throws MojoExecutionException, MojoFailureException {
- getLog().info("Executing " + project);
- getLog().info("Generating Theme " + themeName);
-
- String themePackageName = packageName.replace('/', '.').toLowerCase(Locale.US);
- String shortName = themeName;
- getLog().debug("Root package " + packageName);
- getLog().debug("Theme package is " + themePackageName);
-
- if (!isValidJavaName(themeName)){
- throw new MojoExecutionException("Invalid theme name '" + themeName + "'. Please type another name.");
- }
-
- if (!isValidPackageName(packageName)) {
- throw new MojoExecutionException("Invalid theme package '" + packageName + "'. Please type another package.");
- }
-
- generateTheme(themePackageName, shortName);
-
- getLog().info("Generating Theme successful");
- }
-
-}
15 years, 2 months
JBoss Rich Faces SVN: r15696 - in branches/community/3.3.X: cdk and 219 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2009-10-05 12:54:09 -0400 (Mon, 05 Oct 2009)
New Revision: 15696
Modified:
branches/community/3.3.X/cdk/generator/pom.xml
branches/community/3.3.X/cdk/maven-archetype-jsf-component/pom.xml
branches/community/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
branches/community/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml
branches/community/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
branches/community/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml
branches/community/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
branches/community/3.3.X/cdk/maven-archetype-seam-app/pom.xml
branches/community/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
branches/community/3.3.X/cdk/maven-archetype-theme/pom.xml
branches/community/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
branches/community/3.3.X/cdk/maven-cdk-plugin/pom.xml
branches/community/3.3.X/cdk/maven-javascript-plugin/pom.xml
branches/community/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml
branches/community/3.3.X/cdk/pom.xml
branches/community/3.3.X/cdk/richfaces-facelets/pom.xml
branches/community/3.3.X/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml
branches/community/3.3.X/docs/cdkguide/en/pom.xml
branches/community/3.3.X/docs/cdkguide/pom.xml
branches/community/3.3.X/docs/common-resources/en/pom.xml
branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
branches/community/3.3.X/docs/common-resources/pom.xml
branches/community/3.3.X/docs/faq/en/pom.xml
branches/community/3.3.X/docs/faq/pom.xml
branches/community/3.3.X/docs/highlight/pom.xml
branches/community/3.3.X/docs/migrationguide/en/pom.xml
branches/community/3.3.X/docs/migrationguide/pom.xml
branches/community/3.3.X/docs/photo_album_app_guide/en/pom.xml
branches/community/3.3.X/docs/photo_album_app_guide/pom.xml
branches/community/3.3.X/docs/pom.xml
branches/community/3.3.X/docs/userguide/en/pom.xml
branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
branches/community/3.3.X/docs/userguide/pom.xml
branches/community/3.3.X/examples/photoalbum/assembly/pom.xml
branches/community/3.3.X/examples/photoalbum/pom.xml
branches/community/3.3.X/examples/photoalbum/source/ear/pom.xml
branches/community/3.3.X/examples/photoalbum/source/ejb/pom.xml
branches/community/3.3.X/examples/photoalbum/source/pom.xml
branches/community/3.3.X/examples/photoalbum/source/web/pom.xml
branches/community/3.3.X/examples/photoalbum/tests/pom.xml
branches/community/3.3.X/extensions/gwt/pom.xml
branches/community/3.3.X/extensions/pom.xml
branches/community/3.3.X/extensions/seam/pom.xml
branches/community/3.3.X/extensions/trinidad/pom.xml
branches/community/3.3.X/framework/api/pom.xml
branches/community/3.3.X/framework/impl/pom.xml
branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/ResourceLifecycle.java
branches/community/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java
branches/community/3.3.X/framework/jsf-test/pom.xml
branches/community/3.3.X/framework/pom.xml
branches/community/3.3.X/framework/test/pom.xml
branches/community/3.3.X/pom.xml
branches/community/3.3.X/samples/beanValidatorSample/pom.xml
branches/community/3.3.X/samples/calendar-sample/pom.xml
branches/community/3.3.X/samples/colorPickerDemo/pom.xml
branches/community/3.3.X/samples/columnsDemo/pom.xml
branches/community/3.3.X/samples/combobox-sample/pom.xml
branches/community/3.3.X/samples/contextMenuDemo/pom.xml
branches/community/3.3.X/samples/createProject.sh
branches/community/3.3.X/samples/darkX/pom.xml
branches/community/3.3.X/samples/dataFilterSliderDemo/pom.xml
branches/community/3.3.X/samples/dataTableDemo/pom.xml
branches/community/3.3.X/samples/datascroller-sample/pom.xml
branches/community/3.3.X/samples/dragDropDemo/pom.xml
branches/community/3.3.X/samples/dropdownmenu-sample/pom.xml
branches/community/3.3.X/samples/editor-sample/pom.xml
branches/community/3.3.X/samples/editorSeam-sample/pom.xml
branches/community/3.3.X/samples/effect-sample/pom.xml
branches/community/3.3.X/samples/extendedDataTable-sample/pom.xml
branches/community/3.3.X/samples/fileUploadDemo/pom.xml
branches/community/3.3.X/samples/functions-demo/pom.xml
branches/community/3.3.X/samples/glassX/pom.xml
branches/community/3.3.X/samples/gmap-sample/pom.xml
branches/community/3.3.X/samples/hotKey-sample/pom.xml
branches/community/3.3.X/samples/inplaceInput-sample/pom.xml
branches/community/3.3.X/samples/inplaceSelect-sample/pom.xml
branches/community/3.3.X/samples/inputNumberSliderDemo/pom.xml
branches/community/3.3.X/samples/inputNumberSpinnerDemo/pom.xml
branches/community/3.3.X/samples/jQuery-sample/pom.xml
branches/community/3.3.X/samples/jira-data/pom.xml
branches/community/3.3.X/samples/laguna/pom.xml
branches/community/3.3.X/samples/layout-sample/pom.xml
branches/community/3.3.X/samples/listShuttleDemo/pom.xml
branches/community/3.3.X/samples/local-value-demo/pom.xml
branches/community/3.3.X/samples/mediaOutput/pom.xml
branches/community/3.3.X/samples/modalpanel-sample/pom.xml
branches/community/3.3.X/samples/orderingListDemo/pom.xml
branches/community/3.3.X/samples/panel-sample/pom.xml
branches/community/3.3.X/samples/panelbar-sample/pom.xml
branches/community/3.3.X/samples/panelmenu-sample/pom.xml
branches/community/3.3.X/samples/pickList-sample/pom.xml
branches/community/3.3.X/samples/pom.xml
branches/community/3.3.X/samples/progressBarDemo/pom.xml
branches/community/3.3.X/samples/queue-sample/pom.xml
branches/community/3.3.X/samples/rich-message-demo/pom.xml
branches/community/3.3.X/samples/richfaces-art-datatable/pom.xml
branches/community/3.3.X/samples/richfaces-demo/pom.xml
branches/community/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml
branches/community/3.3.X/samples/richfaces-ear-demo/pom.xml
branches/community/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml
branches/community/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml
branches/community/3.3.X/samples/scrollableDataTableDemo/pom.xml
branches/community/3.3.X/samples/seamEAR/ear/pom.xml
branches/community/3.3.X/samples/seamEAR/ejbs/pom.xml
branches/community/3.3.X/samples/seamEAR/pom.xml
branches/community/3.3.X/samples/seamEAR/primary-source/pom.xml
branches/community/3.3.X/samples/seamEAR/projects/logging/pom.xml
branches/community/3.3.X/samples/seamEAR/projects/pom.xml
branches/community/3.3.X/samples/seamEAR/wars/pom.xml
branches/community/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml
branches/community/3.3.X/samples/seamIntegration/pom.xml
branches/community/3.3.X/samples/separator-sample/pom.xml
branches/community/3.3.X/samples/simpleTogglePanel-sample/pom.xml
branches/community/3.3.X/samples/skins/pom.xml
branches/community/3.3.X/samples/sortingFilteringDemo/pom.xml
branches/community/3.3.X/samples/state-sample/pom.xml
branches/community/3.3.X/samples/stdcomponents-sample/pom.xml
branches/community/3.3.X/samples/suggestionbox-sample/pom.xml
branches/community/3.3.X/samples/tabPanelDemo/pom.xml
branches/community/3.3.X/samples/themes/pom.xml
branches/community/3.3.X/samples/togglePanel-sample/pom.xml
branches/community/3.3.X/samples/tomahawkCompability/pom.xml
branches/community/3.3.X/samples/toolBarDemo/pom.xml
branches/community/3.3.X/samples/tooltip-sample/pom.xml
branches/community/3.3.X/samples/tree-demo/pom.xml
branches/community/3.3.X/samples/treeModelDemo/pom.xml
branches/community/3.3.X/samples/violetRays/pom.xml
branches/community/3.3.X/samples/virtualEarth-sample/pom.xml
branches/community/3.3.X/sandbox/api/pom.xml
branches/community/3.3.X/sandbox/cdk/pom.xml
branches/community/3.3.X/sandbox/impl/pom.xml
branches/community/3.3.X/sandbox/pom.xml
branches/community/3.3.X/sandbox/samples/dialog-window-sample/pom.xml
branches/community/3.3.X/sandbox/samples/editorOld-sample/pom.xml
branches/community/3.3.X/sandbox/samples/fileUploadPOC/pom.xml
branches/community/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml
branches/community/3.3.X/sandbox/samples/panel2-sample/pom.xml
branches/community/3.3.X/sandbox/samples/pom.xml
branches/community/3.3.X/sandbox/samples/rex-demo/pom.xml
branches/community/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml
branches/community/3.3.X/sandbox/ui/create.bat
branches/community/3.3.X/sandbox/ui/create.sh
branches/community/3.3.X/sandbox/ui/dialog-window/pom.xml
branches/community/3.3.X/sandbox/ui/editorOld/pom.xml
branches/community/3.3.X/sandbox/ui/panel2/pom.xml
branches/community/3.3.X/sandbox/ui/pom.xml
branches/community/3.3.X/sandbox/ui/rex-button/pom.xml
branches/community/3.3.X/sandbox/ui/rex-messageBox/pom.xml
branches/community/3.3.X/sandbox/ui/rex-resizable/pom.xml
branches/community/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml
branches/community/3.3.X/sandbox/ui/sortableHeader/pom.xml
branches/community/3.3.X/sandbox/ui/treeTable/pom.xml
branches/community/3.3.X/test-applications/ajaxTest/pom.xml
branches/community/3.3.X/test-applications/automator/pom.xml
branches/community/3.3.X/test-applications/facelets/pom.xml
branches/community/3.3.X/test-applications/jsp/pom.xml
branches/community/3.3.X/test-applications/pom.xml
branches/community/3.3.X/test-applications/regressionArea/pom.xml
branches/community/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml
branches/community/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml
branches/community/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml
branches/community/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml
branches/community/3.3.X/test-applications/richfaces-docs/pom.xml
branches/community/3.3.X/test-applications/seamApp/pom.xml
branches/community/3.3.X/test-applications/seleniumTest/pom.xml
branches/community/3.3.X/test-applications/seleniumTest/richfaces/pom.xml
branches/community/3.3.X/test-applications/seleniumTest/samples/pom.xml
branches/community/3.3.X/test-applications/test-jsp/pom.xml
branches/community/3.3.X/ui/assembly/pom.xml
branches/community/3.3.X/ui/beanValidator/pom.xml
branches/community/3.3.X/ui/calendar/pom.xml
branches/community/3.3.X/ui/colorPicker/pom.xml
branches/community/3.3.X/ui/columns/pom.xml
branches/community/3.3.X/ui/combobox/pom.xml
branches/community/3.3.X/ui/componentControl/pom.xml
branches/community/3.3.X/ui/contextMenu/pom.xml
branches/community/3.3.X/ui/core/pom.xml
branches/community/3.3.X/ui/create.bat
branches/community/3.3.X/ui/dataFilterSlider/pom.xml
branches/community/3.3.X/ui/dataTable/pom.xml
branches/community/3.3.X/ui/datascroller/pom.xml
branches/community/3.3.X/ui/drag-drop/pom.xml
branches/community/3.3.X/ui/dropdown-menu/pom.xml
branches/community/3.3.X/ui/editor/pom.xml
branches/community/3.3.X/ui/effect/pom.xml
branches/community/3.3.X/ui/extendedDataTable/pom.xml
branches/community/3.3.X/ui/fileUpload/pom.xml
branches/community/3.3.X/ui/functions/pom.xml
branches/community/3.3.X/ui/gmap/pom.xml
branches/community/3.3.X/ui/hotKey/pom.xml
branches/community/3.3.X/ui/inplaceInput/pom.xml
branches/community/3.3.X/ui/inplaceSelect/pom.xml
branches/community/3.3.X/ui/inputnumber-slider/pom.xml
branches/community/3.3.X/ui/inputnumber-spinner/pom.xml
branches/community/3.3.X/ui/insert/pom.xml
branches/community/3.3.X/ui/jQuery/pom.xml
branches/community/3.3.X/ui/layout/pom.xml
branches/community/3.3.X/ui/listShuttle/pom.xml
branches/community/3.3.X/ui/menu-components/pom.xml
branches/community/3.3.X/ui/message/pom.xml
branches/community/3.3.X/ui/modal-panel/pom.xml
branches/community/3.3.X/ui/orderingList/pom.xml
branches/community/3.3.X/ui/paint2D/pom.xml
branches/community/3.3.X/ui/panel/pom.xml
branches/community/3.3.X/ui/panelbar/pom.xml
branches/community/3.3.X/ui/panelmenu/pom.xml
branches/community/3.3.X/ui/pickList/pom.xml
branches/community/3.3.X/ui/pom.xml
branches/community/3.3.X/ui/progressBAR/pom.xml
branches/community/3.3.X/ui/scrollableDataTable/pom.xml
branches/community/3.3.X/ui/separator/pom.xml
branches/community/3.3.X/ui/simpleTogglePanel/pom.xml
branches/community/3.3.X/ui/spacer/pom.xml
branches/community/3.3.X/ui/state/pom.xml
branches/community/3.3.X/ui/suggestionbox/pom.xml
branches/community/3.3.X/ui/tabPanel/pom.xml
branches/community/3.3.X/ui/togglePanel/pom.xml
branches/community/3.3.X/ui/toolBar/pom.xml
branches/community/3.3.X/ui/tooltip/pom.xml
branches/community/3.3.X/ui/tree/pom.xml
branches/community/3.3.X/ui/treeModel/pom.xml
branches/community/3.3.X/ui/treeTable/pom.xml
branches/community/3.3.X/ui/virtualEarth/pom.xml
Log:
increase minor version number
Modified: branches/community/3.3.X/cdk/generator/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/generator/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/generator/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: branches/community/3.3.X/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsf-component/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/maven-archetype-jsf-component/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: branches/community/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: branches/community/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: branches/community/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/community/3.3.X/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-seam-app/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/maven-archetype-seam-app/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.2-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.3-SNAPSHOT</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.3.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.3.GA/jboss-4.2.3.GA/server/default/</jbossDeployDir>
Modified: branches/community/3.3.X/cdk/maven-archetype-theme/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-theme/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/maven-archetype-theme/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-theme</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>maven-archetype-theme</name>
<build>
Modified: branches/community/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -41,12 +41,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<!-- Required for JSF -->
Modified: branches/community/3.3.X/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-cdk-plugin/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/maven-cdk-plugin/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
Modified: branches/community/3.3.X/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-javascript-plugin/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/maven-javascript-plugin/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: branches/community/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,7 +3,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +12,7 @@
<artifactId>maven-resource-dependency-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>maven-resource-dependency-plugin</name>
@@ -40,7 +40,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/community/3.3.X/cdk/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: branches/community/3.3.X/cdk/richfaces-facelets/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/richfaces-facelets/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/richfaces-facelets/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,13 +4,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>richfaces-facelets</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>maven-archetype-rf-facelets</name>
<packaging>maven-archetype</packaging>
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<build>
Modified: branches/community/3.3.X/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -28,7 +28,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: branches/community/3.3.X/docs/cdkguide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/cdkguide/en/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/cdkguide/en/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: branches/community/3.3.X/docs/cdkguide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/cdkguide/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/cdkguide/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: branches/community/3.3.X/docs/common-resources/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/common-resources/en/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Documentation common resources (${translation})</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
Modified: branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,7 +4,7 @@
<artifactId>richfacesguide-archetype</artifactId>
<packaging>maven-archetype</packaging>
<name>richfacesguide-archetype</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<extensions>
<extension>
Modified: branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.richfacesguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces Guide Template</name>
Modified: branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>richfacesguide</name>
<description>Richfaces Guide Template</description>
<pluginRepositories>
Modified: branches/community/3.3.X/docs/common-resources/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/common-resources/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: branches/community/3.3.X/docs/faq/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/faq/en/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/faq/en/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
<build>
Modified: branches/community/3.3.X/docs/faq/pom.xml
===================================================================
--- branches/community/3.3.X/docs/faq/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/faq/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<!--repositories>
Modified: branches/community/3.3.X/docs/highlight/pom.xml
===================================================================
--- branches/community/3.3.X/docs/highlight/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/highlight/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: branches/community/3.3.X/docs/migrationguide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/migrationguide/en/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/migrationguide/en/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
<build>
Modified: branches/community/3.3.X/docs/migrationguide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/migrationguide/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/migrationguide/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: branches/community/3.3.X/docs/photo_album_app_guide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/en/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/photo_album_app_guide/en/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.photo_album_app_guide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>RichFaces Photo Album application Guide (${translation})</name>
Modified: branches/community/3.3.X/docs/photo_album_app_guide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/photo_album_app_guide/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,13 +4,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
<packaging>pom</packaging>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>RichFaces Photo Album Application Guide</name>
<description>RichFaces Photo Album Application Guide</description>
<pluginRepositories>
Modified: branches/community/3.3.X/docs/pom.xml
===================================================================
--- branches/community/3.3.X/docs/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: branches/community/3.3.X/docs/userguide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/userguide/en/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -335,7 +335,7 @@
<para>Now you have everything to create the project using the "maven-archetype-jsfwebapp" archetype. Create a folder that will house your project and run the this command in it:</para>
<programlisting role="XML" ><![CDATA[...
-mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.2-SNAPSHOT -DgroupId=org.docs.richfaces -DartifactId=jsf-app
+mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.3-SNAPSHOT -DgroupId=org.docs.richfaces -DartifactId=jsf-app
...]]></programlisting>
@@ -461,17 +461,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
...]]></programlisting>
Modified: branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3839,7 +3839,7 @@
<listitem>
<para>
<code>archetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.3.2-SNAPSHOT"</code>
+ <code>"3.3.3-SNAPSHOT"</code>
</para>
</listitem>
<listitem>
@@ -4080,7 +4080,7 @@
follow the steps described in the previous section.</para>
<para>This command will be used to create a template of the new skin project. </para>
<programlisting role="XML"><![CDATA[
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-plug-n-skin -DarchetypeVersion=3.3.2-SNAPSHOT -DartifactId=P-n-S -DgroupId=GROUPID -Dversion=1.0.-SNAPSHOT
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-plug-n-skin -DarchetypeVersion=3.3.3-SNAPSHOT -DartifactId=P-n-S -DgroupId=GROUPID -Dversion=1.0.-SNAPSHOT
]]></programlisting>
<para> Now you can browse the "P-n-S" folder to view what files and
folders were created there. </para>
Modified: branches/community/3.3.X/docs/userguide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/docs/userguide/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: branches/community/3.3.X/examples/photoalbum/assembly/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/assembly/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/examples/photoalbum/assembly/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/community/3.3.X/examples/photoalbum/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/examples/photoalbum/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,7 +4,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
<packaging>pom</packaging>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>Photoalbum Demo Application Root</name>
<modules>
Modified: branches/community/3.3.X/examples/photoalbum/source/ear/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/ear/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/examples/photoalbum/source/ear/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/community/3.3.X/examples/photoalbum/source/ejb/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/ejb/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/examples/photoalbum/source/ejb/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/community/3.3.X/examples/photoalbum/source/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/examples/photoalbum/source/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -8,7 +8,7 @@
<artifactId>photoalbum</artifactId>
<packaging>pom</packaging>
<name>${appName}</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<distributionManagement>
<downloadUrl>
Modified: branches/community/3.3.X/examples/photoalbum/source/web/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/web/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/examples/photoalbum/source/web/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/community/3.3.X/examples/photoalbum/tests/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/tests/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/examples/photoalbum/tests/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/community/3.3.X/extensions/gwt/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/gwt/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/extensions/gwt/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: branches/community/3.3.X/extensions/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/extensions/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: branches/community/3.3.X/extensions/seam/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/seam/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/extensions/seam/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: branches/community/3.3.X/extensions/trinidad/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/trinidad/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/extensions/trinidad/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: branches/community/3.3.X/framework/api/pom.xml
===================================================================
--- branches/community/3.3.X/framework/api/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/framework/api/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
<name>Java Server Faces AJAX framework API</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: branches/community/3.3.X/framework/impl/pom.xml
===================================================================
--- branches/community/3.3.X/framework/impl/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/framework/impl/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,13 +3,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<resources>
<resource>
@@ -161,7 +161,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/ResourceLifecycle.java
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/ResourceLifecycle.java 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/ResourceLifecycle.java 2009-10-05 16:54:09 UTC (rev 15696)
@@ -133,6 +133,8 @@
root.setLocale(Locale.getDefault());
root.setRenderKitId(RenderKitFactory.HTML_BASIC_RENDER_KIT);
facesContext.setViewRoot(root);
+ // We do not simulate other phases.
+ facesContext.renderResponse();
// Invoke after restore view phase listeners
processPhaseListeners(phaseListeners, restoreViewEvent, false);
// Fix for a http://jira.jboss.org/jira/browse/RF-1056
Modified: branches/community/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java 2009-10-05 16:54:09 UTC (rev 15696)
@@ -38,7 +38,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "2-SNAPSHOT" ;
+ public static final String REVISION = "3-SNAPSHOT" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: branches/community/3.3.X/framework/jsf-test/pom.xml
===================================================================
--- branches/community/3.3.X/framework/jsf-test/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/framework/jsf-test/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
<name>jsf-test</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
Modified: branches/community/3.3.X/framework/pom.xml
===================================================================
--- branches/community/3.3.X/framework/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/framework/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: branches/community/3.3.X/framework/test/pom.xml
===================================================================
--- branches/community/3.3.X/framework/test/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/framework/test/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
<dependencies>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/community/3.3.X/pom.xml
===================================================================
--- branches/community/3.3.X/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
Modified: branches/community/3.3.X/samples/beanValidatorSample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/beanValidatorSample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/beanValidatorSample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>beanValidatorSample</artifactId>
<packaging>war</packaging>
<name>beanValidatorSample Maven Webapp</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -34,7 +34,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.2-SNAPSHOT</version> </dependency>
+ <version>3.3.3-SNAPSHOT</version> </dependency>
-->
<dependency>
<groupId>org.slf4j</groupId>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: branches/community/3.3.X/samples/calendar-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/calendar-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/calendar-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/colorPickerDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/colorPickerDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/colorPickerDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -35,7 +35,7 @@
<groupId>org.richfaces.framework
</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples
@@ -46,17 +46,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: branches/community/3.3.X/samples/columnsDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/columnsDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/columnsDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/combobox-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/combobox-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/combobox-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/contextMenuDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/contextMenuDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/contextMenuDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/createProject.sh
===================================================================
--- branches/community/3.3.X/samples/createProject.sh 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/createProject.sh 2009-10-05 16:54:09 UTC (rev 15696)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp \
- -DarchetypeVersion=3.3.2-SNAPSHOT -Dversion=3.3.2-SNAPSHOT -DgroupId=org.richfaces.samples -DartifactId=$1
+ -DarchetypeVersion=3.3.3-SNAPSHOT -Dversion=3.3.3-SNAPSHOT -DgroupId=org.richfaces.samples -DartifactId=$1
Modified: branches/community/3.3.X/samples/darkX/pom.xml
===================================================================
--- branches/community/3.3.X/samples/darkX/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/darkX/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/community/3.3.X/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dataFilterSliderDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/dataFilterSliderDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/dataTableDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dataTableDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/dataTableDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/datascroller-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/datascroller-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/datascroller-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/dragDropDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dragDropDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/dragDropDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dropdownmenu-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/dropdownmenu-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/editor-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/editor-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/editor-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/3.3.X/samples/editorSeam-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/editorSeam-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/editorSeam-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/3.3.X/samples/effect-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/effect-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/effect-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/extendedDataTable-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/extendedDataTable-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/extendedDataTable-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/community/3.3.X/samples/fileUploadDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/fileUploadDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/fileUploadDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/functions-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/functions-demo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/functions-demo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/glassX/pom.xml
===================================================================
--- branches/community/3.3.X/samples/glassX/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/glassX/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
<name>glassX</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/community/3.3.X/samples/gmap-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/gmap-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/gmap-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/hotKey-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/hotKey-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/hotKey-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/community/3.3.X/samples/inplaceInput-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inplaceInput-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/inplaceInput-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/inplaceSelect-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inplaceSelect-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/inplaceSelect-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inputNumberSliderDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/inputNumberSliderDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inputNumberSpinnerDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/inputNumberSpinnerDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/jQuery-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/jQuery-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/jQuery-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/jira-data/pom.xml
===================================================================
--- branches/community/3.3.X/samples/jira-data/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/jira-data/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/laguna/pom.xml
===================================================================
--- branches/community/3.3.X/samples/laguna/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/laguna/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: branches/community/3.3.X/samples/layout-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/layout-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/layout-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>layout-sample</artifactId>
<packaging>war</packaging>
<name>layout Maven Webapp</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -34,22 +34,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/community/3.3.X/samples/listShuttleDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/listShuttleDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/listShuttleDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/local-value-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/local-value-demo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/local-value-demo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/mediaOutput/pom.xml
===================================================================
--- branches/community/3.3.X/samples/mediaOutput/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/mediaOutput/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -5,11 +5,11 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces</groupId>
<artifactId>mediaOutput</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>war</packaging>
<name>mediaOutput Maven Webapp</name>
<build>
Modified: branches/community/3.3.X/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/modalpanel-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/modalpanel-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/orderingListDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/orderingListDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/orderingListDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/panel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/panel-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/panel-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/panelbar-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/panelbar-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/panelbar-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/panelmenu-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/panelmenu-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/pickList-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/pickList-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/pickList-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/pom.xml
===================================================================
--- branches/community/3.3.X/samples/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/community/3.3.X/samples/progressBarDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/progressBarDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/progressBarDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/queue-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/queue-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/queue-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>queue-sample</artifactId>
<packaging>war</packaging>
<name>queue-sample Maven Webapp</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: branches/community/3.3.X/samples/rich-message-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/rich-message-demo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/rich-message-demo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-art-datatable/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/richfaces-art-datatable/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/richfaces-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/richfaces-demo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -209,22 +209,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -314,12 +314,12 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
Modified: branches/community/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/community/3.3.X/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/richfaces-ear-demo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/community/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/community/3.3.X/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/scrollableDataTableDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/scrollableDataTableDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: branches/community/3.3.X/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/ear/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/seamEAR/ear/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
Modified: branches/community/3.3.X/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/ejbs/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/seamEAR/ejbs/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
Modified: branches/community/3.3.X/samples/seamEAR/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/seamEAR/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/primary-source/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/seamEAR/primary-source/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
Modified: branches/community/3.3.X/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/projects/logging/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/seamEAR/projects/logging/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
</project>
Modified: branches/community/3.3.X/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/projects/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/seamEAR/projects/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modules>
<module>logging</module>
Modified: branches/community/3.3.X/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/wars/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/seamEAR/wars/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: branches/community/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: branches/community/3.3.X/samples/seamIntegration/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamIntegration/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/seamIntegration/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/separator-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/separator-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/separator-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/simpleTogglePanel-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/simpleTogglePanel-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/skins/pom.xml
===================================================================
--- branches/community/3.3.X/samples/skins/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/skins/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/sortingFilteringDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/sortingFilteringDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/sortingFilteringDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<!--dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>sortableHeader</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency-->
<dependency>
Modified: branches/community/3.3.X/samples/state-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/state-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/state-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -16,17 +16,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>state</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/samples/stdcomponents-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/stdcomponents-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/stdcomponents-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/suggestionbox-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/suggestionbox-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tabPanelDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/tabPanelDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/themes/pom.xml
===================================================================
--- branches/community/3.3.X/samples/themes/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/themes/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>themes</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/togglePanel-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/togglePanel-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tomahawkCompability/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/tomahawkCompability/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/toolBarDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/toolBarDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/toolBarDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/tooltip-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tooltip-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/tooltip-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/tree-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tree-demo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/tree-demo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/treeModelDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/treeModelDemo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/treeModelDemo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/samples/violetRays/pom.xml
===================================================================
--- branches/community/3.3.X/samples/violetRays/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/violetRays/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>violetRays</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/virtualEarth-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/samples/virtualEarth-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/3.3.X/sandbox/api/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/api/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/api/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/community/3.3.X/sandbox/cdk/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/cdk/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/cdk/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: branches/community/3.3.X/sandbox/impl/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/impl/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/impl/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/community/3.3.X/sandbox/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/community/3.3.X/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/dialog-window-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/samples/dialog-window-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/3.3.X/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/editorOld-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/samples/editorOld-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/3.3.X/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/fileUploadPOC/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/samples/fileUploadPOC/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/community/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk.sandbox</groupId>
<artifactId>maven-rd-plugin-sample</artifactId>
<packaging>war</packaging>
<name>maven-rd-plugin-sample Maven Webapp</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<pluginRepositories>
<pluginRepository>
@@ -33,7 +33,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<configuration>
<scriptFilePath>scripts/custom-dependencies.js</scriptFilePath>
<styleFilePath>css/custom-dependencies.xcss</styleFilePath>
@@ -59,7 +59,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/panel2-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/samples/panel2-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/3.3.X/sandbox/samples/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/samples/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/3.3.X/sandbox/samples/rex-demo/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/rex-demo/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/samples/rex-demo/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -178,7 +178,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
Modified: branches/community/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/community/3.3.X/sandbox/ui/create.bat
===================================================================
--- branches/community/3.3.X/sandbox/ui/create.bat 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/ui/create.bat 2009-10-05 16:54:09 UTC (rev 15696)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.2-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: branches/community/3.3.X/sandbox/ui/create.sh
===================================================================
--- branches/community/3.3.X/sandbox/ui/create.sh 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/ui/create.sh 2009-10-05 16:54:09 UTC (rev 15696)
@@ -1,2 +1,2 @@
#!/bin/sh
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.2-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
Modified: branches/community/3.3.X/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/dialog-window/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/ui/dialog-window/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: branches/community/3.3.X/sandbox/ui/editorOld/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/editorOld/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/ui/editorOld/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/panel2/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/ui/panel2/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/sandbox/ui/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/ui/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: branches/community/3.3.X/sandbox/ui/rex-button/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/rex-button/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/ui/rex-button/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/rex-messageBox/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/ui/rex-messageBox/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/rex-resizable/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/ui/rex-resizable/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/sortableHeader/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/ui/sortableHeader/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/sandbox/ui/treeTable/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/treeTable/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/sandbox/ui/treeTable/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/test-applications/ajaxTest/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/ajaxTest/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/ajaxTest/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Modified: branches/community/3.3.X/test-applications/automator/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/automator/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/automator/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/3.3.X/test-applications/facelets/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/facelets/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/facelets/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/3.3.X/test-applications/jsp/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/jsp/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/jsp/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/3.3.X/test-applications/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,11 +50,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.2-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.3-SNAPSHOT</rfVersion>
</properties>
<modules>
Modified: branches/community/3.3.X/test-applications/regressionArea/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/regressionArea/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>Regresion Area:Seam Application</name>
<repositories>
<repository>
@@ -60,7 +60,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.2-SNAPSHOT</richversion>
+ <richversion>3.3.3-SNAPSHOT</richversion>
<seamversion>2.1.1.GA</seamversion>
<jsfversion>1.2_11</jsfversion>
<jbosshome>C:/tmp/jboss-4.2.3.GA</jbosshome>
Modified: branches/community/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: branches/community/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: branches/community/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: branches/community/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: branches/community/3.3.X/test-applications/richfaces-docs/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/richfaces-docs/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/richfaces-docs/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -204,7 +204,7 @@
<artifactId>richfaces-api</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
@@ -214,7 +214,7 @@
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
@@ -224,7 +224,7 @@
<artifactId>richfaces-ui</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
Modified: branches/community/3.3.X/test-applications/seamApp/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seamApp/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/seamApp/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <rfVersion>3.3.2-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.3-SNAPSHOT</rfVersion>
<seamVersion>2.1.0.SP1</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.2.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.2.GA/jboss-4.2.2.GA/server/default/</jbossDeployDir>
Modified: branches/community/3.3.X/test-applications/seleniumTest/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seleniumTest/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/seleniumTest/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -233,7 +233,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/community/3.3.X/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seleniumTest/richfaces/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/seleniumTest/richfaces/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: branches/community/3.3.X/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seleniumTest/samples/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/seleniumTest/samples/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: branches/community/3.3.X/test-applications/test-jsp/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/test-jsp/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/test-applications/test-jsp/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/3.3.X/ui/assembly/pom.xml
===================================================================
--- branches/community/3.3.X/ui/assembly/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/assembly/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -15,7 +15,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: branches/community/3.3.X/ui/beanValidator/pom.xml
===================================================================
--- branches/community/3.3.X/ui/beanValidator/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/beanValidator/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,19 +4,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
<name>beanValidator</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -46,12 +46,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: branches/community/3.3.X/ui/calendar/pom.xml
===================================================================
--- branches/community/3.3.X/ui/calendar/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/calendar/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/colorPicker/pom.xml
===================================================================
--- branches/community/3.3.X/ui/colorPicker/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/colorPicker/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -12,7 +12,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/ui/columns/pom.xml
===================================================================
--- branches/community/3.3.X/ui/columns/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/columns/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/community/3.3.X/ui/combobox/pom.xml
===================================================================
--- branches/community/3.3.X/ui/combobox/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/combobox/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/community/3.3.X/ui/componentControl/pom.xml
===================================================================
--- branches/community/3.3.X/ui/componentControl/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/componentControl/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/contextMenu/pom.xml
===================================================================
--- branches/community/3.3.X/ui/contextMenu/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/contextMenu/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/core/pom.xml
===================================================================
--- branches/community/3.3.X/ui/core/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/core/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/ui/create.bat
===================================================================
--- branches/community/3.3.X/ui/create.bat 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/create.bat 2009-10-05 16:54:09 UTC (rev 15696)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.2-SNAPSHOT -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3-SNAPSHOT -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: branches/community/3.3.X/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/community/3.3.X/ui/dataFilterSlider/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/dataFilterSlider/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -14,7 +14,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/dataTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/dataTable/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/dataTable/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
-->
</dependencies>
Modified: branches/community/3.3.X/ui/datascroller/pom.xml
===================================================================
--- branches/community/3.3.X/ui/datascroller/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/datascroller/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/drag-drop/pom.xml
===================================================================
--- branches/community/3.3.X/ui/drag-drop/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/drag-drop/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
-->
</dependencies>
Modified: branches/community/3.3.X/ui/dropdown-menu/pom.xml
===================================================================
--- branches/community/3.3.X/ui/dropdown-menu/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/dropdown-menu/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/editor/pom.xml
===================================================================
--- branches/community/3.3.X/ui/editor/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/editor/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -62,7 +62,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
Modified: branches/community/3.3.X/ui/effect/pom.xml
===================================================================
--- branches/community/3.3.X/ui/effect/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/effect/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/ui/extendedDataTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/extendedDataTable/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/extendedDataTable/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -64,45 +64,45 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/fileUpload/pom.xml
===================================================================
--- branches/community/3.3.X/ui/fileUpload/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/fileUpload/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/functions/pom.xml
===================================================================
--- branches/community/3.3.X/ui/functions/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/functions/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/ui/gmap/pom.xml
===================================================================
--- branches/community/3.3.X/ui/gmap/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/gmap/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/ui/hotKey/pom.xml
===================================================================
--- branches/community/3.3.X/ui/hotKey/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/hotKey/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/inplaceInput/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inplaceInput/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/inplaceInput/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/inplaceSelect/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inplaceSelect/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/inplaceSelect/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/community/3.3.X/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inputnumber-slider/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/inputnumber-slider/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inputnumber-spinner/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/inputnumber-spinner/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/community/3.3.X/ui/insert/pom.xml
===================================================================
--- branches/community/3.3.X/ui/insert/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/insert/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/ui/jQuery/pom.xml
===================================================================
--- branches/community/3.3.X/ui/jQuery/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/jQuery/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/ui/layout/pom.xml
===================================================================
--- branches/community/3.3.X/ui/layout/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/layout/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -4,18 +4,18 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>layout</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>layout</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -48,7 +48,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: branches/community/3.3.X/ui/listShuttle/pom.xml
===================================================================
--- branches/community/3.3.X/ui/listShuttle/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/listShuttle/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/community/3.3.X/ui/menu-components/pom.xml
===================================================================
--- branches/community/3.3.X/ui/menu-components/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/menu-components/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/message/pom.xml
===================================================================
--- branches/community/3.3.X/ui/message/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/message/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/modal-panel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/modal-panel/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/modal-panel/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/ui/orderingList/pom.xml
===================================================================
--- branches/community/3.3.X/ui/orderingList/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/orderingList/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/ui/paint2D/pom.xml
===================================================================
--- branches/community/3.3.X/ui/paint2D/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/paint2D/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/ui/panel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/panel/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/panel/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/panelbar/pom.xml
===================================================================
--- branches/community/3.3.X/ui/panelbar/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/panelbar/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/ui/panelmenu/pom.xml
===================================================================
--- branches/community/3.3.X/ui/panelmenu/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/panelmenu/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/pickList/pom.xml
===================================================================
--- branches/community/3.3.X/ui/pickList/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/pickList/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/community/3.3.X/ui/pom.xml
===================================================================
--- branches/community/3.3.X/ui/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -138,12 +138,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: branches/community/3.3.X/ui/progressBAR/pom.xml
===================================================================
--- branches/community/3.3.X/ui/progressBAR/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/progressBAR/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/scrollableDataTable/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/scrollableDataTable/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/separator/pom.xml
===================================================================
--- branches/community/3.3.X/ui/separator/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/separator/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/community/3.3.X/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/simpleTogglePanel/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/simpleTogglePanel/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/spacer/pom.xml
===================================================================
--- branches/community/3.3.X/ui/spacer/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/spacer/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/state/pom.xml
===================================================================
--- branches/community/3.3.X/ui/state/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/state/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/suggestionbox/pom.xml
===================================================================
--- branches/community/3.3.X/ui/suggestionbox/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/suggestionbox/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/tabPanel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/tabPanel/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/tabPanel/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/togglePanel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/togglePanel/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/togglePanel/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/toolBar/pom.xml
===================================================================
--- branches/community/3.3.X/ui/toolBar/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/toolBar/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/tooltip/pom.xml
===================================================================
--- branches/community/3.3.X/ui/tooltip/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/tooltip/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/tree/pom.xml
===================================================================
--- branches/community/3.3.X/ui/tree/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/tree/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/treeModel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/treeModel/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/treeModel/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/ui/treeTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/treeTable/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/treeTable/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/3.3.X/ui/virtualEarth/pom.xml
===================================================================
--- branches/community/3.3.X/ui/virtualEarth/pom.xml 2009-10-02 14:16:15 UTC (rev 15695)
+++ branches/community/3.3.X/ui/virtualEarth/pom.xml 2009-10-05 16:54:09 UTC (rev 15696)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
15 years, 2 months