JBoss Rich Faces SVN: r16373 - branches/community/3.3.X/samples/richfaces-demo/src/main/java/org/richfaces/demo/modifiableModel.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2010-01-28 07:14:01 -0500 (Thu, 28 Jan 2010)
New Revision: 16373
Modified:
branches/community/3.3.X/samples/richfaces-demo/src/main/java/org/richfaces/demo/modifiableModel/BaseModifiableHibernateDataModel.java
Log:
Fix RF-8327
Modified: branches/community/3.3.X/samples/richfaces-demo/src/main/java/org/richfaces/demo/modifiableModel/BaseModifiableHibernateDataModel.java
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/src/main/java/org/richfaces/demo/modifiableModel/BaseModifiableHibernateDataModel.java 2010-01-28 12:12:56 UTC (rev 16372)
+++ branches/community/3.3.X/samples/richfaces-demo/src/main/java/org/richfaces/demo/modifiableModel/BaseModifiableHibernateDataModel.java 2010-01-28 12:14:01 UTC (rev 16373)
@@ -17,6 +17,7 @@
import org.hibernate.Session;
import org.hibernate.criterion.MatchMode;
import org.hibernate.criterion.Order;
+import org.hibernate.criterion.Projections;
import org.hibernate.criterion.Restrictions;
import org.richfaces.model.ExtendedFilterField;
import org.richfaces.model.FilterField;
@@ -144,7 +145,8 @@
public int getRowCount() {
Criteria criteria = createCriteria();
appendFilters(FacesContext.getCurrentInstance(), criteria);
- return (Integer) criteria.list().size();
+ criteria.setProjection(Projections.rowCount());
+ return ((Integer)criteria.list().get(0)).intValue();
}
@Override
15 years
JBoss Rich Faces SVN: r16372 - branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/component.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2010-01-28 07:12:56 -0500 (Thu, 28 Jan 2010)
New Revision: 16372
Modified:
branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/component/AjaxViewRoot.java
Log:
RF-8283
Modified: branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/component/AjaxViewRoot.java
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/component/AjaxViewRoot.java 2010-01-28 01:49:03 UTC (rev 16371)
+++ branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/component/AjaxViewRoot.java 2010-01-28 12:12:56 UTC (rev 16372)
@@ -250,7 +250,7 @@
for (String areaId : areasToProcess) {
boolean areaProcessed = invokeOnComponent(context, areaId, invokerCallback);
if(!areaProcessed){
- _log.warn("No component found to process for clientId "+ajaxSingleClientId);
+ _log.warn("No component found to process for clientId "+areaId);
}
}
}
15 years
JBoss Rich Faces SVN: r16371 - in root/cdk/branches/guice/plugins/generator/src: main/java/org/richfaces/cdk/apt and 9 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-01-27 20:49:03 -0500 (Wed, 27 Jan 2010)
New Revision: 16371
Added:
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/OutputType.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/SourceType.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/AptModule.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/CompilationTaskFactory.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/TaskFactoryImpl.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/freemarker/FreeMakerModule.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ClassGeneratorModule.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/model/ModelModule.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/TemplateModule.java
Removed:
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkContext.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkContextBase.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkError.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkProcessingError.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkWorker.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/DummyBuilder.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/DummyGenerator.java
Modified:
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkWriter.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/Generator.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/LibraryBuilder.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/ModelBuilder.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/ModelValidator.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/NamingConventions.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/RichFacesConventions.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/StandardOutputFolders.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/StandardOutputs.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/StandardSources.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/ValidatorImpl.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/AptBuilder.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/CdkProcessor.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/freemarker/FreeMarkerRenderer.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/freemarker/ValidatorTaglibGenerator.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/BehaviorClassGenerator.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ComponentClassGenerator.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ConverterClassGenerator.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ValidatorClassGenerator.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/xmlconfig/CdkEntityResolver.java
root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/xmlconfig/XmlModule.java
root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/apt/CdkProcessorTest.java
root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/freemarker/FreeMarkerRendererTest.java
root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/freemarker/ValidatorTaglibGeneratorTest.java
root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/generate/java/AbstractClassGeneratorTest.java
root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/xmlconfig/CdkResolverTest.java
Log:
Convert context to dependency injection
Deleted: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkContext.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkContext.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkContext.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -1,115 +0,0 @@
-package org.richfaces.cdk;
-
-import java.io.File;
-
-import org.richfaces.cdk.model.ComponentLibrary;
-
-/**
- * <p class="changed_added_4_0">
- * That interface defines context for all CDK operations
- * </p>
- *
- * @author asmirnov(a)exadel.com
- *
- */
-public interface CdkContext {
-
- /**
- * <p class="changed_added_4_0">
- * Tools classloader.
- * </p>
- *
- * @return the loader
- */
- public CdkClassLoader getLoader();
-
- /**
- * <p class="changed_added_4_0">Get all sources for given type.</p>
- * @param type
- * @return
- */
- public Iterable<File> getSources(SourceType type);
-
- /**
- * <p class="changed_added_4_0">Provides default output folder for given output type.</p>
- * TODO - define "output families" to group similar outputs ( classes, resources, tests ... ).
- * @param type of output
- * @return output folder for requested type.
- */
- public File getOutputFolder(OutputType type);
-
- /**
- * <p class="changed_added_4_0">This method creates output file in the appropriate output folder. If target file exists and its modification time is late than model modification time from {@code lastModified} parameter, no new file will be created.</p>
- * @param output target output folder.
- * @param relativePath path to file in the output folder.
- * @param lastModified model modification time. If that parameter is less then 0, no checks for existing file will be performed.
- * @return new created file or null if the target file exists and its modification time is late then model.
- */
- public File createOutputFile(OutputType output, String relativePath, long lastModified) throws CdkException;
-
- /**
- * <p class="changed_added_4_0">Record recowerable CdkError. To avoid consequence builds of the project with many errors, all non-fatal errors ( Java compilation errors, incorrect xml fales, inconsistent component descriptions ) these error are stored in the context and marks whole build failed.</p>
- * @param error
- */
- public void sendError(CdkProcessingException error);
-
- public abstract Iterable<CdkProcessingException> getErrors();
-
- /**
- * <p class="changed_added_4_0"></p>
- * @param type
- * @return
- */
- public Iterable<File> getSourceFolders(SourceType type);
-
- /**
- * <p class="changed_added_4_0"></p>
- * @param <W>
- * @param workerClass
- * @return
- * @throws CdkException
- */
- public <W extends CdkWorker> W getWorker(Class<W> workerClass) throws CdkException;
-
- public abstract <W extends CdkWorker> W setWorker(Class<W> workerClass, W workerInstance);
-
- /**
- * <p class="changed_added_4_0">Get value of configuration option.</p>
- * TODO make it type safe.
- * @param name option name.
- * @return option value or null.
- */
- public String getOption(String name);
-
- /**
- * <p class="changed_added_4_0">current JSF components library model</p>
- * @return
- */
- public ComponentLibrary getLibrary();
-
- public abstract ModelBuilder getBuilderFor(SourceType type) throws CdkException;
-
- public abstract CdkWriter getGeneratorFor(OutputType type) throws CdkException;
-
- /**
- * <p class="changed_added_4_0">Id of source files e.g. Java classes, faces-configs, renderer templates</p>
- * @author asmirnov(a)exadel.com
- *
- */
- public interface SourceType {
-
- String getName();
- }
-
- /**
- * <p class="changed_added_4_0"></p>
- * @author asmirnov(a)exadel.com
- *
- */
- public interface OutputType {
- String getName();
-
- OutputType getFolderType();
- }
-
-}
Deleted: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkContextBase.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkContextBase.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkContextBase.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -1,294 +0,0 @@
-/*
- * $Id$
- *
- * 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.cdk;
-
-import java.io.File;
-import java.io.IOException;
-import java.util.Iterator;
-import java.util.List;
-import java.util.Map;
-
-import org.richfaces.cdk.apt.AptBuilder;
-import org.richfaces.cdk.generate.java.ComponentClassGenerator;
-import org.richfaces.cdk.model.ComponentLibrary;
-import org.richfaces.cdk.templatecompiler.RendererClassGenerator;
-import org.richfaces.cdk.templatecompiler.RendererTemplateParser;
-import org.richfaces.cdk.xmlconfig.FacesConfigGenerator;
-import org.richfaces.cdk.xmlconfig.FacesConfigParser;
-import org.richfaces.cdk.freemarker.ValidatorTaglibGenerator;
-
-import com.google.common.collect.ClassToInstanceMap;
-import com.google.common.collect.ImmutableMap;
-import com.google.common.collect.Lists;
-import com.google.common.collect.Maps;
-import com.google.common.collect.MutableClassToInstanceMap;
-
-/**
- * <p class="changed_added_4_0">Base CDK context class. Particular build tool ( Ant, Maven ) should extend that
- * class with tool-specific methods.</p>
- * @author asmirnov(a)exadel.com
- *
- */
-public class CdkContextBase implements CdkContext {
-
- /* Map contains writer classes for standard outputs.
- */
- static final ImmutableMap<OutputType, Class<? extends CdkWriter>> WRITERS =
- ImmutableMap.<OutputType, Class<? extends CdkWriter>>builder()
- .put(StandardOutputs.COMPONENT_CLASSES, ComponentClassGenerator.class)
- .put(StandardOutputs.TAG_LIBRARY, ValidatorTaglibGenerator.class)
- .put(StandardOutputs.RENDERER_CLASSES, RendererClassGenerator.class)
- .put(StandardOutputs.FACES_CONFIG, FacesConfigGenerator.class)
- .build();
-
- /**
- * map contain library model builder classes for each source type.
- */
- static final ImmutableMap<SourceType, Class<? extends ModelBuilder>> BUILDERS =
- ImmutableMap.<SourceType, Class<? extends ModelBuilder>> builder()
- .put(StandardSources.FACES_CONFIGS, FacesConfigParser.class)
- .put(StandardSources.JAVA_SOURCES, AptBuilder.class)
- .put(StandardSources.RENDERER_TEMPLATES, RendererTemplateParser.class)
- .build();
-
- private Map<String, String> options = Maps.newHashMap();
- private Map<SourceType, Iterable<File>> sources = Maps.newHashMap();
- private Map<OutputType, File> outputs = Maps.newHashMap();
- private Map<SourceType, Iterable<File>> inputFolders = Maps.newHashMap();
- private ClassToInstanceMap<CdkWorker> workers = MutableClassToInstanceMap.create();
- private List<CdkProcessingException> errors = Lists.newArrayList();
- private final CdkClassLoader loader;
- private ComponentLibrary library;
-
- public CdkContextBase(CdkClassLoader loader) {
- this.loader = loader;
- }
-
- /*
- * (non-Javadoc)
- * @see org.richfaces.cdk.CdkContext#getLoader()
- */
- @Override
- public CdkClassLoader getLoader() {
- return loader;
- }
-
- public void addSources(SourceType type, Iterable<File> files) {
- sources.put(type, files);
- }
-
- @Override
- public Iterable<File> getSources(SourceType type) {
- return sources.get(type);
- }
-
- @Override
- public File getOutputFolder(OutputType type) {
- File outputFolder = outputs.get(type);
- OutputType folderType = type.getFolderType();
-
- if (null == outputFolder && null != folderType) {
-
- // Lookup for standard folder type.
- outputFolder = outputs.get(folderType);
-
- // Lookup for output with same folder type.
- Iterator<OutputType> keysIterator = outputs.keySet().iterator();
-
- while (null == outputFolder && keysIterator.hasNext()) {
- OutputType outputType = keysIterator.next();
-
- if (folderType.equals(outputType.getFolderType())) {
- outputFolder = outputs.get(outputType);
- }
- }
- }
-
- return outputFolder;
- }
-
- public void setOutputFolder(OutputType type, File folder) {
- outputs.put(type, folder);
- }
-
- @Override
- public void sendError(CdkProcessingException error) {
- errors.add(error);
- }
-
- @Override
- public Iterable<CdkProcessingException> getErrors() {
- return errors;
- }
-
- @Override
- public Iterable<File> getSourceFolders(SourceType type) {
- return inputFolders.get(type);
- }
-
- public void setSourceFolders(SourceType type, Iterable<File> folders) {
- inputFolders.put(type, folders);
- }
-
- @Override
- public <W extends CdkWorker> W getWorker(Class<W> workerClass) throws CdkException {
- W worker = workers.getInstance(workerClass);
-
- if (null == worker) {
-
- // instantiate worker.
- try {
- worker = workerClass.newInstance();
- worker.init(this);
- workers.putInstance(workerClass, worker);
- } catch (InstantiationException e) {
- throw new CdkException("error to instantiate cdk component " + workerClass.getName(), e);
- } catch (IllegalAccessException e) {
- throw new CdkException("Illegal access to cdk component " + workerClass.getName(), e);
- }
- }
-
- return worker;
- }
-
- @Override
- public <W extends CdkWorker> W setWorker(Class<W> workerClass, W workerInstance) {
- return workers.putInstance(workerClass, workerInstance);
- }
-
- @Override
- public File createOutputFile(OutputType output, String relativePath, long lastModified) throws CdkException {
- if (null == relativePath) {
- throw new NullPointerException();
- }
-
- File outputFolder = getOutputFolder(output);
-
- if (null == outputFolder) {
- throw new CdkException("No output folder for type " + output.getName());
- }
-
- if (outputFolder.exists() && !outputFolder.isDirectory()) {
- throw new CdkException("Output folder " + outputFolder + " not is directory.");
- }
-
- // Strip leading '/'
- if (relativePath.startsWith(File.separator)) {
- relativePath = relativePath.substring(1);
- }
-
- File outputFile = new File(outputFolder, relativePath);
-
- if (outputFile.exists()) {
- if (lastModified > 0 && outputFile.lastModified() > lastModified) {
- return null;
- } else {
- outputFile.delete();
- }
- }
-
- // Create file folder.
- outputFile.getParentFile().mkdirs();
-
- try {
- outputFile.createNewFile();
- } catch (IOException e) {
- throw new CdkException("Error create output file", e);
- }
-
- return outputFile;
- }
-
- /**
- * <p class="changed_added_4_0"></p>
- * @param options the options to set
- */
- public void setOptions(Map<String, String> options) {
- this.options.putAll(options);
- }
-
- @Override
- public String getOption(String name) {
- return options.get(name);
- }
-
- /**
- * This method returns instance of {@link CdkWriter} for given output type.
- * @param type
- * @return
- * @throws CdkException
- */
- @Override
- public CdkWriter getGeneratorFor(OutputType type) throws CdkException {
- CdkWriter generator = null;
- Class<? extends CdkWriter> writerClass = CdkContextBase.WRITERS.get(type);
-
- if (null != writerClass) {
- generator = getWorker(writerClass);
- } else {
- generator = new DummyGenerator();
- generator.init(this);
-
- // TODO - make service method for new source types.
- // throw new CdkException("No generator for type " +
- // type.getName());
- }
-
- return generator;
- }
-
- /**
- * This method returns initialized instance of the {@link ModelBuilder} for given source type.
- * @param type
- * @return
- * @throws CdkException
- */
- @Override
- public ModelBuilder getBuilderFor(SourceType type) throws CdkException {
- ModelBuilder builder;
- Class<? extends ModelBuilder> builderClass = CdkContextBase.BUILDERS.get(type);
-
- if (null != builderClass) {
- builder = getWorker(builderClass);
- } else {
- builder = new DummyBuilder();
- builder.init(this);
-
- // TODO - make service method for new source types.
- // throw new CdkException("No model builder for source type " +
- // type.getName());
- }
-
- return builder;
- }
-
- @Override
- public ComponentLibrary getLibrary() {
- if (library == null) {
- library = new ComponentLibrary();
- }
- return library;
- }
-
-}
Deleted: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkError.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkError.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkError.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -1,79 +0,0 @@
-/*
- * $Id$
- *
- * 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.cdk;
-
-/**
- * <p class="changed_added_4_0">That class incapsulates information about recoverable CDK errors.</p>
- *
- * @author asmirnov(a)exadel.com
- */
-public class CdkError {
- private Throwable cause;
- private String description;
- private String message;
-
- /**
- * <p class="changed_added_4_0"></p>
- *
- * @param message
- */
- public CdkError(String message) {
- this.message = message;
- }
-
- /**
- * <p class="changed_added_4_0"></p>
- *
- * @param message
- * @param cause
- */
- public CdkError(String message, Throwable cause) {
- this.message = message;
- this.cause = cause;
- }
-
- public Throwable getCause() {
- return cause;
- }
-
- public void setCause(Throwable cause) {
- this.cause = cause;
- }
-
- public String getDescription() {
- return description;
- }
-
- public void setDescription(String description) {
- this.description = description;
- }
-
- public String getMessage() {
- return message;
- }
-
- public void setMessage(String message) {
- this.message = message;
- }
-}
Deleted: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkProcessingError.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkProcessingError.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkProcessingError.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -1,74 +0,0 @@
-/*
- * $Id$
- *
- * 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.cdk;
-
-/**
- * <p class="changed_added_4_0">That exception indicates recoverable CDK error, that it is, means
- * errors in source code or configuration files that makes project build failed, so no result shulde be generated,
- * but does not stop further processing of other classes or files. CDK should collect such errors but do not stop
- * processing that let developer to know about all errors in the project.</p>
- *
- * @author asmirnov(a)exadel.com
- */
-public class CdkProcessingError extends CdkException {
-
- /**
- * <p class="changed_added_4_0"></p>
- */
- private static final long serialVersionUID = -3696046213271071968L;
-
- /**
- * <p class="changed_added_4_0"></p>
- */
- public CdkProcessingError() {
- }
-
- /**
- * <p class="changed_added_4_0"></p>
- *
- * @param message
- */
- public CdkProcessingError(String message) {
- super(message);
- }
-
- /**
- * <p class="changed_added_4_0"></p>
- *
- * @param cause
- */
- public CdkProcessingError(Throwable cause) {
- super(cause);
- }
-
- /**
- * <p class="changed_added_4_0"></p>
- *
- * @param message
- * @param cause
- */
- public CdkProcessingError(String message, Throwable cause) {
- super(message, cause);
- }
-}
Deleted: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkWorker.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkWorker.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkWorker.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -1,39 +0,0 @@
-/*
- * $Id$
- *
- * 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.cdk;
-
-/**
- * <p class="changed_added_4_0">Interface for all CDK worker objects ( parsers, validators, renderers etc. ).
- * Instances of these objects are stored in the {@link CdkContext}</p>
- * @author asmirnov(a)exadel.com
- *
- */
-public interface CdkWorker {
- /**
- *
- */
- public void init(CdkContext context);
-}
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkWriter.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkWriter.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/CdkWriter.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -30,7 +30,7 @@
* @author asmirnov(a)exadel.com
*
*/
-public interface CdkWriter extends CdkWorker {
+public interface CdkWriter {
public void render() throws CdkException;
}
Deleted: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/DummyBuilder.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/DummyBuilder.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/DummyBuilder.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -1,63 +0,0 @@
-/*
- * $Id$
- *
- * 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.cdk;
-
-
-/**
- * <p class="changed_added_4_0">This is dummy model builder class for not yet implemented source types</p>
- * @author asmirnov(a)exadel.com
- *
- */
-public class DummyBuilder implements ModelBuilder {
- private CdkContext context;
-
- /*
- * (non-Javadoc)
- * @see org.richfaces.cdk.ModelBuilder#build()
- */
- @Override
- public void build() throws CdkException {
- // Do nothing
- }
-
- /*
- * (non-Javadoc)
- * @see org.richfaces.cdk.ModelBuilder#init(org.richfaces.cdk.CdkContext)
- */
-
- /*
- * (non-Javadoc)
- * @see org.richfaces.cdk.ModelBuilder#init(org.richfaces.cdk.CdkContext)
- */
- @Override
- public void init(CdkContext context) {
- this.context = context;
- }
-
- protected CdkContext getContext() {
- return context;
- }
-}
Deleted: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/DummyGenerator.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/DummyGenerator.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/DummyGenerator.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -1,58 +0,0 @@
-/*
- * $Id$
- *
- * 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.cdk;
-
-/**
- * <p class="changed_added_4_0">This is dummy generator for not yet implemented output types</p>
- * @author asmirnov(a)exadel.com
- *
- */
-public class DummyGenerator implements CdkWriter {
- private CdkContext context;
-
- /*
- * (non-Javadoc)
- * @see org.richfaces.cdk.CdkWriter#init(org.richfaces.cdk.CdkContext)
- */
- @Override
- public void init(CdkContext context) {
- this.context = context;
- }
-
- /*
- * (non-Javadoc)
- * @see org.richfaces.cdk.CdkWriter#render(org.richfaces.cdk.model.ComponentLibrary)
- */
- @Override
- public void render() throws CdkException {
-
- // Do nothing
- }
-
- protected CdkContext getContext() {
- return context;
- }
-}
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/Generator.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/Generator.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/Generator.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -24,8 +24,13 @@
import static com.google.common.base.Preconditions.checkNotNull;
-import org.richfaces.cdk.CdkContext.SourceType;
+import org.richfaces.cdk.apt.AptModule;
+import org.richfaces.cdk.freemarker.FreeMakerModule;
+import org.richfaces.cdk.generate.java.ClassGeneratorModule;
import org.richfaces.cdk.model.ComponentLibrary;
+import org.richfaces.cdk.model.ModelModule;
+import org.richfaces.cdk.templatecompiler.TemplateModule;
+import org.richfaces.cdk.xmlconfig.XmlModule;
import java.io.File;
import java.util.Map;
@@ -70,7 +75,8 @@
public void init(){
checkNotNull(loader, "classLoader");
- injector = Guice.createInjector(new CdkConfigurationModule());
+ injector = Guice.createInjector(new CdkConfigurationModule(),new AptModule(),new ModelModule(),
+ new ClassGeneratorModule(),new FreeMakerModule(),new TemplateModule(),new XmlModule());
}
public void execute() {
@@ -90,7 +96,6 @@
for (Map.Entry<StandardSources, Iterable<File>> entry : sources.entrySet()) {
bind(new TypeLiteral<Iterable<File>>(){}).annotatedWith(new SourceImpl(entry.getKey())).toInstance(entry.getValue());
}
- bind(ComponentLibrary.class).in(Singleton.class);
}
}
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/LibraryBuilder.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/LibraryBuilder.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/LibraryBuilder.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -25,9 +25,11 @@
package org.richfaces.cdk;
-import org.richfaces.cdk.CdkContext.OutputType;
-import org.richfaces.cdk.CdkContext.SourceType;
+import javax.inject.Inject;
+import org.richfaces.cdk.model.ComponentLibrary;
+
+
/**
* <p class="changed_added_4_0">
* That class builds JSF library model from different sources. It acts as
@@ -37,61 +39,37 @@
* @author asmirnov(a)exadel.com
*
*/
-public final class LibraryBuilder implements CdkWorker {
+public final class LibraryBuilder {
- /**
- * <p class="changed_added_4_0">
- * Current CDK context
- * </p>
- */
- private CdkContext context;
+ @Inject
+ private Logger log;
+
+ private final ModelValidator validator;
+ private final Iterable<ModelBuilder> builders;
+ private final Iterable<CdkWriter> generators;
+ private final ComponentLibrary library;
+
+
/**
* <p class="changed_added_4_0">
* </p>
*
* @param context
*/
- public LibraryBuilder() {}
+ @Inject
+ public LibraryBuilder(ModelValidator validator,Iterable<ModelBuilder> builders,Iterable<CdkWriter> generators, ComponentLibrary library) {
+ this.validator = validator;
+ this.builders = builders;
+ this.generators = generators;
+ this.library = library;
+ }
- @Override
- public void init(CdkContext context) {
- this.context = context;
- // default workers.
- }
- /**
- * <p class="changed_added_4_0">
- * Static factory method
- * </p>
- *
- * @return
- * @throws CdkException
- */
- public static LibraryBuilder createInstance(CdkContext context) throws CdkException {
- return context.getWorker(LibraryBuilder.class);
- }
/**
* <p class="changed_added_4_0">
- * Parse source files for annotations and populate CDK-related information
- * into model.
- * </p>
- * @param library TODO
- * @param sources
- * Java Source files.
- *
- * @return generated library model.
- * @throws CdkException
- */
- public void buildModel(SourceType type) throws CdkException {
- ModelBuilder modelBuilder = context.getBuilderFor(type);
- modelBuilder.build();
- }
-
- /**
- * <p class="changed_added_4_0">
* Build library model from all available sources.
* </p>
*
@@ -100,11 +78,11 @@
*/
public void build() throws CdkException {
- for (SourceType type : StandardSources.values()) {
- buildModel(type);
+ for (ModelBuilder builder : builders) {
+ builder.build();
}
- getVerifier().verify(context.getLibrary());
+ getValidator().verify(library);
generate();
}
@@ -115,38 +93,15 @@
* @throws CdkException
*/
public void generate() throws CdkException {
- for (OutputType type : StandardOutputs.values()) {
- generate(type);
+ if (0 == log.getErrorCount()) {
+ for (CdkWriter generator : generators) {
+ generator.render();
+ }
}
}
- /**
- * <p class="changed_added_4_0">
- * Cenerate files from library model for given type ( eg. component classes, faces-config ).
- * </p>
- *
- * @param library model
- * @param type of generated files.
- * @throws CdkException
- */
- public void generate(OutputType type) throws CdkException {
- CdkWriter generator = context.getGeneratorFor(type);
- generator.render();
- }
- /**
- * <p class="changed_added_4_0">
- * Getter for the current CDK context
- * </p>
- *
- * @return the context
- */
- protected CdkContext getContext() {
- return context;
+ protected ModelValidator getValidator() throws CdkException {
+ return validator;
}
-
-
- protected ModelValidator getVerifier() throws CdkException {
- return getContext().getWorker(ModelValidator.class);
- }
}
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/ModelBuilder.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/ModelBuilder.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/ModelBuilder.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -31,16 +31,8 @@
* @author asmirnov(a)exadel.com
*
*/
-public interface ModelBuilder extends CdkWorker {
+public interface ModelBuilder {
- /**
- * <p class="changed_added_4_0">
- * Initialize builder.
- * </p>
- *
- * @param context
- */
- public void init(CdkContext context);
/**
* <p class="changed_added_4_0">
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/ModelValidator.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/ModelValidator.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/ModelValidator.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -30,7 +30,7 @@
*
* @author asmirnov(a)exadel.com
*/
-public interface ModelValidator extends CdkWorker {
+public interface ModelValidator {
/**
* <p class="changed_added_4_0">Perform verify procedure on the library model.</p>
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/NamingConventions.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/NamingConventions.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/NamingConventions.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -34,7 +34,7 @@
*
* @author asmirnov(a)exadel.com
*/
-public interface NamingConventions extends CdkWorker {
+public interface NamingConventions {
/**
* <p class="changed_added_4_0">Calculates component type from explicit value or base class name.</p>
Added: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/OutputType.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/OutputType.java (rev 0)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/OutputType.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -0,0 +1,12 @@
+package org.richfaces.cdk;
+
+/**
+ * <p class="changed_added_4_0"></p>
+ * @author asmirnov(a)exadel.com
+ *
+ */
+public interface OutputType {
+ String getName();
+
+ OutputType getFolderType();
+}
\ No newline at end of file
Property changes on: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/OutputType.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/RichFacesConventions.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/RichFacesConventions.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/RichFacesConventions.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -20,14 +20,9 @@
private static final String[] COMPONENT_PREFIXES = {UI, ABSTRACT};
private String baseName;
- private CdkContext context;
public RichFacesConventions() {}
- @Override
- public void init(CdkContext context) {
- this.context = context;
- }
@Override
public String inferComponentType(String explicitType, String className) throws InvalidNameException {
Added: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/SourceType.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/SourceType.java (rev 0)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/SourceType.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -0,0 +1,11 @@
+package org.richfaces.cdk;
+
+/**
+ * <p class="changed_added_4_0">Id of source files e.g. Java classes, faces-configs, renderer templates</p>
+ * @author asmirnov(a)exadel.com
+ *
+ */
+public interface SourceType {
+
+ String getName();
+}
\ No newline at end of file
Property changes on: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/SourceType.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/StandardOutputFolders.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/StandardOutputFolders.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/StandardOutputFolders.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -25,7 +25,6 @@
package org.richfaces.cdk;
-import org.richfaces.cdk.CdkContext.OutputType;
/**
* <p class="changed_added_4_0">This enumeration defines standard types of output folders.</p>
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/StandardOutputs.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/StandardOutputs.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/StandardOutputs.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -25,7 +25,6 @@
package org.richfaces.cdk;
-import org.richfaces.cdk.CdkContext.OutputType;
/**
* <p class="changed_added_4_0"></p>
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/StandardSources.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/StandardSources.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/StandardSources.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -23,7 +23,6 @@
package org.richfaces.cdk;
-import org.richfaces.cdk.CdkContext.SourceType;
/**
* <p class="changed_added_4_0">This enumeration defines standard types for project sources.</p>
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/ValidatorImpl.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/ValidatorImpl.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/ValidatorImpl.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -32,32 +32,41 @@
import java.util.Collection;
+import javax.inject.Inject;
+
/**
* <p class="changed_added_4_0"></p>
* @author asmirnov(a)exadel.com
*
*/
public class ValidatorImpl implements ModelValidator {
- private CdkContext context;
- public void init(CdkContext context) {
- this.context = context;
+ @Inject
+ private Logger log;
+
+ private final ComponentLibrary library;
+ private final NamingConventions namingConventions;
+
+ @Inject
+ public ValidatorImpl(ComponentLibrary library, NamingConventions namingConventions) {
+ this.library = library;
+ // TODO Auto-generated constructor stub
+ this.namingConventions = namingConventions;
}
-
/*
* (non-Javadoc)
* @see org.richfaces.cdk.ValidatorModel#verify(org.richfaces.cdk.model.ComponentLibrary)
*/
@Override
public void verify(ComponentLibrary library) throws CdkException {
- verifyRenderers(library);
+ verifyRenderers();
verifyComponents(library);
// After all, merge all similar elements.
compact(library.getComponents());
}
- protected void verifyRenderers(ComponentLibrary library) {
+ protected void verifyRenderers() {
for (RenderKitModel.Id renderKitId : library.getRenderKits().keySet()) {
// Check render kit name and class.
RenderKitModel renderKit = library.getRenderKits().get(renderKitId);
@@ -93,7 +102,7 @@
}
private NamingConventions getNamingConventions() throws CdkException {
- return context.getWorker(NamingConventions.class);
+ return namingConventions;
}
protected void compact(Collection<?> collection) {
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/AptBuilder.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/AptBuilder.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/AptBuilder.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -25,35 +25,18 @@
package org.richfaces.cdk.apt;
-import org.richfaces.cdk.CdkClassLoader;
-import org.richfaces.cdk.CdkContext;
-import org.richfaces.cdk.CdkException;
-import org.richfaces.cdk.Logger;
-import org.richfaces.cdk.ModelBuilder;
-import org.richfaces.cdk.StandardOutputs;
-import org.richfaces.cdk.StandardSources;
-
import java.io.File;
-import java.io.IOException;
-import java.util.ArrayList;
import java.util.Arrays;
-import java.util.Collections;
-import java.util.List;
-import java.util.Locale;
import javax.annotation.processing.Processor;
import javax.inject.Inject;
-import javax.tools.Diagnostic;
-import javax.tools.DiagnosticListener;
-import javax.tools.JavaCompiler;
-import javax.tools.JavaFileObject;
-import javax.tools.StandardJavaFileManager;
-import javax.tools.StandardLocation;
-import javax.tools.ToolProvider;
-import javax.tools.Diagnostic.Kind;
import javax.tools.JavaCompiler.CompilationTask;
-import com.google.common.collect.Lists;
+import org.richfaces.cdk.CdkException;
+import org.richfaces.cdk.Logger;
+import org.richfaces.cdk.ModelBuilder;
+import org.richfaces.cdk.Source;
+import org.richfaces.cdk.StandardSources;
/**
* <p class="changed_added_4_0">
@@ -66,69 +49,19 @@
public class AptBuilder implements ModelBuilder {
@Inject
private static Logger LOG ;
- private boolean initialized = false;
- private CdkContext context;
- private StandardJavaFileManager fileManager;
- private JavaCompiler javaCompiler;
- private Locale locale;
- private Iterable<String> options;
+ @Inject
+ private Processor cdkProcessor;
+ @Inject
+ @Source(StandardSources.JAVA_SOURCES)
+ private Iterable<File> sources;
+
+ @Inject
+ private CompilationTaskFactory taskFactory;
- /**
- * <p class="changed_added_4_0">Builder method that creates and initializes compiler instance.
- * That instance can be reused for consecuence processing.</p>
- * @param context
- * @return
- */
- @Override
- public void init(CdkContext context) {
- this.context = context;
- JavaCompiler javaCompiler = ToolProvider.getSystemJavaCompiler();
-
- setJavaCompiler(javaCompiler);
-
- ArrayList<String> options = new ArrayList<String>();
-
- options.add("-proc:only");
- options.add("-implicit:class");
- options.add("-verbose");
-
- CdkClassLoader classPathLoader = context.getLoader();
-
- setOptions(options);
-
- // TODO - provide source files locale.
- setLocale(Locale.getDefault());
-
- // TODO -set locale and charset for platform-independent processing. Provide own diagnostics listener.
-
- StandardJavaFileManager stdFileManager = javaCompiler.getStandardFileManager(null, null, null);
- try {
- stdFileManager.setLocation(StandardLocation.CLASS_PATH, classPathLoader.getFiles());
- File outputFolder = context.getOutputFolder(StandardOutputs.COMPONENT_CLASSES);
- if (null != outputFolder) {
- stdFileManager.setLocation(StandardLocation.SOURCE_OUTPUT,Collections.singleton(outputFolder));
- }
- Iterable<File> sourceFolders = context.getSourceFolders(StandardSources.JAVA_SOURCES);
-
- if (null != sourceFolders && sourceFolders.iterator().hasNext()) {
- stdFileManager.setLocation(StandardLocation.SOURCE_PATH, sourceFolders);
- }
- } catch (IOException e) {
- throw new CdkException(e);
- }
- setFileManager(stdFileManager);
- initialized = true;
- }
-
public void build() throws CdkException {
- if (!initialized) {
- throw new CdkException("Annotation processor is not initialized");
- }
- CdkProcessor processor = context.getWorker(CdkProcessor.class);
-
- process(context.getSources(StandardSources.JAVA_SOURCES), processor);
+ process(sources, cdkProcessor);
}
/**
@@ -138,103 +71,16 @@
* @throws AptException
*/
protected void process(Iterable<File> sources, Processor... processors) throws AptException {
- final List<String> messages = Lists.newArrayList();
- DiagnosticListener<JavaFileObject> listener = new DiagnosticListener<JavaFileObject>() {
- @Override
- public void report(Diagnostic<? extends JavaFileObject> diagnostic) {
- LOG.debug("LOG: " + diagnostic.getMessage(null));
-
- if (Kind.ERROR.equals(diagnostic.getKind())) {
- messages.add(diagnostic.getMessage(null));
- }
- }
- };
-
- Iterable<? extends JavaFileObject> sourceObjects = getFileManager().getJavaFileObjectsFromFiles(sources);
-
- if (sourceObjects != null && sourceObjects.iterator().hasNext()) {
- CompilationTask task = getJavaCompiler().getTask(null, getFileManager(), listener, getOptions(), null,
- sourceObjects);
-
+ if (sources != null && sources.iterator().hasNext()) {
+ CompilationTask task = taskFactory.getTask(sources);
task.setProcessors(Arrays.asList(processors));
- task.setLocale(locale);
if (!task.call()) {
- throw new AptException("Compilation error: " + messages);
+ throw new AptException("Compilation error");
}
} else {
LOG.info("No compilation units found, skipping Java sources processing");
}
}
- /**
- * <p class="changed_added_4_0">
- * </p>
- *
- * @return the options
- */
- protected Iterable<String> getOptions() {
- return options;
- }
-
- /**
- * <p class="changed_added_4_0">
- * </p>
- *
- * @param options
- * the options to set
- */
- protected void setOptions(Iterable<String> options) {
- this.options = options;
- }
-
- /**
- * <p class="changed_added_4_0"></p>
- * @return the fileManager
- */
- protected StandardJavaFileManager getFileManager() {
- return fileManager;
- }
-
- /**
- * <p class="changed_added_4_0"></p>
- * @param fileManager the fileManager to set
- */
- protected void setFileManager(StandardJavaFileManager fileManager) {
- this.fileManager = fileManager;
- }
-
- /**
- * <p class="changed_added_4_0"></p>
- * @param javaCompiler the javaCompiler to set
- */
- protected void setJavaCompiler(JavaCompiler javaCompiler) {
- this.javaCompiler = javaCompiler;
- }
-
- /**
- * <p class="changed_added_4_0">
- * </p>
- *
- * @return the javaCompiler
- */
- protected JavaCompiler getJavaCompiler() {
- return javaCompiler;
- }
-
- /**
- * <p class="changed_added_4_0"></p>
- * @return the locale
- */
- public Locale getLocale() {
- return locale;
- }
-
- /**
- * <p class="changed_added_4_0"></p>
- * @param locale the locale to set
- */
- public void setLocale(Locale locale) {
- this.locale = locale;
- }
-}
+ }
Added: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/AptModule.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/AptModule.java (rev 0)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/AptModule.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -0,0 +1,54 @@
+/*
+ * $Id$
+ *
+ * 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.cdk.apt;
+
+import javax.annotation.processing.Processor;
+
+import com.google.inject.AbstractModule;
+import com.google.inject.multibindings.Multibinder;
+
+/**
+ * <p class="changed_added_4_0"></p>
+ * @author asmirnov(a)exadel.com
+ *
+ */
+public class AptModule extends AbstractModule {
+
+ /* (non-Javadoc)
+ * @see com.google.inject.AbstractModule#configure()
+ */
+ @Override
+ protected void configure() {
+ Multibinder<CdkAnnotationProcessor> setBinder = Multibinder.newSetBinder(binder(),CdkAnnotationProcessor.class);
+ setBinder.addBinding().to(ComponentProcessor.class);
+ setBinder.addBinding().to(FacesComponentProcessor.class);
+ setBinder.addBinding().to(BehaviorProcessor.class);
+ setBinder.addBinding().to(RendererProcessor.class);
+ setBinder.addBinding().to(ConverterProcessor.class);
+ setBinder.addBinding().to(ValidatorProcessor.class);
+ bind(Processor.class).to(CdkProcessor.class);
+ bind(CompilationTaskFactory.class).to(TaskFactoryImpl.class);
+ }
+
+}
Property changes on: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/AptModule.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/CdkProcessor.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/CdkProcessor.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/CdkProcessor.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -36,9 +36,9 @@
import org.richfaces.cdk.CdkProcessingException;
import org.richfaces.cdk.CdkWorker;
import org.richfaces.cdk.ModelValidator;
+import org.richfaces.cdk.OutputType;
import org.richfaces.cdk.StandardOutputs;
import org.richfaces.cdk.StandardSources;
-import org.richfaces.cdk.CdkContext.OutputType;
import com.google.common.collect.ImmutableList;
Added: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/CompilationTaskFactory.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/CompilationTaskFactory.java (rev 0)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/CompilationTaskFactory.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -0,0 +1,39 @@
+/*
+ * $Id$
+ *
+ * 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.cdk.apt;
+
+import java.io.File;
+
+import javax.tools.JavaCompiler.CompilationTask;
+
+/**
+ * <p class="changed_added_4_0"></p>
+ * @author asmirnov(a)exadel.com
+ *
+ */
+public interface CompilationTaskFactory {
+
+ CompilationTask getTask(Iterable<File> sources) throws AptException;
+
+}
Property changes on: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/CompilationTaskFactory.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/TaskFactoryImpl.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/TaskFactoryImpl.java (rev 0)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/TaskFactoryImpl.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -0,0 +1,157 @@
+/*
+ * $Id$
+ *
+ * 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.cdk.apt;
+
+import java.io.File;
+import java.io.IOException;
+import java.nio.charset.Charset;
+import java.util.Collections;
+import java.util.Locale;
+
+import javax.inject.Inject;
+import javax.tools.Diagnostic;
+import javax.tools.DiagnosticListener;
+import javax.tools.JavaCompiler;
+import javax.tools.JavaFileObject;
+import javax.tools.StandardJavaFileManager;
+import javax.tools.StandardLocation;
+import javax.tools.ToolProvider;
+import javax.tools.Diagnostic.Kind;
+import javax.tools.JavaCompiler.CompilationTask;
+
+import org.richfaces.cdk.CdkClassLoader;
+import org.richfaces.cdk.CdkException;
+import org.richfaces.cdk.Logger;
+import org.richfaces.cdk.OutputFolder;
+import org.richfaces.cdk.Source;
+import org.richfaces.cdk.StandardOutputFolders;
+import org.richfaces.cdk.StandardOutputs;
+import org.richfaces.cdk.StandardSources;
+
+import com.google.common.collect.ImmutableCollection;
+import com.google.common.collect.ImmutableList;
+
+/**
+ * <p class="changed_added_4_0">
+ * </p>
+ *
+ * @author asmirnov(a)exadel.com
+ *
+ */
+public class TaskFactoryImpl implements CompilationTaskFactory {
+
+ private final class DiagnosticListenerImplementation implements DiagnosticListener<JavaFileObject> {
+
+ @Override
+ public void report(Diagnostic<? extends JavaFileObject> diagnostic) {
+ StringBuilder message = new StringBuilder(diagnostic.getMessage(locale));
+ JavaFileObject source = diagnostic.getSource();
+ if (null != source) {
+ message.append(", in the file:").append(source.getName()).append(" at line ").append(
+ diagnostic.getLineNumber()).append(" in column ").append(diagnostic.getColumnNumber());
+ }
+ Kind kind = diagnostic.getKind();
+ if (Kind.ERROR.equals(kind)) {
+ LOG.error(message);
+ } else if (Kind.MANDATORY_WARNING.equals(kind) || Kind.WARNING.equals(kind)) {
+ LOG.warn(message);
+ } else if (Kind.NOTE.equals(kind)) {
+ LOG.info(message);
+ } else {
+ LOG.debug(message);
+ }
+ }
+ }
+
+ private static final ImmutableCollection<String> options = ImmutableList.of("-proc:only","-implicit:class","-verbose");
+
+ @Inject
+ private Logger LOG;
+
+ @Inject
+ private Locale locale;
+
+ @Inject
+ private Charset charset;
+
+ @Inject
+ private CdkClassLoader classPathLoader;
+
+ @Inject
+ @OutputFolder(StandardOutputFolders.JAVA_CLASSES)
+ private File outputFolder;
+
+ @Inject
+ @Source(StandardSources.JAVA_SOURCES)
+ private Iterable<File> sourceFolders;
+
+ private JavaCompiler javaCompiler;
+
+ private StandardJavaFileManager fileManager;
+
+ private DiagnosticListener<JavaFileObject> diagnosticListener = new DiagnosticListenerImplementation();
+
+ /*
+ * (non-Javadoc)
+ *
+ * @see org.richfaces.cdk.apt.CompilationTaskFactory#getTask(java.lang.Iterable)
+ */
+ @Override
+ public CompilationTask getTask(Iterable<File> sources) throws AptException {
+ diagnosticListener = new DiagnosticListenerImplementation();
+ Iterable<? extends JavaFileObject> sourceObjects = getFileManager().getJavaFileObjectsFromFiles(sources);
+ CompilationTask task =
+ getJavaCompiler().getTask(null, getFileManager(), diagnosticListener, options, null, sourceObjects);
+ task.setLocale(locale);
+ return task;
+ }
+
+ private StandardJavaFileManager getFileManager() {
+ if (fileManager == null) {
+ fileManager = javaCompiler.getStandardFileManager(diagnosticListener, locale, charset);
+ try {
+ fileManager.setLocation(StandardLocation.CLASS_PATH, classPathLoader.getFiles());
+ if (null != outputFolder) {
+ fileManager.setLocation(StandardLocation.SOURCE_OUTPUT,Collections.singleton(outputFolder));
+ }
+
+ if (null != sourceFolders && sourceFolders.iterator().hasNext()) {
+ fileManager.setLocation(StandardLocation.SOURCE_PATH, sourceFolders);
+ }
+ } catch (IOException e) {
+ throw new CdkException("Cannot configure JavaFileManager for compilator",e);
+ }
+
+ }
+ return fileManager;
+ }
+
+ private JavaCompiler getJavaCompiler() {
+ if (javaCompiler == null) {
+ javaCompiler = ToolProvider.getSystemJavaCompiler();
+ }
+ return javaCompiler;
+ }
+
+}
Property changes on: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/apt/TaskFactoryImpl.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/freemarker/FreeMakerModule.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/freemarker/FreeMakerModule.java (rev 0)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/freemarker/FreeMakerModule.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -0,0 +1,44 @@
+/*
+ * $Id$
+ *
+ * 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.cdk.freemarker;
+
+import com.google.inject.AbstractModule;
+
+/**
+ * <p class="changed_added_4_0"></p>
+ * @author asmirnov(a)exadel.com
+ *
+ */
+public class FreeMakerModule extends AbstractModule {
+
+ /* (non-Javadoc)
+ * @see com.google.inject.AbstractModule#configure()
+ */
+ @Override
+ protected void configure() {
+ // TODO Auto-generated method stub
+
+ }
+
+}
Property changes on: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/freemarker/FreeMakerModule.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/freemarker/FreeMarkerRenderer.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/freemarker/FreeMarkerRenderer.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/freemarker/FreeMarkerRenderer.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -29,9 +29,9 @@
import freemarker.template.Template;
import freemarker.template.TemplateException;
import org.richfaces.cdk.CdkContext;
-import org.richfaces.cdk.CdkContext.OutputType;
import org.richfaces.cdk.CdkException;
import org.richfaces.cdk.CdkWriter;
+import org.richfaces.cdk.OutputType;
import org.richfaces.cdk.model.LibraryVisitor;
import org.richfaces.cdk.model.Trackable;
import org.richfaces.cdk.model.Visitable;
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/freemarker/ValidatorTaglibGenerator.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/freemarker/ValidatorTaglibGenerator.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/freemarker/ValidatorTaglibGenerator.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -22,8 +22,8 @@
package org.richfaces.cdk.freemarker;
-import org.richfaces.cdk.CdkContext;
import org.richfaces.cdk.CdkException;
+import org.richfaces.cdk.OutputType;
import org.richfaces.cdk.StandardOutputs;
import org.richfaces.cdk.model.ComponentLibrary;
import org.richfaces.cdk.model.ValidatorModel;
@@ -53,7 +53,7 @@
}
@Override
- protected CdkContext.OutputType getOutputType() {
+ protected OutputType getOutputType() {
return StandardOutputs.TAG_LIBRARY;
}
}
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/BehaviorClassGenerator.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/BehaviorClassGenerator.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/BehaviorClassGenerator.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -29,6 +29,7 @@
import org.richfaces.cdk.CdkWriter;
import org.richfaces.cdk.CdkContext;
import org.richfaces.cdk.CdkException;
+import org.richfaces.cdk.OutputType;
import org.richfaces.cdk.StandardOutputs;
import java.io.File;
@@ -68,7 +69,7 @@
}
@Override
- protected CdkContext.OutputType getOutputType() {
+ protected OutputType getOutputType() {
return StandardOutputs.BEHAVIOR_CLASSES;
}
}
Added: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ClassGeneratorModule.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ClassGeneratorModule.java (rev 0)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ClassGeneratorModule.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -0,0 +1,50 @@
+/*
+ * $Id$
+ *
+ * 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.cdk.generate.java;
+
+import org.richfaces.cdk.CdkWriter;
+
+import com.google.inject.AbstractModule;
+import com.google.inject.multibindings.Multibinder;
+
+/**
+ * <p class="changed_added_4_0"></p>
+ * @author asmirnov(a)exadel.com
+ *
+ */
+public class ClassGeneratorModule extends AbstractModule {
+
+ /* (non-Javadoc)
+ * @see com.google.inject.AbstractModule#configure()
+ */
+ @Override
+ protected void configure() {
+ Multibinder<CdkWriter> setBinder = Multibinder.newSetBinder(binder(),CdkWriter.class);
+ setBinder.addBinding().to(ComponentClassGenerator.class);
+ setBinder.addBinding().to(ConverterClassGenerator.class);
+ setBinder.addBinding().to(ValidatorClassGenerator.class);
+ setBinder.addBinding().to(BehaviorClassGenerator.class);
+ }
+
+}
Property changes on: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ClassGeneratorModule.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ComponentClassGenerator.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ComponentClassGenerator.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ComponentClassGenerator.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -28,8 +28,8 @@
import org.richfaces.cdk.CdkContext;
import org.richfaces.cdk.CdkException;
import org.richfaces.cdk.CdkWriter;
+import org.richfaces.cdk.OutputType;
import org.richfaces.cdk.StandardOutputs;
-import org.richfaces.cdk.CdkContext.OutputType;
import org.richfaces.cdk.freemarker.FreeMarkerRenderer;
import org.richfaces.cdk.model.ComponentModel;
import org.richfaces.cdk.model.ComponentLibrary;
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ConverterClassGenerator.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ConverterClassGenerator.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ConverterClassGenerator.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -25,6 +25,7 @@
import org.richfaces.cdk.CdkContext;
import org.richfaces.cdk.CdkException;
import org.richfaces.cdk.CdkWriter;
+import org.richfaces.cdk.OutputType;
import org.richfaces.cdk.StandardOutputs;
import org.richfaces.cdk.freemarker.FreeMarkerRenderer;
import org.richfaces.cdk.model.ComponentLibrary;
@@ -63,7 +64,7 @@
}
@Override
- protected CdkContext.OutputType getOutputType() {
+ protected OutputType getOutputType() {
return StandardOutputs.CONVERTER_CLASSES;
}
}
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ValidatorClassGenerator.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ValidatorClassGenerator.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/generate/java/ValidatorClassGenerator.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -25,6 +25,7 @@
import org.richfaces.cdk.CdkContext;
import org.richfaces.cdk.CdkException;
import org.richfaces.cdk.CdkWriter;
+import org.richfaces.cdk.OutputType;
import org.richfaces.cdk.StandardOutputs;
import org.richfaces.cdk.freemarker.FreeMarkerRenderer;
import org.richfaces.cdk.model.ComponentLibrary;
@@ -63,7 +64,7 @@
}
@Override
- protected CdkContext.OutputType getOutputType() {
+ protected OutputType getOutputType() {
return StandardOutputs.VALIDATOR_CLASSES;
}
}
Added: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/model/ModelModule.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/model/ModelModule.java (rev 0)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/model/ModelModule.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -0,0 +1,44 @@
+/*
+ * $Id$
+ *
+ * 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.cdk.model;
+
+import com.google.inject.AbstractModule;
+import com.google.inject.Singleton;
+
+/**
+ * <p class="changed_added_4_0"></p>
+ * @author asmirnov(a)exadel.com
+ *
+ */
+public class ModelModule extends AbstractModule {
+
+ /* (non-Javadoc)
+ * @see com.google.inject.AbstractModule#configure()
+ */
+ @Override
+ protected void configure() {
+ bind(ComponentLibrary.class).in(Singleton.class);
+ }
+
+}
Property changes on: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/model/ModelModule.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/TemplateModule.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/TemplateModule.java (rev 0)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/TemplateModule.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -0,0 +1,49 @@
+/*
+ * $Id$
+ *
+ * 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.cdk.templatecompiler;
+
+import org.richfaces.cdk.CdkWriter;
+import org.richfaces.cdk.ModelBuilder;
+
+import com.google.inject.AbstractModule;
+import com.google.inject.multibindings.Multibinder;
+
+/**
+ * <p class="changed_added_4_0"></p>
+ * @author asmirnov(a)exadel.com
+ *
+ */
+public class TemplateModule extends AbstractModule {
+
+ /* (non-Javadoc)
+ * @see com.google.inject.AbstractModule#configure()
+ */
+ @Override
+ protected void configure() {
+ Multibinder<ModelBuilder> modelBinder = Multibinder.newSetBinder(binder(), ModelBuilder.class);
+ modelBinder.addBinding().to(RendererTemplateParser.class);
+ Multibinder.newSetBinder(binder(),CdkWriter.class).addBinding().to(RendererClassGenerator.class);
+ }
+
+}
Property changes on: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/TemplateModule.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/xmlconfig/CdkEntityResolver.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/xmlconfig/CdkEntityResolver.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/xmlconfig/CdkEntityResolver.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -25,7 +25,7 @@
import com.google.common.collect.ImmutableMap;
import org.richfaces.cdk.CdkContext;
-import org.richfaces.cdk.CdkContext.SourceType;
+import org.richfaces.cdk.SourceType;
import org.richfaces.cdk.StandardSources;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
Modified: root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/xmlconfig/XmlModule.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/xmlconfig/XmlModule.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/main/java/org/richfaces/cdk/xmlconfig/XmlModule.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -22,9 +22,13 @@
package org.richfaces.cdk.xmlconfig;
-import org.xml.sax.EntityResolver;
+import org.richfaces.cdk.CdkWriter;
+import org.richfaces.cdk.ModelBuilder;
+import org.xml.sax.ext.EntityResolver2;
import com.google.inject.AbstractModule;
+import com.google.inject.multibindings.Multibinder;
+import com.sun.xml.bind.marshaller.NamespacePrefixMapper;
/**
* @author asmirnov
@@ -38,8 +42,12 @@
*/
@Override
protected void configure() {
- bind(EntityResolver.class).to(CdkEntityResolver.class);
+ bind(EntityResolver2.class).to(CdkEntityResolver.class);
bind(JAXB.class).to(JAXBBinding.class);
+ bind(NamespacePrefixMapper.class).to(FacesConfigNamespacePreffixMapper.class);
+ Multibinder<ModelBuilder> modelBinder = Multibinder.newSetBinder(binder(), ModelBuilder.class);
+ modelBinder.addBinding().to(FacesConfigParser.class);
+ Multibinder.newSetBinder(binder(),CdkWriter.class).addBinding().to(FacesConfigGenerator.class);
}
}
Modified: root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/apt/CdkProcessorTest.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/apt/CdkProcessorTest.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/apt/CdkProcessorTest.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -58,9 +58,9 @@
import org.richfaces.cdk.CdkContext;
import org.richfaces.cdk.CdkTestBase;
+import org.richfaces.cdk.OutputType;
import org.richfaces.cdk.StandardOutputs;
import org.richfaces.cdk.StandardSources;
-import org.richfaces.cdk.CdkContext.OutputType;
import org.richfaces.cdk.annotations.Attribute;
import org.richfaces.cdk.annotations.Component;
import org.richfaces.cdk.apt.SourceUtils.BeanProperty;
Modified: root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/freemarker/FreeMarkerRendererTest.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/freemarker/FreeMarkerRendererTest.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/freemarker/FreeMarkerRendererTest.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -10,8 +10,8 @@
import org.richfaces.cdk.CdkContext;
import org.richfaces.cdk.CdkException;
import org.richfaces.cdk.CdkTestBase;
+import org.richfaces.cdk.OutputType;
import org.richfaces.cdk.StandardSources;
-import org.richfaces.cdk.CdkContext.OutputType;
import org.richfaces.cdk.model.ComponentModel;
import org.richfaces.cdk.model.Visitable;
Modified: root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/freemarker/ValidatorTaglibGeneratorTest.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/freemarker/ValidatorTaglibGeneratorTest.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/freemarker/ValidatorTaglibGeneratorTest.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -30,6 +30,7 @@
import org.richfaces.cdk.CdkContext;
import org.richfaces.cdk.CdkException;
import org.richfaces.cdk.CdkTestBase;
+import org.richfaces.cdk.OutputType;
import org.richfaces.cdk.StandardSources;
import org.richfaces.cdk.model.ClassDescription;
import org.richfaces.cdk.model.ComponentLibrary;
@@ -114,7 +115,7 @@
CdkContext cdkContext = createMock(CdkContext.class);
expect(cdkContext.getSourceFolders(StandardSources.JAVA_SOURCES)).andStubReturn(testSourceDirectory);
- expect(cdkContext.getOutputFolder((org.richfaces.cdk.CdkContext.OutputType) anyObject())).andStubReturn(null);
+ expect(cdkContext.getOutputFolder((org.richfaces.cdk.OutputType) anyObject())).andStubReturn(null);
expect(cdkContext.getLoader()).andStubReturn(createClassLoader());
replay(cdkContext);
Modified: root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/generate/java/AbstractClassGeneratorTest.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/generate/java/AbstractClassGeneratorTest.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/generate/java/AbstractClassGeneratorTest.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -29,6 +29,7 @@
import org.junit.Assert;
import org.richfaces.cdk.CdkContext;
import org.richfaces.cdk.CdkTestBase;
+import org.richfaces.cdk.OutputType;
import org.richfaces.cdk.StandardSources;
import org.richfaces.cdk.model.ClassDescription;
import org.richfaces.cdk.model.EventName;
@@ -52,7 +53,7 @@
CdkContext cdkContext = createMock(CdkContext.class);
expect(cdkContext.getSourceFolders(StandardSources.JAVA_SOURCES)).andStubReturn(testSourceDirectory);
- expect(cdkContext.getOutputFolder((org.richfaces.cdk.CdkContext.OutputType) anyObject())).andStubReturn(null);
+ expect(cdkContext.getOutputFolder((org.richfaces.cdk.OutputType) anyObject())).andStubReturn(null);
expect(cdkContext.getLoader()).andStubReturn(createClassLoader());
replay(cdkContext);
Modified: root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/xmlconfig/CdkResolverTest.java
===================================================================
--- root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/xmlconfig/CdkResolverTest.java 2010-01-27 23:19:55 UTC (rev 16370)
+++ root/cdk/branches/guice/plugins/generator/src/test/java/org/richfaces/cdk/xmlconfig/CdkResolverTest.java 2010-01-28 01:49:03 UTC (rev 16371)
@@ -10,6 +10,7 @@
import org.richfaces.cdk.CdkClassLoader;
import org.richfaces.cdk.CdkContext;
import org.richfaces.cdk.CdkTestBase;
+import org.richfaces.cdk.OutputType;
import org.richfaces.cdk.StandardSources;
import org.xml.sax.InputSource;
@@ -73,7 +74,7 @@
CdkContext cdkContext = createMock(CdkContext.class);
expect(cdkContext.getSourceFolders(StandardSources.JAVA_SOURCES)).andStubReturn(testSourceDirectory);
- expect(cdkContext.getOutputFolder((org.richfaces.cdk.CdkContext.OutputType) anyObject())).andStubReturn(null);
+ expect(cdkContext.getOutputFolder((org.richfaces.cdk.OutputType) anyObject())).andStubReturn(null);
return cdkContext;
}
15 years
JBoss Rich Faces SVN: r16370 - branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/webapp.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-01-27 18:19:55 -0500 (Wed, 27 Jan 2010)
New Revision: 16370
Modified:
branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/webapp/BaseXMLFilter.java
branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/webapp/FilterServletResponseWrapper.java
Log:
https://jira.jboss.org/jira/browse/RF-8277
Modified: branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/webapp/BaseXMLFilter.java
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/webapp/BaseXMLFilter.java 2010-01-27 16:26:06 UTC (rev 16369)
+++ branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/webapp/BaseXMLFilter.java 2010-01-27 23:19:55 UTC (rev 16370)
@@ -243,6 +243,7 @@
String characterEncoding = servletResponseWrapper
.getCharacterEncoding();
Writer output;
+ int responseStatus = servletResponseWrapper.getStatus();
if (null != redirectLocation) {
if (isAjaxRequest(request)) {
// Special handling of redirect - client-side script must
@@ -274,118 +275,121 @@
return;
+ } else if (HttpServletResponse.SC_NO_CONTENT == responseStatus || HttpServletResponse.SC_NOT_MODIFIED == responseStatus) {
+ // https://jira.jboss.org/jira/browse/RF-8277 - no content response.
+ return;
} else {
- if ("true".equals(servletResponseWrapper.getHeaders().get(
- AjaxContainerRenderer.AJAX_FLAG_HEADER))) {
- if (log.isDebugEnabled()) {
- log
- .debug("Process response to well-formed XML for AJAX XMLHttpRequest parser");
- }
- // Not caching AJAX request
- response.setHeader("Cache-Control",
- "no-cache, must-revalidate, max_age=0, no-store");
- response.setHeader("Expires", "0");
- response.setHeader("Pragma", "no-cache");
- // response.setCharacterEncoding(servletResponseWrapper
- // .getCharacterEncoding()); //
- // JSContentHandler.DEFAULT_ENCODING);
- // Set the content-type. For AJAX responses default encoding -
- // UTF8.
- // TODO - for null encoding, setup only Output encoding for
- // filter ?
- String outputEncoding = "UTF-8";
- String contentType = getMimetype() + ";charset=" + outputEncoding;
- response.setContentType(contentType);
- parser = getParser(getMimetype(), true, viewId);
- if (null == parser) {
- throw new ServletException(Messages.getMessage(
- Messages.PARSER_NOT_INSTANTIATED_ERROR, contentType));
- }
- output = createOutputWriter(response, outputEncoding);
- parser.setDoctype(getPublicid());
- parser.setInputEncoding(characterEncoding);
- parser.setOutputEncoding(outputEncoding);
- parser.setViewState((String) request
- .getAttribute(AjaxViewHandler.SERIALIZED_STATE_KEY));
- } else {
- // setup conversion reules for output contentType, send directly
- // if content not
- // supported by tidy.
- String contentType = servletResponseWrapper.getContentType();
- String contentTypeCharset = contentType;
- if (log.isDebugEnabled()) {
- log.debug("create HTML/XML parser for content type: "
- + contentType);
- }
- // if(contentType == null){
- // contentType = request.getContentType();
- // }
- boolean forcenotrf = isForcenotrf();
-
- if (forcenotrf || !servletResponseWrapper.isError()) {
- if (forcenotrf || (headEvents != null && headEvents.length != 0)) {
- if (contentTypeCharset != null) {
- if (contentTypeCharset.indexOf("charset") < 0
- && null != characterEncoding) {
- contentTypeCharset += ";charset=" + characterEncoding;
- }
- parser = getParser(contentTypeCharset, false, viewId);
- if (null == parser) {
- if (log.isDebugEnabled()) {
- log
- .debug("Parser not have support for the such content type, send response as-is");
+ if ("true".equals(servletResponseWrapper.getHeaders().get(
+ AjaxContainerRenderer.AJAX_FLAG_HEADER))) {
+ if (log.isDebugEnabled()) {
+ log
+ .debug("Process response to well-formed XML for AJAX XMLHttpRequest parser");
+ }
+ // Not caching AJAX request
+ response.setHeader("Cache-Control",
+ "no-cache, must-revalidate, max_age=0, no-store");
+ response.setHeader("Expires", "0");
+ response.setHeader("Pragma", "no-cache");
+ // response.setCharacterEncoding(servletResponseWrapper
+ // .getCharacterEncoding()); //
+ // JSContentHandler.DEFAULT_ENCODING);
+ // Set the content-type. For AJAX responses default encoding -
+ // UTF8.
+ // TODO - for null encoding, setup only Output encoding for
+ // filter ?
+ String outputEncoding = "UTF-8";
+ String contentType = getMimetype() + ";charset=" + outputEncoding;
+ response.setContentType(contentType);
+ parser = getParser(getMimetype(), true, viewId);
+ if (null == parser) {
+ throw new ServletException(Messages.getMessage(
+ Messages.PARSER_NOT_INSTANTIATED_ERROR, contentType));
+ }
+ output = createOutputWriter(response, outputEncoding);
+ parser.setDoctype(getPublicid());
+ parser.setInputEncoding(characterEncoding);
+ parser.setOutputEncoding(outputEncoding);
+ parser.setViewState((String) request
+ .getAttribute(AjaxViewHandler.SERIALIZED_STATE_KEY));
+ } else {
+ // setup conversion reules for output contentType, send directly
+ // if content not
+ // supported by tidy.
+ String contentType = servletResponseWrapper.getContentType();
+ String contentTypeCharset = contentType;
+ if (log.isDebugEnabled()) {
+ log.debug("create HTML/XML parser for content type: "
+ + contentType);
+ }
+ // if(contentType == null){
+ // contentType = request.getContentType();
+ // }
+ boolean forcenotrf = isForcenotrf();
+
+ if (forcenotrf || !servletResponseWrapper.isError()) {
+ if (forcenotrf || (headEvents != null && headEvents.length != 0)) {
+ if (contentTypeCharset != null) {
+ if (contentTypeCharset.indexOf("charset") < 0
+ && null != characterEncoding) {
+ contentTypeCharset += ";charset=" + characterEncoding;
}
+ parser = getParser(contentTypeCharset, false, viewId);
+ if (null == parser) {
+ if (log.isDebugEnabled()) {
+ log
+ .debug("Parser not have support for the such content type, send response as-is");
+ }
+ }
}
+ } else {
+ if (log.isDebugEnabled()) {
+ log.debug("No resource inclusions detected, send response as-is");
+ }
}
} else {
if (log.isDebugEnabled()) {
- log.debug("No resource inclusions detected, send response as-is");
+ log.debug("Servlet error occured, send response as-is");
}
}
- } else {
- if (log.isDebugEnabled()) {
- log.debug("Servlet error occured, send response as-is");
- }
- }
-
-
- // null or unsupported content type
- if (null == parser) {
- try {
- if (servletResponseWrapper.isUseWriter()) {
- if (contentTypeCharset != null) {
- response.setContentType(contentTypeCharset);
+
+
+ // null or unsupported content type
+ if (null == parser) {
+ try {
+ if (servletResponseWrapper.isUseWriter()) {
+ if (contentTypeCharset != null) {
+ response.setContentType(contentTypeCharset);
+ }
+
+ output = createOutputWriter(response,
+ characterEncoding);
+ servletResponseWrapper.sendContent(output);
+ } else if (servletResponseWrapper.isUseStream()) {
+ if (contentType != null) {
+ response.setContentType(contentType);
+ }
+
+ ServletOutputStream out = response.getOutputStream();
+ servletResponseWrapper.sendContent(out);
}
-
- output = createOutputWriter(response,
- characterEncoding);
- servletResponseWrapper.sendContent(output);
- } else if (servletResponseWrapper.isUseStream()) {
- if (contentType != null) {
- response.setContentType(contentType);
- }
-
- ServletOutputStream out = response.getOutputStream();
- servletResponseWrapper.sendContent(out);
+ } finally {
+ // reuseWrapper(servletResponseWrapper);
}
- } finally {
- // reuseWrapper(servletResponseWrapper);
+
+
+ return;
}
+
+ if (contentTypeCharset != null) {
+ response.setContentType(contentTypeCharset);
+ }
-
- return;
+ output = createOutputWriter(response, characterEncoding);
+
+ parser.setInputEncoding(characterEncoding);
+ parser.setOutputEncoding(characterEncoding);
}
-
- if (contentTypeCharset != null) {
- response.setContentType(contentTypeCharset);
- }
-
- output = createOutputWriter(response, characterEncoding);
-
- parser.setInputEncoding(characterEncoding);
- parser.setOutputEncoding(characterEncoding);
}
- }
try {
// Setup scripts and styles
Modified: branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/webapp/FilterServletResponseWrapper.java
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/webapp/FilterServletResponseWrapper.java 2010-01-27 16:26:06 UTC (rev 16369)
+++ branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/webapp/FilterServletResponseWrapper.java 2010-01-27 23:19:55 UTC (rev 16370)
@@ -100,6 +100,8 @@
private List<Cookie> cookies = new ArrayList<Cookie>();
+ private int status;
+
public FilterServletResponseWrapper(HttpServletResponse response) {
super(response);
}
@@ -630,6 +632,18 @@
public Collection<Cookie> getCookies() {
return cookies;
}
+
+ @Override
+ public void setStatus(int sc) {
+ this.status = sc;
+ super.setStatus(sc);
+ }
+
+ @Override
+ public void setStatus(int sc, String sm) {
+ this.status = sc;
+ super.setStatus(sc, sm);
+ }
public void sendError(int sc) throws IOException {
this.error = true;
@@ -644,4 +658,11 @@
public boolean isError() {
return error;
}
+
+ /**
+ * @return the status
+ */
+ public int getStatus() {
+ return status;
+ }
}
15 years
JBoss Rich Faces SVN: r16369 - in tags: 3.3.1.SP1 and 220 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2010-01-27 11:26:06 -0500 (Wed, 27 Jan 2010)
New Revision: 16369
Added:
tags/3.3.1.SP1/
tags/3.3.1.SP1/cdk/generator/src/main/resources/META-INF/templates/taglib.vm
tags/3.3.1.SP1/cdk/generator/src/main/resources/META-INF/templates12/taglib.vm
Removed:
tags/3.3.1.SP1/cdk/generator/src/main/resources/META-INF/templates/taglib.vm
tags/3.3.1.SP1/cdk/generator/src/main/resources/META-INF/templates12/taglib.vm
Modified:
tags/3.3.1.SP1/cdk/generator/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-jsf-component/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-seam-app/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-theme/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP1/cdk/maven-cdk-plugin/pom.xml
tags/3.3.1.SP1/cdk/maven-javascript-plugin/pom.xml
tags/3.3.1.SP1/cdk/maven-resource-dependency-plugin/pom.xml
tags/3.3.1.SP1/cdk/pom.xml
tags/3.3.1.SP1/docs/cdkguide/en/pom.xml
tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml
tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/modules/devsample.xml
tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/modules/setup.xml
tags/3.3.1.SP1/docs/cdkguide/pom.xml
tags/3.3.1.SP1/docs/common-resources/en/pom.xml
tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP1/docs/common-resources/pom.xml
tags/3.3.1.SP1/docs/faq/en/pom.xml
tags/3.3.1.SP1/docs/faq/pom.xml
tags/3.3.1.SP1/docs/highlight/pom.xml
tags/3.3.1.SP1/docs/migrationguide/en/pom.xml
tags/3.3.1.SP1/docs/migrationguide/pom.xml
tags/3.3.1.SP1/docs/photo_album_app_guide/en/pom.xml
tags/3.3.1.SP1/docs/photo_album_app_guide/pom.xml
tags/3.3.1.SP1/docs/pom.xml
tags/3.3.1.SP1/docs/userguide/en/pom.xml
tags/3.3.1.SP1/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
tags/3.3.1.SP1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.3.1.SP1/docs/userguide/pom.xml
tags/3.3.1.SP1/examples/photoalbum/assembly/pom.xml
tags/3.3.1.SP1/examples/photoalbum/pom.xml
tags/3.3.1.SP1/examples/photoalbum/source/ear/pom.xml
tags/3.3.1.SP1/examples/photoalbum/source/ejb/pom.xml
tags/3.3.1.SP1/examples/photoalbum/source/pom.xml
tags/3.3.1.SP1/examples/photoalbum/source/web/pom.xml
tags/3.3.1.SP1/examples/photoalbum/tests/pom.xml
tags/3.3.1.SP1/extensions/gwt/pom.xml
tags/3.3.1.SP1/extensions/pom.xml
tags/3.3.1.SP1/extensions/seam/pom.xml
tags/3.3.1.SP1/extensions/trinidad/pom.xml
tags/3.3.1.SP1/framework/api/pom.xml
tags/3.3.1.SP1/framework/impl/pom.xml
tags/3.3.1.SP1/framework/impl/src/main/java/org/richfaces/VersionBean.java
tags/3.3.1.SP1/framework/jsf-test/pom.xml
tags/3.3.1.SP1/framework/pom.xml
tags/3.3.1.SP1/framework/test/pom.xml
tags/3.3.1.SP1/pom.xml
tags/3.3.1.SP1/samples/beanValidatorSample/pom.xml
tags/3.3.1.SP1/samples/calendar-sample/pom.xml
tags/3.3.1.SP1/samples/colorPickerDemo/pom.xml
tags/3.3.1.SP1/samples/columnsDemo/pom.xml
tags/3.3.1.SP1/samples/combobox-sample/pom.xml
tags/3.3.1.SP1/samples/contextMenuDemo/pom.xml
tags/3.3.1.SP1/samples/createProject.sh
tags/3.3.1.SP1/samples/darkX/pom.xml
tags/3.3.1.SP1/samples/dataFilterSliderDemo/pom.xml
tags/3.3.1.SP1/samples/dataTableDemo/pom.xml
tags/3.3.1.SP1/samples/datascroller-sample/pom.xml
tags/3.3.1.SP1/samples/dragDropDemo/pom.xml
tags/3.3.1.SP1/samples/dropdownmenu-sample/pom.xml
tags/3.3.1.SP1/samples/editor-sample/pom.xml
tags/3.3.1.SP1/samples/editorSeam-sample/pom.xml
tags/3.3.1.SP1/samples/effect-sample/pom.xml
tags/3.3.1.SP1/samples/extendedDataTable-sample/pom.xml
tags/3.3.1.SP1/samples/fileUploadDemo/pom.xml
tags/3.3.1.SP1/samples/functions-demo/pom.xml
tags/3.3.1.SP1/samples/glassX/pom.xml
tags/3.3.1.SP1/samples/gmap-sample/pom.xml
tags/3.3.1.SP1/samples/hotKey-sample/pom.xml
tags/3.3.1.SP1/samples/inplaceInput-sample/pom.xml
tags/3.3.1.SP1/samples/inplaceSelect-sample/pom.xml
tags/3.3.1.SP1/samples/inputNumberSliderDemo/pom.xml
tags/3.3.1.SP1/samples/inputNumberSpinnerDemo/pom.xml
tags/3.3.1.SP1/samples/jQuery-sample/pom.xml
tags/3.3.1.SP1/samples/jira-data/pom.xml
tags/3.3.1.SP1/samples/laguna/pom.xml
tags/3.3.1.SP1/samples/layout-sample/pom.xml
tags/3.3.1.SP1/samples/listShuttleDemo/pom.xml
tags/3.3.1.SP1/samples/local-value-demo/pom.xml
tags/3.3.1.SP1/samples/modalpanel-sample/pom.xml
tags/3.3.1.SP1/samples/orderingListDemo/pom.xml
tags/3.3.1.SP1/samples/panel-sample/pom.xml
tags/3.3.1.SP1/samples/panelbar-sample/pom.xml
tags/3.3.1.SP1/samples/panelmenu-sample/pom.xml
tags/3.3.1.SP1/samples/pickList-sample/pom.xml
tags/3.3.1.SP1/samples/pom.xml
tags/3.3.1.SP1/samples/progressBarDemo/pom.xml
tags/3.3.1.SP1/samples/queue-sample/pom.xml
tags/3.3.1.SP1/samples/rich-message-demo/pom.xml
tags/3.3.1.SP1/samples/richfaces-art-datatable/pom.xml
tags/3.3.1.SP1/samples/richfaces-demo/pom.xml
tags/3.3.1.SP1/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.3.1.SP1/samples/richfaces-ear-demo/pom.xml
tags/3.3.1.SP1/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.3.1.SP1/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.3.1.SP1/samples/scrollableDataTableDemo/pom.xml
tags/3.3.1.SP1/samples/seamEAR/ear/pom.xml
tags/3.3.1.SP1/samples/seamEAR/ejbs/pom.xml
tags/3.3.1.SP1/samples/seamEAR/pom.xml
tags/3.3.1.SP1/samples/seamEAR/primary-source/pom.xml
tags/3.3.1.SP1/samples/seamEAR/projects/logging/pom.xml
tags/3.3.1.SP1/samples/seamEAR/projects/pom.xml
tags/3.3.1.SP1/samples/seamEAR/wars/pom.xml
tags/3.3.1.SP1/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.3.1.SP1/samples/seamIntegration/pom.xml
tags/3.3.1.SP1/samples/separator-sample/pom.xml
tags/3.3.1.SP1/samples/simpleTogglePanel-sample/pom.xml
tags/3.3.1.SP1/samples/skins/pom.xml
tags/3.3.1.SP1/samples/sortingFilteringDemo/pom.xml
tags/3.3.1.SP1/samples/state-sample/pom.xml
tags/3.3.1.SP1/samples/stdcomponents-sample/pom.xml
tags/3.3.1.SP1/samples/suggestionbox-sample/pom.xml
tags/3.3.1.SP1/samples/tabPanelDemo/pom.xml
tags/3.3.1.SP1/samples/themes/pom.xml
tags/3.3.1.SP1/samples/togglePanel-sample/pom.xml
tags/3.3.1.SP1/samples/tomahawkCompability/pom.xml
tags/3.3.1.SP1/samples/toolBarDemo/pom.xml
tags/3.3.1.SP1/samples/tooltip-sample/pom.xml
tags/3.3.1.SP1/samples/tree-demo/pom.xml
tags/3.3.1.SP1/samples/treeModelDemo/pom.xml
tags/3.3.1.SP1/samples/violetRays/pom.xml
tags/3.3.1.SP1/samples/virtualEarth-sample/pom.xml
tags/3.3.1.SP1/sandbox/api/pom.xml
tags/3.3.1.SP1/sandbox/cdk/pom.xml
tags/3.3.1.SP1/sandbox/impl/pom.xml
tags/3.3.1.SP1/sandbox/pom.xml
tags/3.3.1.SP1/sandbox/samples/dialog-window-sample/pom.xml
tags/3.3.1.SP1/sandbox/samples/editorOld-sample/pom.xml
tags/3.3.1.SP1/sandbox/samples/fileUploadPOC/pom.xml
tags/3.3.1.SP1/sandbox/samples/maven-rd-plugin-sample/pom.xml
tags/3.3.1.SP1/sandbox/samples/panel2-sample/pom.xml
tags/3.3.1.SP1/sandbox/samples/pom.xml
tags/3.3.1.SP1/sandbox/samples/rex-demo/pom.xml
tags/3.3.1.SP1/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.3.1.SP1/sandbox/ui/create.bat
tags/3.3.1.SP1/sandbox/ui/create.sh
tags/3.3.1.SP1/sandbox/ui/dialog-window/pom.xml
tags/3.3.1.SP1/sandbox/ui/editorOld/pom.xml
tags/3.3.1.SP1/sandbox/ui/panel2/pom.xml
tags/3.3.1.SP1/sandbox/ui/pom.xml
tags/3.3.1.SP1/sandbox/ui/rex-button/pom.xml
tags/3.3.1.SP1/sandbox/ui/rex-messageBox/pom.xml
tags/3.3.1.SP1/sandbox/ui/rex-resizable/pom.xml
tags/3.3.1.SP1/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.3.1.SP1/sandbox/ui/sortableHeader/pom.xml
tags/3.3.1.SP1/sandbox/ui/treeTable/pom.xml
tags/3.3.1.SP1/test-applications/ajaxTest/pom.xml
tags/3.3.1.SP1/test-applications/automator/pom.xml
tags/3.3.1.SP1/test-applications/facelets/pom.xml
tags/3.3.1.SP1/test-applications/jsp/pom.xml
tags/3.3.1.SP1/test-applications/pom.xml
tags/3.3.1.SP1/test-applications/regressionArea/pom.xml
tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-ear/pom.xml
tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-ejb/pom.xml
tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-tests/pom.xml
tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-web/pom.xml
tags/3.3.1.SP1/test-applications/richfaces-docs/pom.xml
tags/3.3.1.SP1/test-applications/richfaces-docs/web/pom.xml
tags/3.3.1.SP1/test-applications/seamApp/pom.xml
tags/3.3.1.SP1/test-applications/seleniumTest/pom.xml
tags/3.3.1.SP1/test-applications/seleniumTest/richfaces/pom.xml
tags/3.3.1.SP1/test-applications/seleniumTest/samples/pom.xml
tags/3.3.1.SP1/ui/assembly/pom.xml
tags/3.3.1.SP1/ui/beanValidator/pom.xml
tags/3.3.1.SP1/ui/calendar/pom.xml
tags/3.3.1.SP1/ui/colorPicker/pom.xml
tags/3.3.1.SP1/ui/columns/pom.xml
tags/3.3.1.SP1/ui/combobox/pom.xml
tags/3.3.1.SP1/ui/componentControl/pom.xml
tags/3.3.1.SP1/ui/contextMenu/pom.xml
tags/3.3.1.SP1/ui/core/pom.xml
tags/3.3.1.SP1/ui/create.bat
tags/3.3.1.SP1/ui/dataFilterSlider/pom.xml
tags/3.3.1.SP1/ui/dataTable/pom.xml
tags/3.3.1.SP1/ui/datascroller/pom.xml
tags/3.3.1.SP1/ui/drag-drop/pom.xml
tags/3.3.1.SP1/ui/dropdown-menu/pom.xml
tags/3.3.1.SP1/ui/editor/pom.xml
tags/3.3.1.SP1/ui/effect/pom.xml
tags/3.3.1.SP1/ui/extendedDataTable/pom.xml
tags/3.3.1.SP1/ui/fileUpload/pom.xml
tags/3.3.1.SP1/ui/functions/pom.xml
tags/3.3.1.SP1/ui/gmap/pom.xml
tags/3.3.1.SP1/ui/hotKey/pom.xml
tags/3.3.1.SP1/ui/inplaceInput/pom.xml
tags/3.3.1.SP1/ui/inplaceSelect/pom.xml
tags/3.3.1.SP1/ui/inputnumber-slider/pom.xml
tags/3.3.1.SP1/ui/inputnumber-spinner/pom.xml
tags/3.3.1.SP1/ui/insert/pom.xml
tags/3.3.1.SP1/ui/jQuery/pom.xml
tags/3.3.1.SP1/ui/layout/pom.xml
tags/3.3.1.SP1/ui/listShuttle/pom.xml
tags/3.3.1.SP1/ui/menu-components/pom.xml
tags/3.3.1.SP1/ui/message/pom.xml
tags/3.3.1.SP1/ui/modal-panel/pom.xml
tags/3.3.1.SP1/ui/orderingList/pom.xml
tags/3.3.1.SP1/ui/paint2D/pom.xml
tags/3.3.1.SP1/ui/panel/pom.xml
tags/3.3.1.SP1/ui/panelbar/pom.xml
tags/3.3.1.SP1/ui/panelmenu/pom.xml
tags/3.3.1.SP1/ui/pickList/pom.xml
tags/3.3.1.SP1/ui/pom.xml
tags/3.3.1.SP1/ui/progressBAR/pom.xml
tags/3.3.1.SP1/ui/scrollableDataTable/pom.xml
tags/3.3.1.SP1/ui/separator/pom.xml
tags/3.3.1.SP1/ui/simpleTogglePanel/pom.xml
tags/3.3.1.SP1/ui/spacer/pom.xml
tags/3.3.1.SP1/ui/state/pom.xml
tags/3.3.1.SP1/ui/suggestionbox/pom.xml
tags/3.3.1.SP1/ui/tabPanel/pom.xml
tags/3.3.1.SP1/ui/togglePanel/pom.xml
tags/3.3.1.SP1/ui/toolBar/pom.xml
tags/3.3.1.SP1/ui/tooltip/pom.xml
tags/3.3.1.SP1/ui/tree/pom.xml
tags/3.3.1.SP1/ui/treeModel/pom.xml
tags/3.3.1.SP1/ui/treeTable/pom.xml
tags/3.3.1.SP1/ui/virtualEarth/pom.xml
Log:
recreate tag for 3.3.1.SP1
Copied: tags/3.3.1.SP1 (from rev 16366, branches/enterprise/3.3.X)
Modified: tags/3.3.1.SP1/cdk/generator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/generator/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/generator/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Deleted: tags/3.3.1.SP1/cdk/generator/src/main/resources/META-INF/templates/taglib.vm
===================================================================
--- branches/enterprise/3.3.X/cdk/generator/src/main/resources/META-INF/templates/taglib.vm 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/generator/src/main/resources/META-INF/templates/taglib.vm 2010-01-27 16:26:06 UTC (rev 16369)
@@ -1,195 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
- "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
-<taglib>
- <tlib-version>${taglib.tlibversion}</tlib-version>
- <jsp-version>${taglib.jspversion}</jsp-version>
-#if(${taglib.shortname})
- <short-name>${taglib.shortname}</short-name>
-#end
- <uri>${taglib.uri}</uri>
-#if(${taglib.description})
- <description>${taglib.description}</description>
-#end
-${taglib.includeContent}
-
-#foreach( $component in ${components})
- #if($component.tag)
- <tag>
- <name>${component.tag.name}</name>
- <tag-class>${component.tag.classname}</tag-class>
- <body-content>${component.tag.bodyContent}</body-content>
- #if(${component.tag.displayname})
- <display-name>${component.tag.xmlEncodedDisplayname}</display-name>
- #elseif(${component.displayname})
- <display-name>${component.xmlEncodedDisplayname}</display-name>
- #end
- #if(${component.tag.description})
- <description>${component.tag.xmlEncodedDescription}</description>
- #else
- <description>${component.xmlEncodedDescription}</description>
- #end
- #foreach( $prop in ${component.properties} )
- #if( !${prop.hidden} && !${prop.disabled} )
- <attribute>
- <name>${prop.name}</name>
- #if(${prop.required})
- <required>true</required>
- #end
- <rtexprvalue>false</rtexprvalue>
- <description>${prop.xmlEncodedDescription}</description>
- </attribute>
- #if( $prop.alias )
- <attribute>
- <name>${prop.alias}</name>
- <rtexprvalue>false</rtexprvalue>
- <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
- </attribute>
- #end
- #end
- #end
-</tag>
-#end
-#end
-
-#foreach( $validator in ${validators})
- #if($validator.tag)
- <tag>
- <name>${validator.tag.name}</name>
- <tag-class>${validator.tag.classname}</tag-class>
- <body-content>${validator.tag.bodyContent}</body-content>
- #if(${validator.tag.displayname})
- <display-name>${validator.tag.xmlEncodedDisplayname}</display-name>
- #elseif(${validator.displayname})
- <display-name>${validator.xmlEncodedDisplayname}</display-name>
- #end
- #if(${validator.tag.description})
- <description>${validator.tag.xmlEncodedDescription}</description>
- #elseif(${validator.xmlEncodedDescription})
- <description>${validator.xmlEncodedDescription}</description>
- #end
- #foreach( $prop in ${validator.properties} )
- #if( !${prop.hidden} && !${prop.disabled} )
- <attribute>
- <name>${prop.name}</name>
- #if(${prop.required})
- <required>true</required>
- #end
- <rtexprvalue>false</rtexprvalue>
- <description>${prop.xmlEncodedDescription}</description>
- </attribute>
- #if( $prop.alias )
- <attribute>
- <name>${prop.alias}</name>
- <rtexprvalue>false</rtexprvalue>
- <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
- </attribute>
- #end
- #end
- #end
-</tag>
-#end
-#end
-
-#foreach( $converter in ${converters})
- #if($converter.tag)
- <tag>
- <name>${converter.tag.name}</name>
- <tag-class>${converter.tag.classname}</tag-class>
- <body-content>${converter.tag.bodyContent}</body-content>
- #if(${converter.tag.displayname})
- <display-name>${converter.tag.xmlEncodedDisplayname}</display-name>
- #elseif(${converter.displayname})
- <display-name>${converter.xmlEncodedDisplayname}</display-name>
- #end
- #if(${converter.tag.description})
- <description>${converter.tag.xmlEncodedDescription}</description>
- #elseif(${converter.xmlEncodedDescription})
- <description>${converter.xmlEncodedDescription}</description>
- #end
- #foreach( $prop in ${converter.properties} )
- #if( !${prop.hidden} && !${prop.disabled} )
- <attribute>
- <name>${prop.name}</name>
- #if(${prop.required})
- <required>true</required>
- #end
- <rtexprvalue>false</rtexprvalue>
- <description>${prop.xmlEncodedDescription}</description>
- </attribute>
- #if( $prop.alias )
- <attribute>
- <name>${prop.alias}</name>
- <rtexprvalue>false</rtexprvalue>
- <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
- </attribute>
- #end
- #end
- #end
-</tag>
-#end
-#end
-
-#foreach( $listener in ${listeners})
- #if($listener.tag)
- <tag>
- #if($listener.tag.name)
- <name>${listener.tag.name}</name>
- #else
- <name>${listener.name}</name>
- #end
- <tag-class>${listener.tag.classname}</tag-class>
- <body-content>${listener.tag.bodyContent}</body-content>
- #if(${listener.tag.displayname})
- <display-name>${listener.tag.xmlEncodedDisplayname}</display-name>
- #elseif(${listener.displayname})
- <display-name>${listener.xmlEncodedDisplayname}</display-name>
- #end
- #if(${listener.tag.description})
- <description>${listener.tag.xmlEncodedDescription}</description>
- #elseif(${listener.xmlEncodedDescription})
- <description>${listener.xmlEncodedDescription}</description>
- #end
-
- <attribute>
- <name>type</name>
- <rtexprvalue>false</rtexprvalue>
- <description>
- Attribute defines the fully qualified Java class name for listener
- </description>
- </attribute>
-
- <attribute>
- <name>binding</name>
- <rtexprvalue>false</rtexprvalue>
- <description>
- The attribute takes a value-binding expression for a component property of a backing bean
- </description>
- </attribute>
-
-
- #foreach( $prop in ${listener.properties} )
- #if( !${prop.hidden} && !${prop.disabled} )
- <attribute>
- <name>${prop.name}</name>
- #if(${prop.required})
- <required>true</required>
- #end
- <rtexprvalue>false</rtexprvalue>
- <description>${prop.xmlEncodedDescription}</description>
- </attribute>
- #if( $prop.alias )
- <attribute>
- <name>${prop.alias}</name>
- <rtexprvalue>false</rtexprvalue>
- <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
- </attribute>
- #end
- #end
- #end
-</tag>
-#end
-#end
-
-
-</taglib>
\ No newline at end of file
Copied: tags/3.3.1.SP1/cdk/generator/src/main/resources/META-INF/templates/taglib.vm (from rev 16367, branches/enterprise/3.3.X/cdk/generator/src/main/resources/META-INF/templates/taglib.vm)
===================================================================
--- tags/3.3.1.SP1/cdk/generator/src/main/resources/META-INF/templates/taglib.vm (rev 0)
+++ tags/3.3.1.SP1/cdk/generator/src/main/resources/META-INF/templates/taglib.vm 2010-01-27 16:26:06 UTC (rev 16369)
@@ -0,0 +1,195 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
+ "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
+<taglib>
+ <tlib-version>${taglib.tlibversion}</tlib-version>
+ <jsp-version>${taglib.jspversion}</jsp-version>
+#if(${taglib.shortname})
+ <short-name>${taglib.shortname}</short-name>
+#end
+ <uri>${taglib.uri}</uri>
+#if(${taglib.description})
+ <description>${taglib.description}</description>
+#end
+${taglib.includeContent}
+
+#foreach( $component in ${components})
+ #if($component.tag)
+ <tag>
+ <name>${component.tag.name}</name>
+ <tag-class>${component.tag.classname}</tag-class>
+ <body-content>${component.tag.bodyContent}</body-content>
+ #if(${component.tag.displayname})
+ <display-name>${component.tag.xmlEncodedDisplayname}</display-name>
+ #elseif(${component.displayname})
+ <display-name>${component.xmlEncodedDisplayname}</display-name>
+ #end
+ #if(${component.tag.description})
+ <description>${component.tag.xmlEncodedDescription}</description>
+ #else
+ <description>${component.xmlEncodedDescription}</description>
+ #end
+ #foreach( $prop in ${component.properties} )
+ #if( !${prop.hidden} && !${prop.disabled} )
+ <attribute>
+ <description>${prop.xmlEncodedDescription}</description>
+ <name>${prop.name}</name>
+ #if(${prop.required})
+ <required>true</required>
+ #end
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+ #if( $prop.alias )
+ <attribute>
+ <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
+ <name>${prop.alias}</name>
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+ #end
+ #end
+ #end
+</tag>
+#end
+#end
+
+#foreach( $validator in ${validators})
+ #if($validator.tag)
+ <tag>
+ <name>${validator.tag.name}</name>
+ <tag-class>${validator.tag.classname}</tag-class>
+ <body-content>${validator.tag.bodyContent}</body-content>
+ #if(${validator.tag.displayname})
+ <display-name>${validator.tag.xmlEncodedDisplayname}</display-name>
+ #elseif(${validator.displayname})
+ <display-name>${validator.xmlEncodedDisplayname}</display-name>
+ #end
+ #if(${validator.tag.description})
+ <description>${validator.tag.xmlEncodedDescription}</description>
+ #elseif(${validator.xmlEncodedDescription})
+ <description>${validator.xmlEncodedDescription}</description>
+ #end
+ #foreach( $prop in ${validator.properties} )
+ #if( !${prop.hidden} && !${prop.disabled} )
+ <attribute>
+ <description>${prop.xmlEncodedDescription}</description>
+ <name>${prop.name}</name>
+ #if(${prop.required})
+ <required>true</required>
+ #end
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+ #if( $prop.alias )
+ <attribute>
+ <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
+ <name>${prop.alias}</name>
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+ #end
+ #end
+ #end
+</tag>
+#end
+#end
+
+#foreach( $converter in ${converters})
+ #if($converter.tag)
+ <tag>
+ <name>${converter.tag.name}</name>
+ <tag-class>${converter.tag.classname}</tag-class>
+ <body-content>${converter.tag.bodyContent}</body-content>
+ #if(${converter.tag.displayname})
+ <display-name>${converter.tag.xmlEncodedDisplayname}</display-name>
+ #elseif(${converter.displayname})
+ <display-name>${converter.xmlEncodedDisplayname}</display-name>
+ #end
+ #if(${converter.tag.description})
+ <description>${converter.tag.xmlEncodedDescription}</description>
+ #elseif(${converter.xmlEncodedDescription})
+ <description>${converter.xmlEncodedDescription}</description>
+ #end
+ #foreach( $prop in ${converter.properties} )
+ #if( !${prop.hidden} && !${prop.disabled} )
+ <attribute>
+ <description>${prop.xmlEncodedDescription}</description>
+ <name>${prop.name}</name>
+ #if(${prop.required})
+ <required>true</required>
+ #end
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+ #if( $prop.alias )
+ <attribute>
+ <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
+ <name>${prop.alias}</name>
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+ #end
+ #end
+ #end
+</tag>
+#end
+#end
+
+#foreach( $listener in ${listeners})
+ #if($listener.tag)
+ <tag>
+ #if($listener.tag.name)
+ <name>${listener.tag.name}</name>
+ #else
+ <name>${listener.name}</name>
+ #end
+ <tag-class>${listener.tag.classname}</tag-class>
+ <body-content>${listener.tag.bodyContent}</body-content>
+ #if(${listener.tag.displayname})
+ <display-name>${listener.tag.xmlEncodedDisplayname}</display-name>
+ #elseif(${listener.displayname})
+ <display-name>${listener.xmlEncodedDisplayname}</display-name>
+ #end
+ #if(${listener.tag.description})
+ <description>${listener.tag.xmlEncodedDescription}</description>
+ #elseif(${listener.xmlEncodedDescription})
+ <description>${listener.xmlEncodedDescription}</description>
+ #end
+
+ <attribute>
+ <description>
+ Attribute defines the fully qualified Java class name for listener
+ </description>
+ <name>type</name>
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+
+ <attribute>
+ <description>
+ The attribute takes a value-binding expression for a component property of a backing bean
+ </description>
+ <name>binding</name>
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+
+
+ #foreach( $prop in ${listener.properties} )
+ #if( !${prop.hidden} && !${prop.disabled} )
+ <attribute>
+ <description>${prop.xmlEncodedDescription}</description>
+ <name>${prop.name}</name>
+ #if(${prop.required})
+ <required>true</required>
+ #end
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+ #if( $prop.alias )
+ <attribute>
+ <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
+ <name>${prop.alias}</name>
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+ #end
+ #end
+ #end
+</tag>
+#end
+#end
+
+
+</taglib>
\ No newline at end of file
Deleted: tags/3.3.1.SP1/cdk/generator/src/main/resources/META-INF/templates12/taglib.vm
===================================================================
--- branches/enterprise/3.3.X/cdk/generator/src/main/resources/META-INF/templates12/taglib.vm 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/generator/src/main/resources/META-INF/templates12/taglib.vm 2010-01-27 16:26:06 UTC (rev 16369)
@@ -1,105 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-##Create tag attributes for object's properties
-#macro(tagAttributes $source)
- #foreach( $prop in ${source.properties} )
- #if( !${prop.hidden} && !${prop.disabled} )
- <attribute>
- <description>${prop.xmlEncodedDescription}</description>
- <name>${prop.name}</name>
- #if(${prop.required})
- <required>true</required>
- #end
- #if(${prop.el})
- #if( !$prop.isInstanceof("javax.faces.el.MethodBinding") && !$prop.isInstanceof("javax.el.MethodExpression") )
- <deferred-value>
- <type>${prop.classname}</type>
- </deferred-value>
- #else
- <deferred-method>
- <method-signature>${prop.returntype} ${prop.name}(${prop.methodargs})</method-signature>
- </deferred-method>
- #end
- #else
- <rtexprvalue>false</rtexprvalue>
- <type>${prop.classname}</type>
- #end
- </attribute>
- #if( $prop.alias )
- <attribute>
- <name>${prop.alias}</name>
- <rtexprvalue>false</rtexprvalue>
- <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
- </attribute>
- #end
- #end
- #end
-#end
-##Create tag for dedicated object in config
-#macro(tag $source)
- #if($source.tag)
- <tag>
- #if(${source.tag.description})
- <description>${source.tag.xmlEncodedDescription}</description>
- #elseif(${source.description})
- <description>${source.xmlEncodedDescription}</description>
- #end
- #if(${source.tag.displayname})
- <display-name>${source.tag.xmlEncodedDisplayname}</display-name>
- #elseif(${source.displayname})
- <display-name>${source.xmlEncodedDisplayname}</display-name>
- #end
- #if(${source.tag.name})
- <name>${source.tag.name}</name>
- #else
- <name>${source.name}</name>
- #end
- <tag-class>${source.tag.classname}</tag-class>
- <body-content>${source.tag.bodyContent}</body-content>
-
- #tagAttributes($source)
-
- </tag>
- #end
-
-#end
-
-##Generate tags for each category of config beans
-#macro(generateBunchOfTags $category)
- #foreach($item in $category)
- #tag($item)
- #end
-#end
-
-<taglib xmlns="http://java.sun.com/xml/ns/javaee"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_${taglib.jspversion.r...'.', '_')}.xsd"
- version="${taglib.jspversion}">
- <tlib-version>${taglib.tlibversion}</tlib-version>
-## <jsp-version>${taglib.jspversion}</jsp-version>
-#if(${taglib.shortname})
- <short-name>${taglib.shortname}</short-name>
-#end
- <uri>${taglib.uri}</uri>
-#if(${taglib.description})
- <description>${taglib.description}</description>
-#end
-
-${taglib.includeContent}
-
-#generateBunchOfTags(${components})
-#generateBunchOfTags(${validators})
-#generateBunchOfTags(${converters})
-#generateBunchOfTags(${listeners})
-
- #foreach( $function in ${functions} )
- <function>
- #if (${function.description})
- <description>${function.description}</description>
- #end
- <name>${function.name}</name>
- <function-class>${function.methodClassname}</function-class>
- <function-signature>${function.methodSignature}</function-signature>
- </function>
- #end
-
-</taglib>
Copied: tags/3.3.1.SP1/cdk/generator/src/main/resources/META-INF/templates12/taglib.vm (from rev 16367, branches/enterprise/3.3.X/cdk/generator/src/main/resources/META-INF/templates12/taglib.vm)
===================================================================
--- tags/3.3.1.SP1/cdk/generator/src/main/resources/META-INF/templates12/taglib.vm (rev 0)
+++ tags/3.3.1.SP1/cdk/generator/src/main/resources/META-INF/templates12/taglib.vm 2010-01-27 16:26:06 UTC (rev 16369)
@@ -0,0 +1,105 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+##Create tag attributes for object's properties
+#macro(tagAttributes $source)
+ #foreach( $prop in ${source.properties} )
+ #if( !${prop.hidden} && !${prop.disabled} )
+ <attribute>
+ <description>${prop.xmlEncodedDescription}</description>
+ <name>${prop.name}</name>
+ #if(${prop.required})
+ <required>true</required>
+ #end
+ #if(${prop.el})
+ #if( !$prop.isInstanceof("javax.faces.el.MethodBinding") && !$prop.isInstanceof("javax.el.MethodExpression") )
+ <deferred-value>
+ <type>${prop.classname}</type>
+ </deferred-value>
+ #else
+ <deferred-method>
+ <method-signature>${prop.returntype} ${prop.name}(${prop.methodargs})</method-signature>
+ </deferred-method>
+ #end
+ #else
+ <rtexprvalue>false</rtexprvalue>
+ <type>${prop.classname}</type>
+ #end
+ </attribute>
+ #if( $prop.alias )
+ <attribute>
+ <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
+ <name>${prop.alias}</name>
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+ #end
+ #end
+ #end
+#end
+##Create tag for dedicated object in config
+#macro(tag $source)
+ #if($source.tag)
+ <tag>
+ #if(${source.tag.description})
+ <description>${source.tag.xmlEncodedDescription}</description>
+ #elseif(${source.description})
+ <description>${source.xmlEncodedDescription}</description>
+ #end
+ #if(${source.tag.displayname})
+ <display-name>${source.tag.xmlEncodedDisplayname}</display-name>
+ #elseif(${source.displayname})
+ <display-name>${source.xmlEncodedDisplayname}</display-name>
+ #end
+ #if(${source.tag.name})
+ <name>${source.tag.name}</name>
+ #else
+ <name>${source.name}</name>
+ #end
+ <tag-class>${source.tag.classname}</tag-class>
+ <body-content>${source.tag.bodyContent}</body-content>
+
+ #tagAttributes($source)
+
+ </tag>
+ #end
+
+#end
+
+##Generate tags for each category of config beans
+#macro(generateBunchOfTags $category)
+ #foreach($item in $category)
+ #tag($item)
+ #end
+#end
+
+<taglib xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_${taglib.jspversion.r...'.', '_')}.xsd"
+ version="${taglib.jspversion}">
+ <tlib-version>${taglib.tlibversion}</tlib-version>
+## <jsp-version>${taglib.jspversion}</jsp-version>
+#if(${taglib.shortname})
+ <short-name>${taglib.shortname}</short-name>
+#end
+ <uri>${taglib.uri}</uri>
+#if(${taglib.description})
+ <description>${taglib.description}</description>
+#end
+
+${taglib.includeContent}
+
+#generateBunchOfTags(${components})
+#generateBunchOfTags(${validators})
+#generateBunchOfTags(${converters})
+#generateBunchOfTags(${listeners})
+
+ #foreach( $function in ${functions} )
+ <function>
+ #if (${function.description})
+ <description>${function.description}</description>
+ #end
+ <name>${function.name}</name>
+ <function-class>${function.methodClassname}</function-class>
+ <function-signature>${function.methodSignature}</function-signature>
+ </function>
+ #end
+
+</taglib>
Modified: tags/3.3.1.SP1/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/maven-archetype-jsf-component/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.SP1/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/maven-archetype-jsfwebapp/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.SP1/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/maven-archetype-plug-n-skin/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.3.1.SP1/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.SP1/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/maven-archetype-seam-app/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.1.SP1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.SP1</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: tags/3.3.1.SP1/cdk/maven-archetype-theme/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/maven-archetype-theme/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-theme</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>maven-archetype</packaging>
<name>maven-archetype-theme</name>
<build>
Modified: tags/3.3.1.SP1/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -41,12 +41,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<!-- Required for JSF -->
Modified: tags/3.3.1.SP1/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/maven-cdk-plugin/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.1.SP1/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/maven-javascript-plugin/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.3.1.SP1/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/maven-resource-dependency-plugin/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,7 +3,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +12,7 @@
<artifactId>maven-resource-dependency-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP1/cdk/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/cdk/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.1.SP1/docs/cdkguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/cdkguide/en/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -14,7 +14,7 @@
At first we need to create a project for the component itself. In the library directory
<property>Sandbox</property> you just created, launch the following command (all in one line):
</para>
- <programlisting role="XML"><![CDATA[mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -DartifactId=inputDate]]>
+ <programlisting role="XML"><![CDATA[mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1 -DartifactId=inputDate]]>
</programlisting>
<para>
As is easy to see a new directory with the name <property>inputDate</property> will be created.
@@ -164,7 +164,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -202,7 +202,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>]]>
Modified: tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/modules/devsample.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/src/main/docbook/modules/devsample.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/modules/devsample.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -21,7 +21,7 @@
where you have created the <emphasis role="bold"><property><inputDate></property></emphasis> component
and launch the following command (all in one line):
</para>
- <programlisting role="XML"><![CDATA[mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -DgroupId=org.mycompany -DartifactId=inputDate-sample]]></programlisting>
+ <programlisting role="XML"><![CDATA[mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.1.SP1 -DgroupId=org.mycompany -DartifactId=inputDate-sample]]></programlisting>
<para>
As easy to see a new directory <property>inputDate-sample</property> is created with the predefined JSF project structure:
</para>
Modified: tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/modules/setup.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -180,7 +180,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>]]>
Modified: tags/3.3.1.SP1/docs/cdkguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/cdkguide/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.3.1.SP1/docs/common-resources/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/common-resources/en/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>en</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>jar</packaging>
<name>Documentation common resources (en)</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,7 +4,7 @@
<artifactId>richfacesguide-archetype</artifactId>
<packaging>maven-archetype</packaging>
<name>richfacesguide-archetype</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<extensions>
<extension>
Modified: tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.richfacesguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>jar</packaging>
<name>Richfaces Guide Template</name>
Modified: tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>richfacesguide</name>
<description>Richfaces Guide Template</description>
<pluginRepositories>
Modified: tags/3.3.1.SP1/docs/common-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/common-resources/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: tags/3.3.1.SP1/docs/faq/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/faq/en/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/faq/en/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.1.SP1/docs/faq/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/faq/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/faq/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<!--repositories>
Modified: tags/3.3.1.SP1/docs/highlight/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/highlight/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/highlight/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.3.1.SP1/docs/migrationguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/migrationguide/en/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: tags/3.3.1.SP1/docs/migrationguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/migrationguide/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/migrationguide/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.1.SP1/docs/photo_album_app_guide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/photo_album_app_guide/en/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.photo_album_app_guide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>jar</packaging>
<name>RichFaces Photo Album application Guide (${translation})</name>
Modified: tags/3.3.1.SP1/docs/photo_album_app_guide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/photo_album_app_guide/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,13 +4,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>RichFaces Photo Album Application Guide</name>
<description>RichFaces Photo Album Application Guide</description>
<pluginRepositories>
Modified: tags/3.3.1.SP1/docs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.3.1.SP1/docs/userguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/en/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/userguide/en/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.1.SP1/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -327,7 +327,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.1.SP1-SNAPSHOT -DgroupId=org.docs.richfaces -DartifactId=jsf-app
+mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.1.SP1 -DgroupId=org.docs.richfaces -DartifactId=jsf-app
...]]></programlisting>
@@ -453,17 +453,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
...]]></programlisting>
Modified: tags/3.3.1.SP1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3238,7 +3238,7 @@
<listitem>
<para>
<code>archetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.3.1.SP1-SNAPSHOT"</code>
+ <code>"3.3.1.SP1"</code>
</para>
</listitem>
<listitem>
@@ -3482,7 +3482,7 @@
mvn archetype:create
-DarchetypeGroupId=org.richfaces.cdk
-DarchetypeArtifactId=maven-archetype-plug-n-skin
--DarchetypeVersion=3.3.1.SP1-SNAPSHOT
+-DarchetypeVersion=3.3.1.SP1
-DartifactId=P-n-S
-DgroupId=GROUPID
-Dversion=1.0.-SNAPSHOT
Modified: tags/3.3.1.SP1/docs/userguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/docs/userguide/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.3.1.SP1/examples/photoalbum/assembly/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/examples/photoalbum/assembly/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP1/examples/photoalbum/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/examples/photoalbum/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,7 +4,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Photoalbum Demo Application Root</name>
<modules>
Modified: tags/3.3.1.SP1/examples/photoalbum/source/ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/examples/photoalbum/source/ear/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP1/examples/photoalbum/source/ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/examples/photoalbum/source/ejb/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP1/examples/photoalbum/source/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/examples/photoalbum/source/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -8,7 +8,7 @@
<artifactId>photoalbum</artifactId>
<packaging>pom</packaging>
<name>${appName}</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<distributionManagement>
<downloadUrl>
Modified: tags/3.3.1.SP1/examples/photoalbum/source/web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/examples/photoalbum/source/web/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP1/examples/photoalbum/tests/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/examples/photoalbum/tests/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP1/extensions/gwt/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/gwt/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/extensions/gwt/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.1.SP1/extensions/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/extensions/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.3.1.SP1/extensions/seam/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/seam/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/extensions/seam/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.3.1.SP1/extensions/trinidad/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/trinidad/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/extensions/trinidad/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.3.1.SP1/framework/api/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/api/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/framework/api/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: tags/3.3.1.SP1/framework/impl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/impl/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/framework/impl/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,13 +3,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<resources>
<resource>
@@ -161,7 +161,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/enterprise/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-01-27 16:26:06 UTC (rev 16369)
@@ -38,7 +38,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "1.GA" ;
+ public static final String REVISION = "1.SP1" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: tags/3.3.1.SP1/framework/jsf-test/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/jsf-test/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/framework/jsf-test/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
<name>jsf-test</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.SP1/framework/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/framework/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: tags/3.3.1.SP1/framework/test/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/test/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/framework/test/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.SP1/pom.xml
===================================================================
--- branches/enterprise/3.3.X/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
Modified: tags/3.3.1.SP1/samples/beanValidatorSample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/beanValidatorSample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -52,7 +52,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version> </dependency>
+ <version>3.3.1.SP1</version> </dependency>
-->
<dependency>
<groupId>org.hibernate</groupId>
@@ -75,7 +75,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.1.SP1/samples/calendar-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/calendar-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/calendar-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/colorPickerDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/colorPickerDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples
@@ -46,17 +46,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.SP1/samples/columnsDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/columnsDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/columnsDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/combobox-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/combobox-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/combobox-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/contextMenuDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/contextMenuDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/createProject.sh
===================================================================
--- branches/enterprise/3.3.X/samples/createProject.sh 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/createProject.sh 2010-01-27 16:26:06 UTC (rev 16369)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp \
- -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -Dversion=3.3.1.SP1-SNAPSHOT -DgroupId=org.richfaces.samples -DartifactId=$1
+ -DarchetypeVersion=3.3.1.SP1 -Dversion=3.3.1.SP1 -DgroupId=org.richfaces.samples -DartifactId=$1
Modified: tags/3.3.1.SP1/samples/darkX/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/darkX/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/darkX/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.SP1/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/dataFilterSliderDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/dataTableDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/dataTableDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/datascroller-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/datascroller-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/dragDropDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/dragDropDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/dropdownmenu-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/editor-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/editor-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/editor-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/samples/editorSeam-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/editorSeam-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/samples/effect-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/effect-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/effect-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/extendedDataTable-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/extendedDataTable-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP1/samples/fileUploadDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/fileUploadDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/functions-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/functions-demo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/functions-demo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/glassX/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/glassX/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/glassX/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
<name>glassX</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.SP1/samples/gmap-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/gmap-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/gmap-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/hotKey-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/hotKey-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP1/samples/inplaceInput-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/inplaceInput-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/inplaceSelect-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/inplaceSelect-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/inputNumberSliderDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/inputNumberSpinnerDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/jQuery-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/jQuery-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/jira-data/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/jira-data/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/jira-data/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/laguna/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/laguna/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/laguna/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.3.1.SP1/samples/layout-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/layout-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/layout-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -34,22 +34,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<exclusions>
<exclusion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.SP1/samples/listShuttleDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/listShuttleDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/local-value-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/local-value-demo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/local-value-demo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/modalpanel-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/orderingListDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/orderingListDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/panel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panel-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/panel-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/panelbar-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/panelbar-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/panelmenu-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/pickList-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/pickList-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/pickList-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP1/samples/progressBarDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/progressBarDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/queue-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/queue-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/queue-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: tags/3.3.1.SP1/samples/rich-message-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/rich-message-demo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/richfaces-art-datatable/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/richfaces-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/richfaces-demo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -209,22 +209,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -314,12 +314,12 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
Modified: tags/3.3.1.SP1/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/richfaces-ear-demo/ejb/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.SP1/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/richfaces-ear-demo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.SP1/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/richfaces-ear-demo/webapp/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.SP1/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/scrollableDataTableDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.3.1.SP1/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/seamEAR/ear/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.SP1/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/seamEAR/ejbs/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.SP1/samples/seamEAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/seamEAR/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -95,7 +95,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.SP1/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/seamEAR/primary-source/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.SP1/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/seamEAR/projects/logging/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
</project>
Modified: tags/3.3.1.SP1/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/seamEAR/projects/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.3.1.SP1/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/seamEAR/wars/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.3.1.SP1/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/seamEAR/wars/seamWebapp/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.SP1/samples/seamIntegration/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamIntegration/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/seamIntegration/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/separator-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/separator-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/separator-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/simpleTogglePanel-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/skins/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/skins/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/skins/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/sortingFilteringDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/sortingFilteringDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency-->
<dependency>
Modified: tags/3.3.1.SP1/samples/state-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/state-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/state-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/samples/stdcomponents-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/stdcomponents-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/suggestionbox-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/tabPanelDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/themes/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/themes/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/themes/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>themes</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/togglePanel-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/tomahawkCompability/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/toolBarDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/toolBarDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/tooltip-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/tooltip-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/tree-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tree-demo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/tree-demo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/treeModelDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/treeModelDemo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/violetRays/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/violetRays/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/violetRays/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>violetRays</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/samples/virtualEarth-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/sandbox/api/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/api/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/api/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.SP1/sandbox/cdk/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/cdk/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/cdk/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.1.SP1/sandbox/impl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/impl/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/impl/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.SP1/sandbox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP1/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/samples/dialog-window-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/samples/editorOld-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/samples/fileUploadPOC/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP1/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<pluginRepositories>
<pluginRepository>
@@ -33,7 +33,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/samples/panel2-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/sandbox/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/samples/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/sandbox/samples/rex-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/samples/rex-demo/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
Modified: tags/3.3.1.SP1/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP1/sandbox/ui/create.bat
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/create.bat 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/ui/create.bat 2010-01-27 16:26:06 UTC (rev 16369)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-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.1.SP1 -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/create.sh
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/create.sh 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/ui/create.sh 2010-01-27 16:26:06 UTC (rev 16369)
@@ -1,2 +1,2 @@
#!/bin/sh
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-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.1.SP1 -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/ui/dialog-window/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP1/sandbox/ui/editorOld/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/ui/editorOld/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/ui/panel2/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/ui/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.3.1.SP1/sandbox/ui/rex-button/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/ui/rex-button/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/ui/rex-messageBox/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/ui/rex-resizable/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/ui/simpleTogglePanel2/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/ui/sortableHeader/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/treeTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/sandbox/ui/treeTable/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/test-applications/ajaxTest/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/ajaxTest/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Modified: tags/3.3.1.SP1/test-applications/automator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/automator/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/automator/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/test-applications/facelets/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/facelets/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/facelets/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/test-applications/jsp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/jsp/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/jsp/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/test-applications/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,11 +50,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.1.SP1-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.SP1</rfVersion>
</properties>
<modules>
Modified: tags/3.3.1.SP1/test-applications/regressionArea/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/regressionArea/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Regresion Area:Seam Application</name>
<repositories>
<repository>
@@ -60,7 +60,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.1.SP1-SNAPSHOT</richversion>
+ <richversion>3.3.1.SP1</richversion>
<seamversion>2.1.1.GA</seamversion>
<jsfversion>1.2_11</jsfversion>
<jbosshome>C:/tmp/jboss-4.2.3.GA</jbosshome>
Modified: tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-web/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: tags/3.3.1.SP1/test-applications/richfaces-docs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/richfaces-docs/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -8,7 +8,7 @@
<name>richfaces-docs</name>
<properties>
<projectName>richfaces-docs</projectName>
- <richfacesVersion>3.3.1.SP1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.SP1</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<droolsVersion>4.0.0</droolsVersion>
Modified: tags/3.3.1.SP1/test-applications/richfaces-docs/web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/richfaces-docs/web/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -47,7 +47,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<scope>provided</scope>
</dependency>
Modified: tags/3.3.1.SP1/test-applications/seamApp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seamApp/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/seamApp/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <rfVersion>3.3.1.SP1-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.SP1</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: tags/3.3.1.SP1/test-applications/seleniumTest/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/seleniumTest/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -227,7 +227,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.SP1/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/seleniumTest/richfaces/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: tags/3.3.1.SP1/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/test-applications/seleniumTest/samples/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.3.1.SP1/ui/assembly/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/assembly/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/assembly/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: tags/3.3.1.SP1/ui/beanValidator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/beanValidator/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/beanValidator/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -3,19 +3,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
<name>beanValidator</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: tags/3.3.1.SP1/ui/calendar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/calendar/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/calendar/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/colorPicker/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/colorPicker/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/colorPicker/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/columns/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/columns/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/columns/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.SP1/ui/combobox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/combobox/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/combobox/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP1/ui/componentControl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/componentControl/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/componentControl/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/contextMenu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/contextMenu/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/contextMenu/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/core/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/core/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/core/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/create.bat
===================================================================
--- branches/enterprise/3.3.X/ui/create.bat 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/create.bat 2010-01-27 16:26:06 UTC (rev 16369)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-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.1.SP1 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/dataFilterSlider/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/dataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dataTable/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/dataTable/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.1.SP1/ui/datascroller/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/datascroller/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/datascroller/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/drag-drop/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/drag-drop/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/drag-drop/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.1.SP1/ui/dropdown-menu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/dropdown-menu/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/editor/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/editor/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/editor/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -62,7 +62,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
Modified: tags/3.3.1.SP1/ui/effect/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/effect/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/effect/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/extendedDataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/extendedDataTable/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -64,45 +64,45 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/fileUpload/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/fileUpload/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/fileUpload/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/functions/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/functions/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/functions/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/gmap/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/gmap/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/gmap/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/hotKey/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/hotKey/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/hotKey/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/inplaceInput/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inplaceInput/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/inplaceInput/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/inplaceSelect/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/inplaceSelect/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP1/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/inputnumber-slider/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/inputnumber-spinner/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.1.SP1/ui/insert/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/insert/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/insert/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/jQuery/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/jQuery/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/jQuery/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/layout/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/layout/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/layout/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -4,18 +4,18 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>layout</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>layout</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -48,7 +48,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.SP1/ui/listShuttle/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/listShuttle/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/listShuttle/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.SP1/ui/menu-components/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/menu-components/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/menu-components/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/message/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/message/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/message/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/modal-panel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/modal-panel/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/modal-panel/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/orderingList/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/orderingList/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/orderingList/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/paint2D/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/paint2D/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/paint2D/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/panel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panel/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/panel/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/panelbar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panelbar/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/panelbar/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/panelmenu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panelmenu/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/panelmenu/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/pickList/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/pickList/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/pickList/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP1/ui/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.SP1/ui/progressBAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/progressBAR/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/progressBAR/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/scrollableDataTable/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/separator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/separator/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/separator/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.1.SP1/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/simpleTogglePanel/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/spacer/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/spacer/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/spacer/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/state/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/state/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/state/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/suggestionbox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/suggestionbox/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/suggestionbox/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/tabPanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tabPanel/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/tabPanel/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/togglePanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/togglePanel/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/togglePanel/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/toolBar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/toolBar/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/toolBar/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/tooltip/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tooltip/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/tooltip/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/tree/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tree/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/tree/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/treeModel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/treeModel/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/treeModel/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/treeTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/treeTable/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/treeTable/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/virtualEarth/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/virtualEarth/pom.xml 2010-01-27 05:16:52 UTC (rev 16366)
+++ tags/3.3.1.SP1/ui/virtualEarth/pom.xml 2010-01-27 16:26:06 UTC (rev 16369)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
15 years
JBoss Rich Faces SVN: r16368 - tags.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2010-01-27 11:17:51 -0500 (Wed, 27 Jan 2010)
New Revision: 16368
Removed:
tags/3.3.1.SP1/
Log:
delete tag for 3.3.1.SP1
15 years
JBoss Rich Faces SVN: r16367 - in branches/enterprise/3.3.X/cdk/generator/src/main/resources/META-INF: templates12 and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2010-01-27 11:12:56 -0500 (Wed, 27 Jan 2010)
New Revision: 16367
Modified:
branches/enterprise/3.3.X/cdk/generator/src/main/resources/META-INF/templates/taglib.vm
branches/enterprise/3.3.X/cdk/generator/src/main/resources/META-INF/templates12/taglib.vm
Log:
RFPL-365
porting RF-7363 to enterprise branch
Modified: branches/enterprise/3.3.X/cdk/generator/src/main/resources/META-INF/templates/taglib.vm
===================================================================
--- branches/enterprise/3.3.X/cdk/generator/src/main/resources/META-INF/templates/taglib.vm 2010-01-27 05:16:52 UTC (rev 16366)
+++ branches/enterprise/3.3.X/cdk/generator/src/main/resources/META-INF/templates/taglib.vm 2010-01-27 16:12:56 UTC (rev 16367)
@@ -32,18 +32,18 @@
#foreach( $prop in ${component.properties} )
#if( !${prop.hidden} && !${prop.disabled} )
<attribute>
+ <description>${prop.xmlEncodedDescription}</description>
<name>${prop.name}</name>
#if(${prop.required})
<required>true</required>
#end
<rtexprvalue>false</rtexprvalue>
- <description>${prop.xmlEncodedDescription}</description>
</attribute>
#if( $prop.alias )
<attribute>
+ <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
<name>${prop.alias}</name>
<rtexprvalue>false</rtexprvalue>
- <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
</attribute>
#end
#end
@@ -71,18 +71,18 @@
#foreach( $prop in ${validator.properties} )
#if( !${prop.hidden} && !${prop.disabled} )
<attribute>
+ <description>${prop.xmlEncodedDescription}</description>
<name>${prop.name}</name>
#if(${prop.required})
<required>true</required>
#end
<rtexprvalue>false</rtexprvalue>
- <description>${prop.xmlEncodedDescription}</description>
</attribute>
#if( $prop.alias )
<attribute>
+ <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
<name>${prop.alias}</name>
<rtexprvalue>false</rtexprvalue>
- <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
</attribute>
#end
#end
@@ -110,18 +110,18 @@
#foreach( $prop in ${converter.properties} )
#if( !${prop.hidden} && !${prop.disabled} )
<attribute>
+ <description>${prop.xmlEncodedDescription}</description>
<name>${prop.name}</name>
#if(${prop.required})
<required>true</required>
#end
<rtexprvalue>false</rtexprvalue>
- <description>${prop.xmlEncodedDescription}</description>
</attribute>
#if( $prop.alias )
<attribute>
+ <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
<name>${prop.alias}</name>
<rtexprvalue>false</rtexprvalue>
- <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
</attribute>
#end
#end
@@ -152,37 +152,37 @@
#end
<attribute>
- <name>type</name>
- <rtexprvalue>false</rtexprvalue>
<description>
Attribute defines the fully qualified Java class name for listener
</description>
+ <name>type</name>
+ <rtexprvalue>false</rtexprvalue>
</attribute>
<attribute>
- <name>binding</name>
- <rtexprvalue>false</rtexprvalue>
<description>
The attribute takes a value-binding expression for a component property of a backing bean
</description>
+ <name>binding</name>
+ <rtexprvalue>false</rtexprvalue>
</attribute>
#foreach( $prop in ${listener.properties} )
#if( !${prop.hidden} && !${prop.disabled} )
<attribute>
+ <description>${prop.xmlEncodedDescription}</description>
<name>${prop.name}</name>
#if(${prop.required})
<required>true</required>
#end
<rtexprvalue>false</rtexprvalue>
- <description>${prop.xmlEncodedDescription}</description>
</attribute>
#if( $prop.alias )
<attribute>
+ <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
<name>${prop.alias}</name>
<rtexprvalue>false</rtexprvalue>
- <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
</attribute>
#end
#end
Modified: branches/enterprise/3.3.X/cdk/generator/src/main/resources/META-INF/templates12/taglib.vm
===================================================================
--- branches/enterprise/3.3.X/cdk/generator/src/main/resources/META-INF/templates12/taglib.vm 2010-01-27 05:16:52 UTC (rev 16366)
+++ branches/enterprise/3.3.X/cdk/generator/src/main/resources/META-INF/templates12/taglib.vm 2010-01-27 16:12:56 UTC (rev 16367)
@@ -26,9 +26,9 @@
</attribute>
#if( $prop.alias )
<attribute>
+ <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
<name>${prop.alias}</name>
<rtexprvalue>false</rtexprvalue>
- <description>Alias for ${prop.name} : ${prop.xmlEncodedDescription}</description>
</attribute>
#end
#end
15 years
JBoss Rich Faces SVN: r16366 - branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-01-27 00:16:52 -0500 (Wed, 27 Jan 2010)
New Revision: 16366
Modified:
branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
Log:
Removed incorrect scripts strategies information: Jira RF-8222
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 2010-01-27 04:49:30 UTC (rev 16365)
+++ branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-01-27 05:16:52 UTC (rev 16366)
@@ -1941,19 +1941,21 @@
...]]></programlisting>
<para> The third possible value is "NONE". You have no a special reason to use it
unless you obtain the newest (or modified) version of the script and want to include it
- manually in a page header. </para>
+ manually in a page header. </para>
+ <!--
<note>
<title>Note:</title>
<para> If you use <property>ALL</property> value of Scripts Load Strategy, the
JavaScript files compression turns off! </para>
- <!--programlisting role="XML"><![CDATA[...
+ programlisting role="XML"><![CDATA[...
<context-param>
<param-name>org.ajax4jsf.COMPRESS_SCRIPT</param-name>
<param-value>false</param-value>
</context-param>
...
- ]]></programlisting-->
- </note>
+ ]]></programlisting
+ </note>
+ -->
<para>
<emphasis role="bold">org.richfaces.LoadStyleStrategy</emphasis>
</para>
15 years
JBoss Rich Faces SVN: r16365 - branches/community/3.3.X/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-01-26 23:49:30 -0500 (Tue, 26 Jan 2010)
New Revision: 16365
Modified:
branches/community/3.3.X/docs/userguide/en/src/main/docbook/included/a4j_actionparam.xml
Log:
Corrected actionParam assignTo attribute: Jira RF-8215
Modified: branches/community/3.3.X/docs/userguide/en/src/main/docbook/included/a4j_actionparam.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/included/a4j_actionparam.xml 2010-01-26 18:13:29 UTC (rev 16364)
+++ branches/community/3.3.X/docs/userguide/en/src/main/docbook/included/a4j_actionparam.xml 2010-01-27 04:49:30 UTC (rev 16365)
@@ -69,7 +69,15 @@
<property>"assignTo"</property>
</emphasis>
defines updatable bean property. This property will be updated if the parent
- command component performs an actionEvent during the "Process Request" phase.
+ command component performs an actionEvent. The update occurs in the same phase as the actionEvent is processed (<literal>INVOKE_APPLICATION</literal>, <literal>PROCESS_VALIDATIONS</literal>, or <literal>APPLY_REQUEST_VALUES</literal>, depending on the values of the
+ <emphasis>
+ <property>"immediate"</property>
+ </emphasis>
+ and
+ <emphasis>
+ <property>"bypassUpdates"</property>
+ </emphasis>
+ attributes).
</para>
</listitem>
</itemizedlist>
15 years
JBoss Rich Faces SVN: r16364 - in tags: 3.3.1.SP1 and 219 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2010-01-26 13:13:29 -0500 (Tue, 26 Jan 2010)
New Revision: 16364
Added:
tags/3.3.1.SP1/
tags/3.3.1.SP1/ui/message/src/main/java/org/richfaces/component/UIRichMessages.java
Removed:
tags/3.3.1.SP1/ui/message/src/main/java/org/richfaces/component/UIRichMessages.java
Modified:
tags/3.3.1.SP1/cdk/generator/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-jsf-component/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-seam-app/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-theme/pom.xml
tags/3.3.1.SP1/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP1/cdk/maven-cdk-plugin/pom.xml
tags/3.3.1.SP1/cdk/maven-javascript-plugin/pom.xml
tags/3.3.1.SP1/cdk/maven-resource-dependency-plugin/pom.xml
tags/3.3.1.SP1/cdk/pom.xml
tags/3.3.1.SP1/docs/cdkguide/en/pom.xml
tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml
tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/modules/devsample.xml
tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/modules/setup.xml
tags/3.3.1.SP1/docs/cdkguide/pom.xml
tags/3.3.1.SP1/docs/common-resources/en/pom.xml
tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP1/docs/common-resources/pom.xml
tags/3.3.1.SP1/docs/faq/en/pom.xml
tags/3.3.1.SP1/docs/faq/pom.xml
tags/3.3.1.SP1/docs/highlight/pom.xml
tags/3.3.1.SP1/docs/migrationguide/en/pom.xml
tags/3.3.1.SP1/docs/migrationguide/pom.xml
tags/3.3.1.SP1/docs/photo_album_app_guide/en/pom.xml
tags/3.3.1.SP1/docs/photo_album_app_guide/pom.xml
tags/3.3.1.SP1/docs/pom.xml
tags/3.3.1.SP1/docs/userguide/en/pom.xml
tags/3.3.1.SP1/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
tags/3.3.1.SP1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.3.1.SP1/docs/userguide/pom.xml
tags/3.3.1.SP1/examples/photoalbum/assembly/pom.xml
tags/3.3.1.SP1/examples/photoalbum/pom.xml
tags/3.3.1.SP1/examples/photoalbum/source/ear/pom.xml
tags/3.3.1.SP1/examples/photoalbum/source/ejb/pom.xml
tags/3.3.1.SP1/examples/photoalbum/source/pom.xml
tags/3.3.1.SP1/examples/photoalbum/source/web/pom.xml
tags/3.3.1.SP1/examples/photoalbum/tests/pom.xml
tags/3.3.1.SP1/extensions/gwt/pom.xml
tags/3.3.1.SP1/extensions/pom.xml
tags/3.3.1.SP1/extensions/seam/pom.xml
tags/3.3.1.SP1/extensions/trinidad/pom.xml
tags/3.3.1.SP1/framework/api/pom.xml
tags/3.3.1.SP1/framework/impl/pom.xml
tags/3.3.1.SP1/framework/impl/src/main/java/org/richfaces/VersionBean.java
tags/3.3.1.SP1/framework/jsf-test/pom.xml
tags/3.3.1.SP1/framework/pom.xml
tags/3.3.1.SP1/framework/test/pom.xml
tags/3.3.1.SP1/pom.xml
tags/3.3.1.SP1/samples/beanValidatorSample/pom.xml
tags/3.3.1.SP1/samples/calendar-sample/pom.xml
tags/3.3.1.SP1/samples/colorPickerDemo/pom.xml
tags/3.3.1.SP1/samples/columnsDemo/pom.xml
tags/3.3.1.SP1/samples/combobox-sample/pom.xml
tags/3.3.1.SP1/samples/contextMenuDemo/pom.xml
tags/3.3.1.SP1/samples/createProject.sh
tags/3.3.1.SP1/samples/darkX/pom.xml
tags/3.3.1.SP1/samples/dataFilterSliderDemo/pom.xml
tags/3.3.1.SP1/samples/dataTableDemo/pom.xml
tags/3.3.1.SP1/samples/datascroller-sample/pom.xml
tags/3.3.1.SP1/samples/dragDropDemo/pom.xml
tags/3.3.1.SP1/samples/dropdownmenu-sample/pom.xml
tags/3.3.1.SP1/samples/editor-sample/pom.xml
tags/3.3.1.SP1/samples/editorSeam-sample/pom.xml
tags/3.3.1.SP1/samples/effect-sample/pom.xml
tags/3.3.1.SP1/samples/extendedDataTable-sample/pom.xml
tags/3.3.1.SP1/samples/fileUploadDemo/pom.xml
tags/3.3.1.SP1/samples/functions-demo/pom.xml
tags/3.3.1.SP1/samples/glassX/pom.xml
tags/3.3.1.SP1/samples/gmap-sample/pom.xml
tags/3.3.1.SP1/samples/hotKey-sample/pom.xml
tags/3.3.1.SP1/samples/inplaceInput-sample/pom.xml
tags/3.3.1.SP1/samples/inplaceSelect-sample/pom.xml
tags/3.3.1.SP1/samples/inputNumberSliderDemo/pom.xml
tags/3.3.1.SP1/samples/inputNumberSpinnerDemo/pom.xml
tags/3.3.1.SP1/samples/jQuery-sample/pom.xml
tags/3.3.1.SP1/samples/jira-data/pom.xml
tags/3.3.1.SP1/samples/laguna/pom.xml
tags/3.3.1.SP1/samples/layout-sample/pom.xml
tags/3.3.1.SP1/samples/listShuttleDemo/pom.xml
tags/3.3.1.SP1/samples/local-value-demo/pom.xml
tags/3.3.1.SP1/samples/modalpanel-sample/pom.xml
tags/3.3.1.SP1/samples/orderingListDemo/pom.xml
tags/3.3.1.SP1/samples/panel-sample/pom.xml
tags/3.3.1.SP1/samples/panelbar-sample/pom.xml
tags/3.3.1.SP1/samples/panelmenu-sample/pom.xml
tags/3.3.1.SP1/samples/pickList-sample/pom.xml
tags/3.3.1.SP1/samples/pom.xml
tags/3.3.1.SP1/samples/progressBarDemo/pom.xml
tags/3.3.1.SP1/samples/queue-sample/pom.xml
tags/3.3.1.SP1/samples/rich-message-demo/pom.xml
tags/3.3.1.SP1/samples/richfaces-art-datatable/pom.xml
tags/3.3.1.SP1/samples/richfaces-demo/pom.xml
tags/3.3.1.SP1/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.3.1.SP1/samples/richfaces-ear-demo/pom.xml
tags/3.3.1.SP1/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.3.1.SP1/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.3.1.SP1/samples/scrollableDataTableDemo/pom.xml
tags/3.3.1.SP1/samples/seamEAR/ear/pom.xml
tags/3.3.1.SP1/samples/seamEAR/ejbs/pom.xml
tags/3.3.1.SP1/samples/seamEAR/pom.xml
tags/3.3.1.SP1/samples/seamEAR/primary-source/pom.xml
tags/3.3.1.SP1/samples/seamEAR/projects/logging/pom.xml
tags/3.3.1.SP1/samples/seamEAR/projects/pom.xml
tags/3.3.1.SP1/samples/seamEAR/wars/pom.xml
tags/3.3.1.SP1/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.3.1.SP1/samples/seamIntegration/pom.xml
tags/3.3.1.SP1/samples/separator-sample/pom.xml
tags/3.3.1.SP1/samples/simpleTogglePanel-sample/pom.xml
tags/3.3.1.SP1/samples/skins/pom.xml
tags/3.3.1.SP1/samples/sortingFilteringDemo/pom.xml
tags/3.3.1.SP1/samples/state-sample/pom.xml
tags/3.3.1.SP1/samples/stdcomponents-sample/pom.xml
tags/3.3.1.SP1/samples/suggestionbox-sample/pom.xml
tags/3.3.1.SP1/samples/tabPanelDemo/pom.xml
tags/3.3.1.SP1/samples/themes/pom.xml
tags/3.3.1.SP1/samples/togglePanel-sample/pom.xml
tags/3.3.1.SP1/samples/tomahawkCompability/pom.xml
tags/3.3.1.SP1/samples/toolBarDemo/pom.xml
tags/3.3.1.SP1/samples/tooltip-sample/pom.xml
tags/3.3.1.SP1/samples/tree-demo/pom.xml
tags/3.3.1.SP1/samples/treeModelDemo/pom.xml
tags/3.3.1.SP1/samples/violetRays/pom.xml
tags/3.3.1.SP1/samples/virtualEarth-sample/pom.xml
tags/3.3.1.SP1/sandbox/api/pom.xml
tags/3.3.1.SP1/sandbox/cdk/pom.xml
tags/3.3.1.SP1/sandbox/impl/pom.xml
tags/3.3.1.SP1/sandbox/pom.xml
tags/3.3.1.SP1/sandbox/samples/dialog-window-sample/pom.xml
tags/3.3.1.SP1/sandbox/samples/editorOld-sample/pom.xml
tags/3.3.1.SP1/sandbox/samples/fileUploadPOC/pom.xml
tags/3.3.1.SP1/sandbox/samples/maven-rd-plugin-sample/pom.xml
tags/3.3.1.SP1/sandbox/samples/panel2-sample/pom.xml
tags/3.3.1.SP1/sandbox/samples/pom.xml
tags/3.3.1.SP1/sandbox/samples/rex-demo/pom.xml
tags/3.3.1.SP1/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.3.1.SP1/sandbox/ui/create.bat
tags/3.3.1.SP1/sandbox/ui/create.sh
tags/3.3.1.SP1/sandbox/ui/dialog-window/pom.xml
tags/3.3.1.SP1/sandbox/ui/editorOld/pom.xml
tags/3.3.1.SP1/sandbox/ui/panel2/pom.xml
tags/3.3.1.SP1/sandbox/ui/pom.xml
tags/3.3.1.SP1/sandbox/ui/rex-button/pom.xml
tags/3.3.1.SP1/sandbox/ui/rex-messageBox/pom.xml
tags/3.3.1.SP1/sandbox/ui/rex-resizable/pom.xml
tags/3.3.1.SP1/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.3.1.SP1/sandbox/ui/sortableHeader/pom.xml
tags/3.3.1.SP1/sandbox/ui/treeTable/pom.xml
tags/3.3.1.SP1/test-applications/ajaxTest/pom.xml
tags/3.3.1.SP1/test-applications/automator/pom.xml
tags/3.3.1.SP1/test-applications/facelets/pom.xml
tags/3.3.1.SP1/test-applications/jsp/pom.xml
tags/3.3.1.SP1/test-applications/pom.xml
tags/3.3.1.SP1/test-applications/regressionArea/pom.xml
tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-ear/pom.xml
tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-ejb/pom.xml
tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-tests/pom.xml
tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-web/pom.xml
tags/3.3.1.SP1/test-applications/richfaces-docs/pom.xml
tags/3.3.1.SP1/test-applications/richfaces-docs/web/pom.xml
tags/3.3.1.SP1/test-applications/seamApp/pom.xml
tags/3.3.1.SP1/test-applications/seleniumTest/pom.xml
tags/3.3.1.SP1/test-applications/seleniumTest/richfaces/pom.xml
tags/3.3.1.SP1/test-applications/seleniumTest/samples/pom.xml
tags/3.3.1.SP1/ui/assembly/pom.xml
tags/3.3.1.SP1/ui/beanValidator/pom.xml
tags/3.3.1.SP1/ui/calendar/pom.xml
tags/3.3.1.SP1/ui/colorPicker/pom.xml
tags/3.3.1.SP1/ui/columns/pom.xml
tags/3.3.1.SP1/ui/combobox/pom.xml
tags/3.3.1.SP1/ui/componentControl/pom.xml
tags/3.3.1.SP1/ui/contextMenu/pom.xml
tags/3.3.1.SP1/ui/core/pom.xml
tags/3.3.1.SP1/ui/create.bat
tags/3.3.1.SP1/ui/dataFilterSlider/pom.xml
tags/3.3.1.SP1/ui/dataTable/pom.xml
tags/3.3.1.SP1/ui/datascroller/pom.xml
tags/3.3.1.SP1/ui/drag-drop/pom.xml
tags/3.3.1.SP1/ui/dropdown-menu/pom.xml
tags/3.3.1.SP1/ui/editor/pom.xml
tags/3.3.1.SP1/ui/effect/pom.xml
tags/3.3.1.SP1/ui/extendedDataTable/pom.xml
tags/3.3.1.SP1/ui/fileUpload/pom.xml
tags/3.3.1.SP1/ui/functions/pom.xml
tags/3.3.1.SP1/ui/gmap/pom.xml
tags/3.3.1.SP1/ui/hotKey/pom.xml
tags/3.3.1.SP1/ui/inplaceInput/pom.xml
tags/3.3.1.SP1/ui/inplaceSelect/pom.xml
tags/3.3.1.SP1/ui/inputnumber-slider/pom.xml
tags/3.3.1.SP1/ui/inputnumber-spinner/pom.xml
tags/3.3.1.SP1/ui/insert/pom.xml
tags/3.3.1.SP1/ui/jQuery/pom.xml
tags/3.3.1.SP1/ui/layout/pom.xml
tags/3.3.1.SP1/ui/listShuttle/pom.xml
tags/3.3.1.SP1/ui/menu-components/pom.xml
tags/3.3.1.SP1/ui/message/pom.xml
tags/3.3.1.SP1/ui/modal-panel/pom.xml
tags/3.3.1.SP1/ui/orderingList/pom.xml
tags/3.3.1.SP1/ui/paint2D/pom.xml
tags/3.3.1.SP1/ui/panel/pom.xml
tags/3.3.1.SP1/ui/panelbar/pom.xml
tags/3.3.1.SP1/ui/panelmenu/pom.xml
tags/3.3.1.SP1/ui/pickList/pom.xml
tags/3.3.1.SP1/ui/pom.xml
tags/3.3.1.SP1/ui/progressBAR/pom.xml
tags/3.3.1.SP1/ui/scrollableDataTable/pom.xml
tags/3.3.1.SP1/ui/separator/pom.xml
tags/3.3.1.SP1/ui/simpleTogglePanel/pom.xml
tags/3.3.1.SP1/ui/spacer/pom.xml
tags/3.3.1.SP1/ui/state/pom.xml
tags/3.3.1.SP1/ui/suggestionbox/pom.xml
tags/3.3.1.SP1/ui/tabPanel/pom.xml
tags/3.3.1.SP1/ui/togglePanel/pom.xml
tags/3.3.1.SP1/ui/toolBar/pom.xml
tags/3.3.1.SP1/ui/tooltip/pom.xml
tags/3.3.1.SP1/ui/tree/pom.xml
tags/3.3.1.SP1/ui/treeModel/pom.xml
tags/3.3.1.SP1/ui/treeTable/pom.xml
tags/3.3.1.SP1/ui/virtualEarth/pom.xml
Log:
recreate tag for 3.3.1.SP1
Copied: tags/3.3.1.SP1 (from rev 16321, branches/enterprise/3.3.X)
Modified: tags/3.3.1.SP1/cdk/generator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/generator/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/generator/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: tags/3.3.1.SP1/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/maven-archetype-jsf-component/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.SP1/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/maven-archetype-jsfwebapp/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.SP1/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/maven-archetype-plug-n-skin/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.3.1.SP1/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.SP1/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/maven-archetype-seam-app/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.1.SP1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.SP1</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: tags/3.3.1.SP1/cdk/maven-archetype-theme/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/maven-archetype-theme/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-theme</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>maven-archetype</packaging>
<name>maven-archetype-theme</name>
<build>
Modified: tags/3.3.1.SP1/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -41,12 +41,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<!-- Required for JSF -->
Modified: tags/3.3.1.SP1/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/maven-cdk-plugin/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.1.SP1/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/maven-javascript-plugin/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.3.1.SP1/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/maven-resource-dependency-plugin/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,7 +3,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +12,7 @@
<artifactId>maven-resource-dependency-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP1/cdk/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/cdk/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.1.SP1/docs/cdkguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/cdkguide/en/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -14,7 +14,7 @@
At first we need to create a project for the component itself. In the library directory
<property>Sandbox</property> you just created, launch the following command (all in one line):
</para>
- <programlisting role="XML"><![CDATA[mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -DartifactId=inputDate]]>
+ <programlisting role="XML"><![CDATA[mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1 -DartifactId=inputDate]]>
</programlisting>
<para>
As is easy to see a new directory with the name <property>inputDate</property> will be created.
@@ -164,7 +164,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -202,7 +202,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>]]>
Modified: tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/modules/devsample.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/src/main/docbook/modules/devsample.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/modules/devsample.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -21,7 +21,7 @@
where you have created the <emphasis role="bold"><property><inputDate></property></emphasis> component
and launch the following command (all in one line):
</para>
- <programlisting role="XML"><![CDATA[mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -DgroupId=org.mycompany -DartifactId=inputDate-sample]]></programlisting>
+ <programlisting role="XML"><![CDATA[mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.1.SP1 -DgroupId=org.mycompany -DartifactId=inputDate-sample]]></programlisting>
<para>
As easy to see a new directory <property>inputDate-sample</property> is created with the predefined JSF project structure:
</para>
Modified: tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/modules/setup.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -180,7 +180,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>]]>
Modified: tags/3.3.1.SP1/docs/cdkguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/cdkguide/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.3.1.SP1/docs/common-resources/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/common-resources/en/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>en</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>jar</packaging>
<name>Documentation common resources (en)</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,7 +4,7 @@
<artifactId>richfacesguide-archetype</artifactId>
<packaging>maven-archetype</packaging>
<name>richfacesguide-archetype</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<extensions>
<extension>
Modified: tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.richfacesguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>jar</packaging>
<name>Richfaces Guide Template</name>
Modified: tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>richfacesguide</name>
<description>Richfaces Guide Template</description>
<pluginRepositories>
Modified: tags/3.3.1.SP1/docs/common-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/common-resources/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: tags/3.3.1.SP1/docs/faq/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/faq/en/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/faq/en/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.1.SP1/docs/faq/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/faq/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/faq/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<!--repositories>
Modified: tags/3.3.1.SP1/docs/highlight/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/highlight/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/highlight/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.3.1.SP1/docs/migrationguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/migrationguide/en/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: tags/3.3.1.SP1/docs/migrationguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/migrationguide/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/migrationguide/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.1.SP1/docs/photo_album_app_guide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/photo_album_app_guide/en/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.photo_album_app_guide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>jar</packaging>
<name>RichFaces Photo Album application Guide (${translation})</name>
Modified: tags/3.3.1.SP1/docs/photo_album_app_guide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/photo_album_app_guide/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,13 +4,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>RichFaces Photo Album Application Guide</name>
<description>RichFaces Photo Album Application Guide</description>
<pluginRepositories>
Modified: tags/3.3.1.SP1/docs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.3.1.SP1/docs/userguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/en/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/userguide/en/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.1.SP1/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -327,7 +327,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.1.SP1-SNAPSHOT -DgroupId=org.docs.richfaces -DartifactId=jsf-app
+mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.1.SP1 -DgroupId=org.docs.richfaces -DartifactId=jsf-app
...]]></programlisting>
@@ -453,17 +453,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
...]]></programlisting>
Modified: tags/3.3.1.SP1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3238,7 +3238,7 @@
<listitem>
<para>
<code>archetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.3.1.SP1-SNAPSHOT"</code>
+ <code>"3.3.1.SP1"</code>
</para>
</listitem>
<listitem>
@@ -3482,7 +3482,7 @@
mvn archetype:create
-DarchetypeGroupId=org.richfaces.cdk
-DarchetypeArtifactId=maven-archetype-plug-n-skin
--DarchetypeVersion=3.3.1.SP1-SNAPSHOT
+-DarchetypeVersion=3.3.1.SP1
-DartifactId=P-n-S
-DgroupId=GROUPID
-Dversion=1.0.-SNAPSHOT
Modified: tags/3.3.1.SP1/docs/userguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/docs/userguide/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.3.1.SP1/examples/photoalbum/assembly/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/examples/photoalbum/assembly/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP1/examples/photoalbum/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/examples/photoalbum/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,7 +4,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Photoalbum Demo Application Root</name>
<modules>
Modified: tags/3.3.1.SP1/examples/photoalbum/source/ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/examples/photoalbum/source/ear/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP1/examples/photoalbum/source/ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/examples/photoalbum/source/ejb/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP1/examples/photoalbum/source/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/examples/photoalbum/source/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -8,7 +8,7 @@
<artifactId>photoalbum</artifactId>
<packaging>pom</packaging>
<name>${appName}</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<distributionManagement>
<downloadUrl>
Modified: tags/3.3.1.SP1/examples/photoalbum/source/web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/examples/photoalbum/source/web/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP1/examples/photoalbum/tests/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/examples/photoalbum/tests/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP1/extensions/gwt/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/gwt/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/extensions/gwt/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.1.SP1/extensions/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/extensions/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.3.1.SP1/extensions/seam/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/seam/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/extensions/seam/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.3.1.SP1/extensions/trinidad/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/trinidad/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/extensions/trinidad/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.3.1.SP1/framework/api/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/api/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/framework/api/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: tags/3.3.1.SP1/framework/impl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/impl/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/framework/impl/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,13 +3,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<resources>
<resource>
@@ -161,7 +161,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/enterprise/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-01-26 18:13:29 UTC (rev 16364)
@@ -38,7 +38,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "1.GA" ;
+ public static final String REVISION = "1.SP1" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: tags/3.3.1.SP1/framework/jsf-test/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/jsf-test/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/framework/jsf-test/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
<name>jsf-test</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.SP1/framework/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/framework/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: tags/3.3.1.SP1/framework/test/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/test/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/framework/test/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.SP1/pom.xml
===================================================================
--- branches/enterprise/3.3.X/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
Modified: tags/3.3.1.SP1/samples/beanValidatorSample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/beanValidatorSample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -52,7 +52,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version> </dependency>
+ <version>3.3.1.SP1</version> </dependency>
-->
<dependency>
<groupId>org.hibernate</groupId>
@@ -75,7 +75,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.1.SP1/samples/calendar-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/calendar-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/calendar-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/colorPickerDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/colorPickerDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples
@@ -46,17 +46,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.SP1/samples/columnsDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/columnsDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/columnsDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/combobox-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/combobox-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/combobox-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/contextMenuDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/contextMenuDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/createProject.sh
===================================================================
--- branches/enterprise/3.3.X/samples/createProject.sh 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/createProject.sh 2010-01-26 18:13:29 UTC (rev 16364)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp \
- -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -Dversion=3.3.1.SP1-SNAPSHOT -DgroupId=org.richfaces.samples -DartifactId=$1
+ -DarchetypeVersion=3.3.1.SP1 -Dversion=3.3.1.SP1 -DgroupId=org.richfaces.samples -DartifactId=$1
Modified: tags/3.3.1.SP1/samples/darkX/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/darkX/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/darkX/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.SP1/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/dataFilterSliderDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/dataTableDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/dataTableDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/datascroller-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/datascroller-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/dragDropDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/dragDropDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/dropdownmenu-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/editor-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/editor-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/editor-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/samples/editorSeam-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/editorSeam-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/samples/effect-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/effect-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/effect-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/extendedDataTable-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/extendedDataTable-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP1/samples/fileUploadDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/fileUploadDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/functions-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/functions-demo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/functions-demo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/glassX/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/glassX/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/glassX/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
<name>glassX</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.SP1/samples/gmap-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/gmap-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/gmap-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/hotKey-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/hotKey-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP1/samples/inplaceInput-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/inplaceInput-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/inplaceSelect-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/inplaceSelect-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/inputNumberSliderDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/inputNumberSpinnerDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/jQuery-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/jQuery-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/jira-data/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/jira-data/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/jira-data/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/laguna/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/laguna/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/laguna/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.3.1.SP1/samples/layout-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/layout-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/layout-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -34,22 +34,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<exclusions>
<exclusion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.SP1/samples/listShuttleDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/listShuttleDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/local-value-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/local-value-demo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/local-value-demo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/modalpanel-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/orderingListDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/orderingListDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/panel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panel-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/panel-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/panelbar-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/panelbar-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/panelmenu-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/pickList-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/pickList-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/pickList-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP1/samples/progressBarDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/progressBarDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/queue-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/queue-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/queue-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: tags/3.3.1.SP1/samples/rich-message-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/rich-message-demo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/richfaces-art-datatable/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/richfaces-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/richfaces-demo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -209,22 +209,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -314,12 +314,12 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
Modified: tags/3.3.1.SP1/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/richfaces-ear-demo/ejb/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.SP1/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/richfaces-ear-demo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.SP1/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/richfaces-ear-demo/webapp/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.SP1/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/scrollableDataTableDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.3.1.SP1/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/seamEAR/ear/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.SP1/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/seamEAR/ejbs/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.SP1/samples/seamEAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/seamEAR/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -95,7 +95,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.SP1/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/seamEAR/primary-source/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.SP1/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/seamEAR/projects/logging/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
</project>
Modified: tags/3.3.1.SP1/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/seamEAR/projects/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.3.1.SP1/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/seamEAR/wars/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.3.1.SP1/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/seamEAR/wars/seamWebapp/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.SP1/samples/seamIntegration/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamIntegration/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/seamIntegration/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/separator-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/separator-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/separator-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/simpleTogglePanel-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/skins/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/skins/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/skins/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/sortingFilteringDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/sortingFilteringDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency-->
<dependency>
Modified: tags/3.3.1.SP1/samples/state-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/state-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/state-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/samples/stdcomponents-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/stdcomponents-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/suggestionbox-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/tabPanelDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/themes/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/themes/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/themes/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>themes</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/togglePanel-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/tomahawkCompability/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/toolBarDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/toolBarDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/tooltip-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/tooltip-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/tree-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tree-demo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/tree-demo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/treeModelDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/treeModelDemo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/samples/violetRays/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/violetRays/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/violetRays/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>violetRays</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/samples/virtualEarth-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP1/sandbox/api/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/api/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/api/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.SP1/sandbox/cdk/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/cdk/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/cdk/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.1.SP1/sandbox/impl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/impl/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/impl/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.SP1/sandbox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP1/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/samples/dialog-window-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/samples/editorOld-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/samples/fileUploadPOC/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP1/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<pluginRepositories>
<pluginRepository>
@@ -33,7 +33,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/samples/panel2-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/sandbox/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/samples/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/sandbox/samples/rex-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/samples/rex-demo/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
Modified: tags/3.3.1.SP1/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP1/sandbox/ui/create.bat
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/create.bat 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/ui/create.bat 2010-01-26 18:13:29 UTC (rev 16364)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-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.1.SP1 -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/create.sh
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/create.sh 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/ui/create.sh 2010-01-26 18:13:29 UTC (rev 16364)
@@ -1,2 +1,2 @@
#!/bin/sh
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-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.1.SP1 -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/ui/dialog-window/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP1/sandbox/ui/editorOld/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/ui/editorOld/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/ui/panel2/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/ui/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.3.1.SP1/sandbox/ui/rex-button/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/ui/rex-button/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/ui/rex-messageBox/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/ui/rex-resizable/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/ui/simpleTogglePanel2/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/ui/sortableHeader/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/sandbox/ui/treeTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/sandbox/ui/treeTable/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/test-applications/ajaxTest/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/ajaxTest/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Modified: tags/3.3.1.SP1/test-applications/automator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/automator/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/automator/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/test-applications/facelets/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/facelets/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/facelets/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/test-applications/jsp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/jsp/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/jsp/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP1/test-applications/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,11 +50,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.1.SP1-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.SP1</rfVersion>
</properties>
<modules>
Modified: tags/3.3.1.SP1/test-applications/regressionArea/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/regressionArea/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Regresion Area:Seam Application</name>
<repositories>
<repository>
@@ -60,7 +60,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.1.SP1-SNAPSHOT</richversion>
+ <richversion>3.3.1.SP1</richversion>
<seamversion>2.1.1.GA</seamversion>
<jsfversion>1.2_11</jsfversion>
<jbosshome>C:/tmp/jboss-4.2.3.GA</jbosshome>
Modified: tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/regressionArea/regressionArea-web/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: tags/3.3.1.SP1/test-applications/richfaces-docs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/richfaces-docs/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -8,7 +8,7 @@
<name>richfaces-docs</name>
<properties>
<projectName>richfaces-docs</projectName>
- <richfacesVersion>3.3.1.SP1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.SP1</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<droolsVersion>4.0.0</droolsVersion>
Modified: tags/3.3.1.SP1/test-applications/richfaces-docs/web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/richfaces-docs/web/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -47,7 +47,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<scope>provided</scope>
</dependency>
Modified: tags/3.3.1.SP1/test-applications/seamApp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seamApp/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/seamApp/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <rfVersion>3.3.1.SP1-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.SP1</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: tags/3.3.1.SP1/test-applications/seleniumTest/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/seleniumTest/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -227,7 +227,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.SP1/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/seleniumTest/richfaces/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: tags/3.3.1.SP1/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/test-applications/seleniumTest/samples/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.3.1.SP1/ui/assembly/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/assembly/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/assembly/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: tags/3.3.1.SP1/ui/beanValidator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/beanValidator/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/beanValidator/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -3,19 +3,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
<name>beanValidator</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: tags/3.3.1.SP1/ui/calendar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/calendar/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/calendar/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/colorPicker/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/colorPicker/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/colorPicker/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/columns/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/columns/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/columns/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.SP1/ui/combobox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/combobox/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/combobox/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP1/ui/componentControl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/componentControl/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/componentControl/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/contextMenu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/contextMenu/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/contextMenu/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/core/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/core/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/core/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/create.bat
===================================================================
--- branches/enterprise/3.3.X/ui/create.bat 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/create.bat 2010-01-26 18:13:29 UTC (rev 16364)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-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.1.SP1 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/dataFilterSlider/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/dataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dataTable/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/dataTable/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.1.SP1/ui/datascroller/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/datascroller/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/datascroller/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/drag-drop/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/drag-drop/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/drag-drop/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.1.SP1/ui/dropdown-menu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/dropdown-menu/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/editor/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/editor/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/editor/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -62,7 +62,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
Modified: tags/3.3.1.SP1/ui/effect/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/effect/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/effect/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/extendedDataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/extendedDataTable/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -64,45 +64,45 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/fileUpload/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/fileUpload/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/fileUpload/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/functions/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/functions/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/functions/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/gmap/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/gmap/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/gmap/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/hotKey/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/hotKey/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/hotKey/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/inplaceInput/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inplaceInput/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/inplaceInput/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/inplaceSelect/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/inplaceSelect/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP1/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/inputnumber-slider/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/inputnumber-spinner/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.1.SP1/ui/insert/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/insert/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/insert/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/jQuery/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/jQuery/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/jQuery/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/layout/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/layout/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/layout/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -4,18 +4,18 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>layout</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>layout</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -48,7 +48,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.SP1/ui/listShuttle/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/listShuttle/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/listShuttle/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.SP1/ui/menu-components/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/menu-components/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/menu-components/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/message/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/message/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/message/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Deleted: tags/3.3.1.SP1/ui/message/src/main/java/org/richfaces/component/UIRichMessages.java
===================================================================
--- branches/enterprise/3.3.X/ui/message/src/main/java/org/richfaces/component/UIRichMessages.java 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/message/src/main/java/org/richfaces/component/UIRichMessages.java 2010-01-26 18:13:29 UTC (rev 16364)
@@ -1,376 +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.component;
-
-import java.io.IOException;
-import java.io.ObjectInputStream;
-import java.io.ObjectOutputStream;
-import java.io.Serializable;
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.Iterator;
-import java.util.List;
-
-import javax.el.ELException;
-import javax.el.ValueExpression;
-import javax.faces.FacesException;
-import javax.faces.application.FacesMessage;
-import javax.faces.application.FacesMessage.Severity;
-import javax.faces.component.UIComponent;
-import javax.faces.component.UIMessages;
-import javax.faces.context.FacesContext;
-
-import org.ajax4jsf.component.AjaxOutput;
-import org.ajax4jsf.renderkit.RendererUtils;
-
-/**
- * @author Anton Belevich
- *
- */
-public abstract class UIRichMessages extends UIMessages implements AjaxOutput {
-
- public static final String COMPONENT_TYPE = "org.richfaces.component.RichMessages";
-
- private String forVal = null;
- private boolean updated = false;
-
- private List<FacesMessageWithId> renderedMessages;
-
- /**
- * <p>
- * Return the client identifier of the component for which this component
- * represents associated message(s) (if any).
- * </p>
- */
- public String getFor() {
-
- if (this.forVal != null) {
- return (this.forVal);
- }
- ValueExpression ve = getValueExpression("for");
- if (ve != null) {
- try {
- return ((String) ve.getValue(getFacesContext().getELContext()));
- } catch (ELException e) {
- throw new FacesException(e);
- }
- } else {
- return (null);
- }
-
- }
-
- /**
- * <p>
- * Set the client identifier of the component for which this component
- * represents associated message(s) (if any). This property must be set
- * before the message is displayed.
- * </p>
- *
- * @param newFor
- * The new client id
- */
- public void setFor(String newFor) {
-
- forVal = newFor;
-
- }
-
- public boolean isUpdated() {
- return updated;
- }
-
- public boolean isAjaxRendered() {
- return true;
- }
-
- public Iterator<FacesMessage> getMessages(FacesContext context) {
- String forInputId = getFor();
- if (null == this.renderedMessages || null != forInputId) {
- List<String> severenities = getSeverenities();
- renderedMessages = new ArrayList<FacesMessageWithId>();
- if (isGlobalOnly()) {
- addMessagesForId(context, null, severenities);
- } else if (null != forInputId) {
- UIComponent componentFor = RendererUtils.getInstance()
- .findComponentFor(context, this, forInputId);
- if (null != componentFor) {
- addMessagesForId(context,
- componentFor.getClientId(context), severenities);
- }
- } else {
- Iterator<String> clientIdsWithMessages = context
- .getClientIdsWithMessages();
- while (clientIdsWithMessages.hasNext()) {
- addMessagesForId(context, clientIdsWithMessages.next(),
- severenities);
- }
- }
- }
- ;
- final Iterator<FacesMessageWithId> iterator = this.renderedMessages
- .iterator();
- return new Iterator<FacesMessage>() {
-
- public boolean hasNext() {
- return iterator.hasNext();
- }
-
- public FacesMessage next() {
- return iterator.next().getMessage();
- }
-
- public void remove() {
- }
- };
- }
-
- public void updateMessages(FacesContext context, String forId) {
- updated = true;
- if (null == renderedMessages) {
- renderedMessages = new ArrayList<FacesMessageWithId>();
- } else {
- Iterator<FacesMessageWithId> renderedMessageIterator = renderedMessages
- .iterator();
- while (renderedMessageIterator.hasNext()) {
- String clientId = renderedMessageIterator.next().getClientId();
- if ((null == forId && null == clientId)
- || (null != forId && forId.equals(clientId))) {
- renderedMessageIterator.remove();
- }
- }
- }
- addMessagesForId(context, forId, getSeverenities());
- }
-
- /**
- * @param context
- * @param forId
- * @param severenities
- * TODO
- */
- protected void addMessagesForId(FacesContext context, String forId,
- List<String> severenities) {
- Iterator<FacesMessage> messages = context.getMessages(forId);
- while (messages.hasNext()) {
- FacesMessage message = messages.next();
- if (severenities.size() == 0 || severenities.contains("ALL")
- || isApplicableMessage(severenities, message)) {
- renderedMessages.add(new FacesMessageWithId(forId, message));
- }
- }
- }
-
- /**
- * @param severenities
- * @param message
- * @return
- */
- protected boolean isApplicableMessage(List<String> severenities,
- FacesMessage message) {
- if (severenities.size() == 0 || severenities.contains("ALL")) {
- return true;
- }
- Severity severity = message.getSeverity();
- for (Object key : FacesMessage.VALUES_MAP.keySet()) {
- Severity sev = (Severity) FacesMessage.VALUES_MAP.get(key);
- if (0 == sev.compareTo(severity)) {
- return severenities.contains(key);
- }
- }
- return false;
- }
-
- public void setAjaxRendered(boolean ajaxRendered) {
- if (!ajaxRendered) {
- new IllegalArgumentException();
- }
- }
-
- @Override
- public void encodeBegin(FacesContext context) throws IOException {
- if (!isUpdated()) {
- setRenderedMessages(null);
- }
- super.encodeBegin(context);
- }
-
- public abstract String getLevel();
-
- public abstract void setLevel(String level);
-
- public List<String> getSeverenities() {
- String level = getLevel();
- List<String> severenities;
- if (null != level) {
- String[] levels = level.split(",");
- severenities = new ArrayList<String>(levels.length);
- for (int i = 0; i < levels.length; i++) {
- String levelName = levels[i].toUpperCase().trim();
- severenities.add(levelName);
- }
- } else {
- severenities = Collections.emptyList();
- }
- return severenities;
- }
-
- private Object[] values;
-
- public Object saveState(FacesContext context) {
-
- if (values == null) {
- values = new Object[3];
- }
-
- values[0] = super.saveState(context);
- values[1] = this.forVal;
- values[2] = saveAttachedState(context, getRenderedMessages());
- return (values);
-
- }
-
- @SuppressWarnings("unchecked")
- public void restoreState(FacesContext context, Object state) {
-
- values = (Object[]) state;
- super.restoreState(context, values[0]);
- forVal = (String) values[1];
- setRenderedMessages((List<FacesMessageWithId>) restoreAttachedState(
- context, values[2]));
- }
-
- /**
- * @author asmirnov
- *
- */
- @SuppressWarnings("serial")
- public static class FacesMessageWithId implements Serializable {
- private FacesMessage message;
-
- private String clientId;
-
- /**
- * @param clientId
- * @param message
- */
- public FacesMessageWithId(String clientId, FacesMessage message) {
- this.message = message;
- this.clientId = clientId;
- }
-
- /**
- * @return the message
- */
- public FacesMessage getMessage() {
- return message;
- }
-
- /**
- * @return the clientId
- */
- public String getClientId() {
- return clientId;
- }
-
- /**
- * <p>
- * Persist {@link FacesMessageWithId} artifacts,
- * including the non serializable <code>Severity</code>.
- * </p>
- */
- private void writeObject(ObjectOutputStream out) throws IOException {
- if (clientId != null) {
- out.writeBoolean(true);
- out.writeUTF(clientId);
- } else {
- out.writeBoolean(false);
- }
-
- out.writeInt(message.getSeverity().getOrdinal());
-
- String summary = message.getSummary();
- if (summary != null) {
- out.writeBoolean(true);
- out.writeUTF(summary);
- } else {
- out.writeBoolean(false);
- }
-
- String detail = message.getDetail();
- if (detail != null) {
- out.writeBoolean(true);
- out.writeUTF(detail);
- } else {
- out.writeBoolean(false);
- }
- }
-
- /**
- * <p>
- * Reconstruct {@link FacesMessageWithId} from
- * serialized artifacts.
- * </p>
- */
- private void readObject(ObjectInputStream in) throws IOException,
- ClassNotFoundException {
-
- if (in.readBoolean()) {
- clientId = in.readUTF();
- }
-
- Severity severity = FacesMessage.SEVERITY_INFO;
- int ordinal = in.readInt();
- if (ordinal >= 0 && ordinal < FacesMessage.VALUES.size()) {
- severity = (Severity) FacesMessage.VALUES.get(ordinal);
- }
-
- String summary = null;
- if (in.readBoolean()) {
- summary = in.readUTF();
- }
-
- String detail = null;
- if (in.readBoolean()) {
- detail = in.readUTF();
- }
-
- message = new FacesMessage(severity, summary, detail);
- }
-
- }
-
- /**
- * @return the renderedMessages
- */
- protected List<FacesMessageWithId> getRenderedMessages() {
- return renderedMessages;
- }
-
- /**
- * @param renderedMessages
- * the renderedMessages to set
- */
- protected void setRenderedMessages(List<FacesMessageWithId> renderedMessages) {
- this.renderedMessages = renderedMessages;
- }
-
-}
Copied: tags/3.3.1.SP1/ui/message/src/main/java/org/richfaces/component/UIRichMessages.java (from rev 16362, branches/enterprise/3.3.X/ui/message/src/main/java/org/richfaces/component/UIRichMessages.java)
===================================================================
--- tags/3.3.1.SP1/ui/message/src/main/java/org/richfaces/component/UIRichMessages.java (rev 0)
+++ tags/3.3.1.SP1/ui/message/src/main/java/org/richfaces/component/UIRichMessages.java 2010-01-26 18:13:29 UTC (rev 16364)
@@ -0,0 +1,379 @@
+/**
+ * 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.component;
+
+import java.io.IOException;
+import java.io.ObjectInputStream;
+import java.io.ObjectOutputStream;
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.Iterator;
+import java.util.List;
+
+import javax.el.ELException;
+import javax.el.ValueExpression;
+import javax.faces.FacesException;
+import javax.faces.application.FacesMessage;
+import javax.faces.application.FacesMessage.Severity;
+import javax.faces.component.UIComponent;
+import javax.faces.component.UIMessages;
+import javax.faces.context.FacesContext;
+
+import org.ajax4jsf.component.AjaxOutput;
+import org.ajax4jsf.renderkit.RendererUtils;
+
+/**
+ * @author Anton Belevich
+ *
+ */
+public abstract class UIRichMessages extends UIMessages implements AjaxOutput {
+
+ public static final String COMPONENT_TYPE = "org.richfaces.component.RichMessages";
+
+ private String forVal = null;
+ private boolean updated = false;
+
+ private List<FacesMessageWithId> renderedMessages;
+
+ /**
+ * <p>
+ * Return the client identifier of the component for which this component
+ * represents associated message(s) (if any).
+ * </p>
+ */
+ public String getFor() {
+
+ if (this.forVal != null) {
+ return (this.forVal);
+ }
+ ValueExpression ve = getValueExpression("for");
+ if (ve != null) {
+ try {
+ return ((String) ve.getValue(getFacesContext().getELContext()));
+ } catch (ELException e) {
+ throw new FacesException(e);
+ }
+ } else {
+ return (null);
+ }
+
+ }
+
+ /**
+ * <p>
+ * Set the client identifier of the component for which this component
+ * represents associated message(s) (if any). This property must be set
+ * before the message is displayed.
+ * </p>
+ *
+ * @param newFor
+ * The new client id
+ */
+ public void setFor(String newFor) {
+
+ forVal = newFor;
+
+ }
+
+ public boolean isUpdated() {
+ return updated;
+ }
+
+ public boolean isAjaxRendered() {
+ return true;
+ }
+
+ public Iterator<FacesMessage> getMessages(FacesContext context) {
+ String forInputId = getFor();
+ if (null == this.renderedMessages || null != forInputId) {
+ List<String> severenities = getSeverenities();
+ renderedMessages = new ArrayList<FacesMessageWithId>();
+ if (isGlobalOnly()) {
+ addMessagesForId(context, null, severenities);
+ } else if (null != forInputId) {
+ UIComponent componentFor = RendererUtils.getInstance()
+ .findComponentFor(context, this, forInputId);
+ if (null != componentFor) {
+ addMessagesForId(context,
+ componentFor.getClientId(context), severenities);
+ }
+ } else {
+ Iterator<String> clientIdsWithMessages = context
+ .getClientIdsWithMessages();
+ while (clientIdsWithMessages.hasNext()) {
+ addMessagesForId(context, clientIdsWithMessages.next(),
+ severenities);
+ }
+ }
+ }
+ ;
+ final Iterator<FacesMessageWithId> iterator = this.renderedMessages
+ .iterator();
+ return new Iterator<FacesMessage>() {
+
+ public boolean hasNext() {
+ return iterator.hasNext();
+ }
+
+ public FacesMessage next() {
+ return iterator.next().getMessage();
+ }
+
+ public void remove() {
+ }
+ };
+ }
+
+ public void updateMessages(FacesContext context, String forId) {
+ updated = true;
+ if (null == renderedMessages) {
+ renderedMessages = new ArrayList<FacesMessageWithId>();
+ } else {
+ Iterator<FacesMessageWithId> renderedMessageIterator = renderedMessages
+ .iterator();
+ while (renderedMessageIterator.hasNext()) {
+ String clientId = renderedMessageIterator.next().getClientId();
+ if ((null == forId && null == clientId)
+ || (null != forId && forId.equals(clientId))) {
+ renderedMessageIterator.remove();
+ }
+ }
+ }
+ addMessagesForId(context, forId, getSeverenities());
+ }
+
+ /**
+ * @param context
+ * @param forId
+ * @param severenities
+ * TODO
+ */
+ protected void addMessagesForId(FacesContext context, String forId,
+ List<String> severenities) {
+ if (isGlobalOnly() && forId != null) {
+ return;
+ }
+ Iterator<FacesMessage> messages = context.getMessages(forId);
+ while (messages.hasNext()) {
+ FacesMessage message = messages.next();
+ if (severenities.size() == 0 || severenities.contains("ALL")
+ || isApplicableMessage(severenities, message)) {
+ renderedMessages.add(new FacesMessageWithId(forId, message));
+ }
+ }
+ }
+
+ /**
+ * @param severenities
+ * @param message
+ * @return
+ */
+ protected boolean isApplicableMessage(List<String> severenities,
+ FacesMessage message) {
+ if (severenities.size() == 0 || severenities.contains("ALL")) {
+ return true;
+ }
+ Severity severity = message.getSeverity();
+ for (Object key : FacesMessage.VALUES_MAP.keySet()) {
+ Severity sev = (Severity) FacesMessage.VALUES_MAP.get(key);
+ if (0 == sev.compareTo(severity)) {
+ return severenities.contains(key);
+ }
+ }
+ return false;
+ }
+
+ public void setAjaxRendered(boolean ajaxRendered) {
+ if (!ajaxRendered) {
+ new IllegalArgumentException();
+ }
+ }
+
+ @Override
+ public void encodeBegin(FacesContext context) throws IOException {
+ if (!isUpdated()) {
+ setRenderedMessages(null);
+ }
+ super.encodeBegin(context);
+ }
+
+ public abstract String getLevel();
+
+ public abstract void setLevel(String level);
+
+ public List<String> getSeverenities() {
+ String level = getLevel();
+ List<String> severenities;
+ if (null != level) {
+ String[] levels = level.split(",");
+ severenities = new ArrayList<String>(levels.length);
+ for (int i = 0; i < levels.length; i++) {
+ String levelName = levels[i].toUpperCase().trim();
+ severenities.add(levelName);
+ }
+ } else {
+ severenities = Collections.emptyList();
+ }
+ return severenities;
+ }
+
+ private Object[] values;
+
+ public Object saveState(FacesContext context) {
+
+ if (values == null) {
+ values = new Object[3];
+ }
+
+ values[0] = super.saveState(context);
+ values[1] = this.forVal;
+ values[2] = saveAttachedState(context, getRenderedMessages());
+ return (values);
+
+ }
+
+ @SuppressWarnings("unchecked")
+ public void restoreState(FacesContext context, Object state) {
+
+ values = (Object[]) state;
+ super.restoreState(context, values[0]);
+ forVal = (String) values[1];
+ setRenderedMessages((List<FacesMessageWithId>) restoreAttachedState(
+ context, values[2]));
+ }
+
+ /**
+ * @author asmirnov
+ *
+ */
+ @SuppressWarnings("serial")
+ public static class FacesMessageWithId implements Serializable {
+ private FacesMessage message;
+
+ private String clientId;
+
+ /**
+ * @param clientId
+ * @param message
+ */
+ public FacesMessageWithId(String clientId, FacesMessage message) {
+ this.message = message;
+ this.clientId = clientId;
+ }
+
+ /**
+ * @return the message
+ */
+ public FacesMessage getMessage() {
+ return message;
+ }
+
+ /**
+ * @return the clientId
+ */
+ public String getClientId() {
+ return clientId;
+ }
+
+ /**
+ * <p>
+ * Persist {@link FacesMessageWithId} artifacts,
+ * including the non serializable <code>Severity</code>.
+ * </p>
+ */
+ private void writeObject(ObjectOutputStream out) throws IOException {
+ if (clientId != null) {
+ out.writeBoolean(true);
+ out.writeUTF(clientId);
+ } else {
+ out.writeBoolean(false);
+ }
+
+ out.writeInt(message.getSeverity().getOrdinal());
+
+ String summary = message.getSummary();
+ if (summary != null) {
+ out.writeBoolean(true);
+ out.writeUTF(summary);
+ } else {
+ out.writeBoolean(false);
+ }
+
+ String detail = message.getDetail();
+ if (detail != null) {
+ out.writeBoolean(true);
+ out.writeUTF(detail);
+ } else {
+ out.writeBoolean(false);
+ }
+ }
+
+ /**
+ * <p>
+ * Reconstruct {@link FacesMessageWithId} from
+ * serialized artifacts.
+ * </p>
+ */
+ private void readObject(ObjectInputStream in) throws IOException,
+ ClassNotFoundException {
+
+ if (in.readBoolean()) {
+ clientId = in.readUTF();
+ }
+
+ Severity severity = FacesMessage.SEVERITY_INFO;
+ int ordinal = in.readInt();
+ if (ordinal >= 0 && ordinal < FacesMessage.VALUES.size()) {
+ severity = (Severity) FacesMessage.VALUES.get(ordinal);
+ }
+
+ String summary = null;
+ if (in.readBoolean()) {
+ summary = in.readUTF();
+ }
+
+ String detail = null;
+ if (in.readBoolean()) {
+ detail = in.readUTF();
+ }
+
+ message = new FacesMessage(severity, summary, detail);
+ }
+
+ }
+
+ /**
+ * @return the renderedMessages
+ */
+ protected List<FacesMessageWithId> getRenderedMessages() {
+ return renderedMessages;
+ }
+
+ /**
+ * @param renderedMessages
+ * the renderedMessages to set
+ */
+ protected void setRenderedMessages(List<FacesMessageWithId> renderedMessages) {
+ this.renderedMessages = renderedMessages;
+ }
+
+}
Modified: tags/3.3.1.SP1/ui/modal-panel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/modal-panel/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/modal-panel/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/orderingList/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/orderingList/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/orderingList/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/paint2D/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/paint2D/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/paint2D/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/panel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panel/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/panel/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/panelbar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panelbar/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/panelbar/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/panelmenu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panelmenu/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/panelmenu/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/pickList/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/pickList/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/pickList/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP1/ui/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.SP1/ui/progressBAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/progressBAR/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/progressBAR/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/scrollableDataTable/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/separator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/separator/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/separator/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.1.SP1/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/simpleTogglePanel/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/spacer/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/spacer/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/spacer/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/state/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/state/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/state/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/suggestionbox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/suggestionbox/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/suggestionbox/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/tabPanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tabPanel/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/tabPanel/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/togglePanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/togglePanel/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/togglePanel/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/toolBar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/toolBar/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/toolBar/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/tooltip/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tooltip/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/tooltip/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/tree/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tree/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/tree/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/treeModel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/treeModel/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/treeModel/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP1/ui/treeTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/treeTable/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/treeTable/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP1/ui/virtualEarth/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/virtualEarth/pom.xml 2010-01-18 14:30:05 UTC (rev 16321)
+++ tags/3.3.1.SP1/ui/virtualEarth/pom.xml 2010-01-26 18:13:29 UTC (rev 16364)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</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.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
15 years