JBoss Rich Faces SVN: r16403 - in root/ui-sandbox/trunk/components/tables/ui/src/main: resources/META-INF/resources and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2010-02-03 10:45:46 -0500 (Wed, 03 Feb 2010)
New Revision: 16403
Modified:
root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/ExtendedDataTableRenderer.java
root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/extendedDataTable.css
root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/extendedDataTable.js
Log:
RF-8107
Modified: root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/ExtendedDataTableRenderer.java
===================================================================
--- root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/ExtendedDataTableRenderer.java 2010-02-03 15:26:43 UTC (rev 16402)
+++ root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/ExtendedDataTableRenderer.java 2010-02-03 15:45:46 UTC (rev 16403)
@@ -284,39 +284,51 @@
writer.startElement(HTML.DIV_ELEM, table);
writer.writeAttribute(HTML.ID_ATTRIBUTE, table.getClientId(context) + ":b", null);
writer.writeAttribute(HTML.CLASS_ATTRIBUTE, "rich-extable-body", null);
- writer.startElement(HTML.DIV_ELEM, table);
- // writer.startElement(HTML.DIV_ELEM, table); TODO
- // writer.write(" ");
- // writer.endElement(HTML.DIV_ELEM);
- writer.startElement(HTML.TABLE_ELEMENT, table);
- writer.writeAttribute(HTML.CELLPADDING_ATTRIBUTE, "0", null);
- writer.writeAttribute(HTML.CELLSPACING_ATTRIBUTE, "0", null);
- writer.startElement(HTML.TBOBY_ELEMENT, table);
- writer.startElement(HTML.TR_ELEMENT, table);
- state.setFrozen(true);
- for (int i = 0; i < 2; i++) { // TODO 1. Replace 2 with constant 2. Empty frozen part shouldn't be rendered
- writer.startElement(HTML.TD_ELEM, table);
+ if (table.getRowCount() == 0) {
+ UIComponent facet = table.getFacet("noData");
+ if (facet != null && facet.isRendered()) {
+ renderChild(context, facet);
+ } else {
+ Object noDataLabel = table.getAttributes().get("noDataLabel");
+ if (noDataLabel != null) {
+ writer.writeText(noDataLabel, "noDataLabel");
+ }
+ }
+ } else {
writer.startElement(HTML.DIV_ELEM, table);
- if (i == 1) {
- writer.writeAttribute(HTML.ID_ATTRIBUTE, table.getClientId(context) + ":body", null);
- writer.writeAttribute(HTML.CLASS_ATTRIBUTE, "rich-extable-part rich-extable-part-width", null);
- }
+ // writer.startElement(HTML.DIV_ELEM, table); TODO
+ // writer.write(" ");
+ // writer.endElement(HTML.DIV_ELEM);
writer.startElement(HTML.TABLE_ELEMENT, table);
writer.writeAttribute(HTML.CELLPADDING_ATTRIBUTE, "0", null);
writer.writeAttribute(HTML.CELLSPACING_ATTRIBUTE, "0", null);
writer.startElement(HTML.TBOBY_ELEMENT, table);
- table.walk(context, this, state); // TODO encodeRows(context, table);
+ writer.startElement(HTML.TR_ELEMENT, table);
+ state.setFrozen(true);
+ for (int i = 0; i < 2; i++) { // TODO 1. Replace 2 with constant 2. Empty frozen part shouldn't be rendered
+ writer.startElement(HTML.TD_ELEM, table);
+ writer.startElement(HTML.DIV_ELEM, table);
+ if (i == 1) {
+ writer.writeAttribute(HTML.ID_ATTRIBUTE, table.getClientId(context) + ":body", null);
+ writer.writeAttribute(HTML.CLASS_ATTRIBUTE, "rich-extable-part rich-extable-part-width", null);
+ }
+ writer.startElement(HTML.TABLE_ELEMENT, table);
+ writer.writeAttribute(HTML.CELLPADDING_ATTRIBUTE, "0", null);
+ writer.writeAttribute(HTML.CELLSPACING_ATTRIBUTE, "0", null);
+ writer.startElement(HTML.TBOBY_ELEMENT, table);
+ table.walk(context, this, state); // TODO encodeRows(context, table);
+ writer.endElement(HTML.TBOBY_ELEMENT);
+ writer.endElement(HTML.TABLE_ELEMENT);
+ writer.endElement(HTML.DIV_ELEM);
+ writer.endElement(HTML.TD_ELEM);
+ state.setFrozen(false);
+ }
+ writer.endElement(HTML.TR_ELEMENT);
writer.endElement(HTML.TBOBY_ELEMENT);
writer.endElement(HTML.TABLE_ELEMENT);
writer.endElement(HTML.DIV_ELEM);
- writer.endElement(HTML.TD_ELEM);
- state.setFrozen(false);
}
- writer.endElement(HTML.TR_ELEMENT);
- writer.endElement(HTML.TBOBY_ELEMENT);
- writer.endElement(HTML.TABLE_ELEMENT);
writer.endElement(HTML.DIV_ELEM);
- writer.endElement(HTML.DIV_ELEM);
}
private void encodeHeaderOrFooterCell(FacesContext context, ResponseWriter writer, UIComponent column,
Modified: root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/extendedDataTable.css
===================================================================
--- root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/extendedDataTable.css 2010-02-03 15:26:43 UTC (rev 16402)
+++ root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/extendedDataTable.css 2010-02-03 15:45:46 UTC (rev 16403)
@@ -32,7 +32,7 @@
.rich-extable-body{
overflow-x: hidden;
- overflow-y: scroll;
+ overflow-y: auto;
width: 100%;
}
Modified: root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/extendedDataTable.js
===================================================================
--- root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/extendedDataTable.js 2010-02-03 15:26:43 UTC (rev 16402)
+++ root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/extendedDataTable.js 2010-02-03 15:45:46 UTC (rev 16403)
@@ -37,26 +37,28 @@
richfaces.ExtendedDataTable = function(id, ajaxFunction) {
var WIDTH_CLASS_NAME_BASE = "rich-extable-cell-width-";
var MIN_WIDTH = 20;
+ var idSuffixs = [":header", ":footer"];
var element = document.getElementById(id);
var bodyElement = document.getElementById(id + ":b");
- var contentElement = bodyElement.firstChild;//TODO Richfaces.firstDescendant;
- //TODO var marginElement = contentElement.firstChild;this.marginElement = Richfaces.firstDescendant(this.contentElement);
- var dataTableElement = contentElement.lastChild;//TODO this.dataTableElement = Richfaces.lastDescendant(this.contentElement);
- var frozenHeaderPartElement = document.getElementById(id + ":frozenHeader");
+ var contentElement = jQuery(bodyElement).children("div:first").get(0);
var dragElement = document.getElementById(id + ":d");
var reorderElement = document.getElementById(id + ":r");
var widthInput = document.getElementById(id + ":wi");
var normalPartStyle = richfaces.getCSSRule(".rich-extable-part-width").style;
var resizerHolders = jQuery(element).children(".rich-extable-header").find(".rich-extable-resizer-holder").get();
- var idSuffixs = [":header", ":body", ":footer"];
+ var frozenHeaderPartElement = document.getElementById(id + ":frozenHeader");
var frozenColumnCount = frozenHeaderPartElement ? frozenHeaderPartElement.firstChild.rows[0].cells.length : 0;//TODO Richfaces.firstDescendant;
- var rows = document.getElementById(id + idSuffixs[1]).firstChild.rows.length;//TODO Richfaces.firstDescendant;
-
- var scrollElement = document.getElementById(id + idSuffixs[2]);
+ if (contentElement) {
+ idSuffixs[idSuffixs.length] = ":body";
+ //TODO var marginElement = contentElement.firstChild;this.marginElement = Richfaces.firstDescendant(this.contentElement);
+ var dataTableElement = contentElement.lastChild;//TODO this.dataTableElement = Richfaces.lastDescendant(this.contentElement);
+ var rows = document.getElementById(id + idSuffixs[1]).firstChild.rows.length;//TODO Richfaces.firstDescendant;
+ }
+ var scrollElement = document.getElementById(id + ":footer");
var resizeData = {};
var idOfReorderingColumn = "";
15 years, 1 month
JBoss Rich Faces SVN: r16402 - root/framework/trunk/impl/src/main/resources/META-INF/resources.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2010-02-03 10:26:43 -0500 (Wed, 03 Feb 2010)
New Revision: 16402
Added:
root/framework/trunk/impl/src/main/resources/META-INF/resources/jquery.position.js
Log:
position plugin for jQuery was added
Added: root/framework/trunk/impl/src/main/resources/META-INF/resources/jquery.position.js
===================================================================
--- root/framework/trunk/impl/src/main/resources/META-INF/resources/jquery.position.js (rev 0)
+++ root/framework/trunk/impl/src/main/resources/META-INF/resources/jquery.position.js 2010-02-03 15:26:43 UTC (rev 16402)
@@ -0,0 +1,253 @@
+// draft examples of usage
+// jQuery('#tooltip').position('#aaa',{from:'LB', to:'AA'});
+// jQuery('#bbb').bind("click",function(e){jQuery('#tooltip').position(e);});
+// TODO: clear code
+// TODO: optimization
+
+(function($) {
+ $.fn.position = function(source, params) {
+ var stype = typeof source;
+ if (stype == "object" || stype == "string") {
+ var rect = {};
+ if (source.type) {
+ rect = getPointerRect(source);
+ } else if (stype == "string" || source.nodeType || source instanceof jQuery) {
+ stype = "element";
+ rect = getElementRect(source);
+ } else {
+ rect = source;
+ }
+
+ var params = params || {};
+ var options = $.extend({}, defaults, $.PositionTypes[params.type || defaults.type], params);
+ return this.each(function() {
+ element = $(this);
+ //alert(rect.left+" "+rect.top+" "+rect.width+" "+rect.height);
+ position(rect, element, options);
+ });
+ }
+ };
+
+ var defaults = {
+ type: "TOOLTIP",
+ collision: "",
+ offset: [0,0]
+ };
+ var re = /^(left|right)-(top|buttom|auto)$/i;
+
+ $.PositionTypes = {
+ // horisontal constants: L-left, R-right, C-center, A-auto
+ // vertical constants: T-top, B-bottom, M-middle, A-auto
+ // for auto: list of joinPoint-Direction pairs
+ TOOLTIP: {from:"RB", to:"AA", auto:["RBRT", "RBLT", "RBLB", "RBRB"]},
+ DROPDOWN:{from:"RB", to:"AA", auto:["RBLB", "RTLT", "LBRB", "LTRT"]}
+ };
+
+ $.addPositionType = function (type, options) {
+ // TODO: change [options] to [from, to, auto]
+ /*var obj = {};
+ if (match=from.match(re))!=null ) {
+ obj.from = [ match[1]=='right' ? 'R' : 'L', match[2]=='bottom' ? 'B' : 'T'];
+ }
+ if (match=to.match(re))!=null ) {
+ obj.to = [ match[1]=='right' ? 'R' : match[1]=='left' ? 'L' : 'A', match[2]=='bottom' ? 'B' : match[2]=='top' ? 'T' : 'A'];
+ }*/
+ $.PositionTypes[type] = options;
+ }
+
+ function cropPx(value) {
+ if (typeof value == "string") {
+ if (!isNaN(value)) {
+ return parseInt(value);
+ }
+ }
+ return NaN;
+ };
+
+ function getPointerRect (event) {
+ var e = $.event.fix(event);
+ return {width: 0, height: 0, left: e.pageX, top: e.pageY};
+ };
+
+ function getElementRect (element) {
+ var jqe = $(element);
+ var offset = jqe.offset();
+ return {width: jqe.width(), height: jqe.height(), left: offset.left, top: offset.top};
+ };
+
+ function checkCollision (elementRect, windowRect) {
+ // return 0 if elementRect in windowRect without collision
+ if (elementRect.left >= windowRect.left &&
+ elementRect.top >= windowRect.top &&
+ elementRect.right <= windowRect.right &&
+ elementRect.bottom <= windowRect.bottom)
+ return 0;
+ // return collision squire
+ var rect = {left: (elementRect.left>windowRect.left ? elementRect.left : windowRect.left),
+ top: (elementRect.top>windowRect.top ? elementRect.top : windowRect.top),
+ right: (elementRect.right<windowRect.right ? elementRect.right : windowRect.right),
+ bottom: (elementRect.bottom<windowRect.bottom ? elementRect.bottom : windowRect.bottom)};
+ return (rect.right-rect.left) * (rect.bottom-rect.top);
+ };
+
+ //function fromLeft() {
+ /*
+ * params: {
+ * left,top,width,height, //baseRect
+ * ox,oy, //rectoffset
+ * w,h // elementDim
+ * }
+ */
+ /* return this.left;
+ }
+
+ function fromRight(params) {
+ return this.left + this.width - this.w;
+ }
+
+ function (params) {
+ var rect = {left:fromLeft.call(params), right:fromRight.call(params), top:}
+ }*/
+
+ function getPositionRect(baseRect, rectOffset, elementDim, pos) {
+ var rect = {};
+ // TODO: add support for center and middle // may be middle rename to center too
+ // TODO: add rectOffset support
+
+ var v = pos.charAt(0);
+ if (v=='L') {
+ rect.left = baseRect.left// + rectOffset.left;
+ } else if (v=='R') {
+ rect.left = baseRect.left + baseRect.width;// - rectOffset.left;
+ }
+
+ v = pos.charAt(1);
+ if (v=='T') {
+ rect.top = baseRect.top// + rectOffset.left;
+ } else if (v=='B') {
+ rect.top = baseRect.top + baseRect.height;// - rectOffset.left;
+ }
+
+ v = pos.charAt(2);
+ if (v=='L') {
+ rect.right = rect.left;
+ rect.left -= elementDim.width;
+ } else if (v=='R') {
+ rect.right = rect.left + elementDim.width;
+ }
+
+ v = pos.charAt(3);
+ if (v=='T') {
+ rect.bottom = rect.top;
+ rect.top -= elementDim.height;
+ } else if (v=='B') {
+ rect.bottom = rect.top + elementDim.height;
+ }
+
+ return rect;
+ }
+
+ function __mergePos(s1,s2) {
+ var result = "";
+ var ch;
+ while (result.length < s1.length) {
+ ch = s1.charAt(result.length);
+ result += ch == 'A' ? s2.charAt(result.length) : ch;
+ }
+ return result;
+ }
+
+ function calculatePosition (baseRect, rectOffset, windowRect, elementDim, options) {
+
+ var theBest = {square:0};
+ var rect;
+ var s;
+ var ox, oy;
+ var p = options.from+options.to;
+
+ if (p.indexOf('A')<0) {
+ return getPositionRect(baseRect, rectOffset, elementDim, p);
+ } else {
+ var pos;
+ for (var i = 0; i<options.auto.length; i++) {
+
+ // TODO: draft functional
+ pos = __mergePos(p, options.auto[i]);
+ rect = getPositionRect(baseRect, rectOffset, elementDim, pos);
+ ox = rect.left; oy = rect.top;
+ s = checkCollision(rect, windowRect);
+ if (s!=0) {
+ if (ox>=0 && oy>=0 && theBest.square<s) theBest = {x:ox, y:oy, square:s};
+ } else break;
+ }
+ if (s!=0 && (ox<0 || oy<0 || theBest.square>s)) {
+ ox=theBest.x; oy=theBest.y
+ }
+ }
+
+ /*
+ // jointPoint: bottom-right, direction: bottom-left
+ var basex = baseRect.left - rectOffset.left;
+ var basey = baseRect.top + rectOffset.top;
+ var rect = {right: basex + baseRect.width, top: basey + baseRect.height};
+ rect.left = rect.right - elementDim.width;
+ rect.bottom = rect.top + elementDim.height;
+
+ // jointPoint: top-right, direction: top-left
+ basex = baseRect.left - rectOffset.left;
+ basey = baseRect.top - rectOffset.top;
+ rect = {right: basex + baseRect.width, bottom: basey};
+ rect.left = rect.right - elementDim.width;
+ rect.top = rect.bottom - elementDim.height;
+
+ // jointPoint: bottom-left, direction: bottom-right
+ basex = baseRect.left + rectOffset.left;
+ basey = baseRect.top + rectOffset.top;
+ rect = {left: basex, top: basey + baseRect.height};
+ rect.right = rect.left + elementDim.width;
+ rect.bottom = rect.top + elementDim.height;
+
+ // jointPoint: top-left, direction: top-right
+ basex = baseRect.left + rectOffset.left;
+ basey = baseRect.top + rectOffset.top;
+ rect = {left: basex, bottom: basey};
+ rect.right = rect.left + elementDim.width;
+ rect.top = rect.bottom - elementDim.height;
+ }*/
+
+ return {left:ox, top:oy};
+ }
+
+ function position (rect, element, options) {
+ var width = element.width();
+ var height = element.height();
+
+ var left = cropPx(element.css('left'));
+ if (isNaN(left)) {
+ left = 0;
+ element.css('left', '0px');
+ }
+
+ var top = cropPx(element.css('top'));
+ if (isNaN(top)) {
+ top = 0;
+ element.css('top', '0px');
+ }
+
+ var elementOffset = element.offset();
+
+ var jqw = $(window);
+ var winRect = {left:jqw.scrollLeft(), top:jqw.scrollTop()};
+ winRect.right = winRect.left + jqw.width();
+ winRect.bottom = winRect.top + jqw.height();
+
+ var pos = calculatePosition(rect, options.offset, winRect, {width:width, height:height}, options);
+
+ pos.left -= elementOffset.left;
+ pos.top -= elementOffset.top;
+
+ element.css('left', (pos.left + 'px')).css('top', (pos.top + 'px'));
+ };
+
+})(jQuery);
+
15 years, 1 month
JBoss Rich Faces SVN: r16401 - branches/community/3.3.X/samples/richfaces-demo/functional-test.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-02-03 04:18:07 -0500 (Wed, 03 Feb 2010)
New Revision: 16401
Modified:
branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml
Log:
* tie richfaces-demo ftest on richfaces-selenium release version 1.0.0.GA (instead of 1.0-SNAPSHOT)
Modified: branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml 2010-02-02 19:10:57 UTC (rev 16400)
+++ branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml 2010-02-03 09:18:07 UTC (rev 16401)
@@ -574,7 +574,7 @@
<dependency>
<groupId>org.jboss.test</groupId>
<artifactId>richfaces-selenium</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0.0.GA</version>
<scope>test</scope>
</dependency>
<dependency>
15 years, 1 month
JBoss Rich Faces SVN: r16400 - branches/community/3.3.X.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2010-02-02 14:10:57 -0500 (Tue, 02 Feb 2010)
New Revision: 16400
Modified:
branches/community/3.3.X/pom.xml
Log:
https://jira.jboss.org/jira/browse/RFPL-324
Modified: branches/community/3.3.X/pom.xml
===================================================================
--- branches/community/3.3.X/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
+++ branches/community/3.3.X/pom.xml 2010-02-02 19:10:57 UTC (rev 16400)
@@ -3,7 +3,7 @@
<groupId>org.richfaces</groupId>
<artifactId>root</artifactId>
<packaging>pom</packaging>
- <name>Jboss RichFaces project</name>
+ <name>RichFaces project</name>
<version>3.3.3-SNAPSHOT</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
@@ -78,7 +78,7 @@
<name>org.ajax4jsf.test.checkXHTML.file</name>
<value>C:/m2.txt</value>
</property>-->
- <property>
+ <property>
<name>org.ajax4jsf.test.checkXHTML</name>
<value>true</value>
</property>
@@ -163,11 +163,18 @@
<system>JIRA</system>
<url>http://jira.jboss.org/jira/browse/RF</url>
</issueManagement>
- <ciManagement>
- <system>cruisecontrol</system>
- </ciManagement>
<developers>
<developer>
+ <id>jbalunas</id>
+ <name>Jay Balunas</name>
+ <email>jbalunas(a)redhat.com</email>
+ <organization>RedHat Inc.</organization>
+ <roles>
+ <role>lead</role>
+ </roles>
+ <timezone>+5</timezone>
+ </developer>
+ <developer>
<id>alexsmirnov</id>
<name>Alexander Smirnov</name>
<email>alexsmirnov(a)exadel.com</email>
@@ -180,41 +187,83 @@
<timezone>-3</timezone>
</developer>
<developer>
- <id>ishabalov</id>
- <name>Igor Shabalov</name>
- <email>ishabalov(a)exadel.com</email>
+ <id>nbelayevsky</id>
+ <name>Nick Belyaevsky</name>
+ <email>nbelayevsky(a)exadel.com</email>
<organization>Exadel Inc.</organization>
<organizationUrl>http://www.exadel.com</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
- <timezone>+8</timezone>
+ <timezone>-2</timezone>
</developer>
<developer>
- <id>sergeysmirnov</id>
- <name>Sergey Smirnov</name>
- <email>sergeysmirnov(a)exadel.com</email>
+ <id>kmishin</id>
+ <name>Konstantin Mishin</name>
+ <email>kmishin(a)exadel.com</email>
<organization>Exadel Inc.</organization>
<organizationUrl>http://www.exadel.com</organizationUrl>
<roles>
- <role>architect</role>
<role>developer</role>
</roles>
- <timezone>+8</timezone>
+ <timezone>-2</timezone>
</developer>
<developer>
- <id>nbelayevsky</id>
- <name>Nik Belyaevsky</name>
- <email>nbelayevsky(a)exadel.com</email>
+ <id>abelevich</id>
+ <name>Anton Belevich</name>
+ <email>abelevich(a)exadel.com</email>
<organization>Exadel Inc.</organization>
<organizationUrl>http://www.exadel.com</organizationUrl>
<roles>
- <role>architect</role>
<role>developer</role>
</roles>
<timezone>-2</timezone>
</developer>
+ <developer>
+ <id>pyaschenko</id>
+ <name>Pavel Yaschenko</name>
+ <email>pyaschenko(a)exadel.com</email>
+ <organization>Exadel Inc.</organization>
+ <organizationUrl>http://www.exadel.com</organizationUrl>
+ <roles>
+ <role>developer</role>
+ </roles>
+ <timezone>-2</timezone>
+ </developer>
+ <developer>
+ <id>amarkhel</id>
+ <name>Andrey Markhel</name>
+ <email>amarkhel(a)exadel.com</email>
+ <organization>Exadel Inc.</organization>
+ <organizationUrl>http://www.exadel.com</organizationUrl>
+ <roles>
+ <role>developer</role>
+ </roles>
+ <timezone>-2</timezone>
+ </developer>
+ <developer>
+ <id>akolonitsky</id>
+ <name>Alex Kolonitsky</name>
+ <email>akolonitsky(a)exadel.com</email>
+ <organization>Exadel Inc.</organization>
+ <organizationUrl>http://www.exadel.com</organizationUrl>
+ <roles>
+ <role>developer</role>
+ </roles>
+ <timezone>-2</timezone>
+ </developer>
+ <developer>
+ <id>ishaikovsky</id>
+ <name>Ilya Shaikovsky</name>
+ <email>ishaikovsky(a)exadel.com</email>
+ <organization>Exadel Inc.</organization>
+ <organizationUrl>http://www.exadel.com</organizationUrl>
+ <roles>
+ <role>developer</role>
+ </roles>
+ <timezone>-2</timezone>
+ </developer>
</developers>
<licenses>
<license>
@@ -252,32 +301,6 @@
</modules>
</profile>
<profile>
- <id>eclipse-custom-templates</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-eclipse-plugin</artifactId>
- <groupId>org.apache.maven.plugins</groupId>
- <configuration>
- <additionalConfig>
- <file>
- <name>
- .settings/org.eclipse.jdt.ui.prefs
- </name>
- <content>
- <![CDATA[
- eclipse.preferences.version=1
- org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\r\n * $${tags}\r\n * <br /><br />\r\n * \r\n * Created $${date}\r\n * @author $${user}\r\n * @since ${project.artifact.selectedVersion.majorVersion}.${project.artifact.selectedVersion.minorVersion}\r\n */\r\n</template><template autoinsert\="false" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\r\n * License Agreement.\r\n *\r\n * JBoss RichFaces - Ajax4jsf Component Library\r\n *\r\n * Copyright (C) 2007 Exadel, Inc.\r\n *\r\n * This library is free software; you can redistribute it and/o!
r\r\n * modify it under the terms of the GNU Lesser General Public\r\n * License version 2.1 as published by the Free Software Foundation.\r\n *\r\n * This library is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Lesser General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public\r\n * License along with this library; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\n</template></templates>
- ]]>
- </content>
- </file>
- </additionalConfig>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
<id>clover</id>
<build>
<plugins>
@@ -331,109 +354,5 @@
</plugins>
</reporting>
</profile>
- <profile>
- <id>beet</id>
- <activation>
- <property>
- <name>mangelWurzel</name>
- </property>
- </activation>
- <pluginRepositories>
- <pluginRepository>
- <id>Codehaus Snapshots</id>
- <url>http://snapshots.repository.codehaus.org/</url>
- </pluginRepository>
- </pluginRepositories>
- <build>
-
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>dashboard-maven-plugin</artifactId>
- <version>1.0-SNAPSHOT</version>
- <configuration>
- <dialect>org.hibernate.dialect.PostgreSQLDialect</dialect>
- <driverClass>org.postgresql.Driver</driverClass>
- <username>${dashboard.username}</username>
- <password>${dashboard.password}</password>
- </configuration>
- <dependencies>
- <dependency>
- <!-- to override commons-logging in Hibernate library dependancy -->
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>1.1</version>
- </dependency>
- </dependencies>
- </plugin>
- </plugins>
-
- </build>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <version>2.1</version>
- <configuration>
- <configLocation>src/main/reports/exadel-checks.xml</configLocation>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-pmd-plugin</artifactId>
- <version>2.3</version>
- <configuration>
- <rulesets>
- <ruleset>src/main/reports/PMDExadelRuleSet.xml</ruleset>
- </rulesets>
- <targetJdk>1.5</targetJdk>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jxr-plugin</artifactId>
- <version>2.1</version>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>dashboard-maven-plugin</artifactId>
- <version>1.0-SNAPSHOT</version>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <version>1.2</version>
- <configuration>
- <xmlOutput>true</xmlOutput>
- <onlyAnalyze>org.richfaces.-, org.ajax4jsf.-</onlyAnalyze>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>taglist-maven-plugin</artifactId>
- <configuration>
- <tags>
- <tag>@fixme</tag>
- <tag>FIXME</tag>
- <tag>@todo</tag>
- <tag>TODO</tag>
- </tags>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jdepend-maven-plugin</artifactId>
- <version>2.0-beta-2</version>
- </plugin>
- </plugins>
- </reporting>
- <distributionManagement>
- <site>
- <url>${mangelWurzel}</url>
- </site>
- </distributionManagement>
- </profile>
</profiles>
</project>
15 years, 1 month
JBoss Rich Faces SVN: r16399 - in tags: 3.3.3.CR1 and 222 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2010-02-02 12:38:02 -0500 (Tue, 02 Feb 2010)
New Revision: 16399
Added:
tags/3.3.3.CR1/
Modified:
tags/3.3.3.CR1/cdk/generator/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-jsf-component/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-seam-app/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-theme/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.CR1/cdk/maven-cdk-plugin/pom.xml
tags/3.3.3.CR1/cdk/maven-javascript-plugin/pom.xml
tags/3.3.3.CR1/cdk/maven-resource-dependency-plugin/pom.xml
tags/3.3.3.CR1/cdk/pom.xml
tags/3.3.3.CR1/cdk/richfaces-facelets/pom.xml
tags/3.3.3.CR1/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.CR1/docs/cdkguide/en/pom.xml
tags/3.3.3.CR1/docs/cdkguide/pom.xml
tags/3.3.3.CR1/docs/common-resources/en/pom.xml
tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.CR1/docs/common-resources/pom.xml
tags/3.3.3.CR1/docs/faq/en/pom.xml
tags/3.3.3.CR1/docs/faq/pom.xml
tags/3.3.3.CR1/docs/highlight/pom.xml
tags/3.3.3.CR1/docs/migrationguide/en/pom.xml
tags/3.3.3.CR1/docs/migrationguide/pom.xml
tags/3.3.3.CR1/docs/photo_album_app_guide/en/pom.xml
tags/3.3.3.CR1/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml
tags/3.3.3.CR1/docs/photo_album_app_guide/pom.xml
tags/3.3.3.CR1/docs/pom.xml
tags/3.3.3.CR1/docs/userguide/en/pom.xml
tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
tags/3.3.3.CR1/docs/userguide/pom.xml
tags/3.3.3.CR1/examples/photoalbum/assembly/pom.xml
tags/3.3.3.CR1/examples/photoalbum/pom.xml
tags/3.3.3.CR1/examples/photoalbum/source/ear/pom.xml
tags/3.3.3.CR1/examples/photoalbum/source/ejb/pom.xml
tags/3.3.3.CR1/examples/photoalbum/source/pom.xml
tags/3.3.3.CR1/examples/photoalbum/source/web/pom.xml
tags/3.3.3.CR1/examples/photoalbum/tests/pom.xml
tags/3.3.3.CR1/extensions/gwt/pom.xml
tags/3.3.3.CR1/extensions/pom.xml
tags/3.3.3.CR1/extensions/seam/pom.xml
tags/3.3.3.CR1/extensions/trinidad/pom.xml
tags/3.3.3.CR1/framework/api/pom.xml
tags/3.3.3.CR1/framework/impl/pom.xml
tags/3.3.3.CR1/framework/impl/src/main/java/org/richfaces/VersionBean.java
tags/3.3.3.CR1/framework/jsf-test/pom.xml
tags/3.3.3.CR1/framework/pom.xml
tags/3.3.3.CR1/framework/test/pom.xml
tags/3.3.3.CR1/pom.xml
tags/3.3.3.CR1/samples/beanValidatorSample/pom.xml
tags/3.3.3.CR1/samples/calendar-sample/pom.xml
tags/3.3.3.CR1/samples/colorPickerDemo/pom.xml
tags/3.3.3.CR1/samples/columnsDemo/pom.xml
tags/3.3.3.CR1/samples/combobox-sample/pom.xml
tags/3.3.3.CR1/samples/contextMenuDemo/pom.xml
tags/3.3.3.CR1/samples/createProject.sh
tags/3.3.3.CR1/samples/darkX/pom.xml
tags/3.3.3.CR1/samples/dataFilterSliderDemo/pom.xml
tags/3.3.3.CR1/samples/dataTableDemo/pom.xml
tags/3.3.3.CR1/samples/datascroller-sample/pom.xml
tags/3.3.3.CR1/samples/dragDropDemo/pom.xml
tags/3.3.3.CR1/samples/dropdownmenu-sample/pom.xml
tags/3.3.3.CR1/samples/editor-sample/pom.xml
tags/3.3.3.CR1/samples/editorSeam-sample/pom.xml
tags/3.3.3.CR1/samples/effect-sample/pom.xml
tags/3.3.3.CR1/samples/extendedDataTable-sample/pom.xml
tags/3.3.3.CR1/samples/fileUploadDemo/pom.xml
tags/3.3.3.CR1/samples/functions-demo/pom.xml
tags/3.3.3.CR1/samples/glassX/pom.xml
tags/3.3.3.CR1/samples/gmap-sample/pom.xml
tags/3.3.3.CR1/samples/hotKey-sample/pom.xml
tags/3.3.3.CR1/samples/inplaceInput-sample/pom.xml
tags/3.3.3.CR1/samples/inplaceSelect-sample/pom.xml
tags/3.3.3.CR1/samples/inputNumberSliderDemo/pom.xml
tags/3.3.3.CR1/samples/inputNumberSpinnerDemo/pom.xml
tags/3.3.3.CR1/samples/jQuery-sample/pom.xml
tags/3.3.3.CR1/samples/jira-data/pom.xml
tags/3.3.3.CR1/samples/laguna/pom.xml
tags/3.3.3.CR1/samples/layout-sample/pom.xml
tags/3.3.3.CR1/samples/listShuttleDemo/pom.xml
tags/3.3.3.CR1/samples/local-value-demo/pom.xml
tags/3.3.3.CR1/samples/mediaOutput/pom.xml
tags/3.3.3.CR1/samples/modalpanel-sample/pom.xml
tags/3.3.3.CR1/samples/orderingListDemo/pom.xml
tags/3.3.3.CR1/samples/panel-sample/pom.xml
tags/3.3.3.CR1/samples/panelbar-sample/pom.xml
tags/3.3.3.CR1/samples/panelmenu-sample/pom.xml
tags/3.3.3.CR1/samples/pickList-sample/pom.xml
tags/3.3.3.CR1/samples/pom.xml
tags/3.3.3.CR1/samples/progressBarDemo/pom.xml
tags/3.3.3.CR1/samples/queue-sample/pom.xml
tags/3.3.3.CR1/samples/rich-message-demo/pom.xml
tags/3.3.3.CR1/samples/richfaces-art-datatable/pom.xml
tags/3.3.3.CR1/samples/richfaces-demo/functional-test/pom.xml
tags/3.3.3.CR1/samples/richfaces-demo/pom.xml
tags/3.3.3.CR1/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.3.3.CR1/samples/richfaces-ear-demo/pom.xml
tags/3.3.3.CR1/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.3.3.CR1/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.3.3.CR1/samples/scrollableDataTableDemo/pom.xml
tags/3.3.3.CR1/samples/seamEAR/ear/pom.xml
tags/3.3.3.CR1/samples/seamEAR/ejbs/pom.xml
tags/3.3.3.CR1/samples/seamEAR/pom.xml
tags/3.3.3.CR1/samples/seamEAR/primary-source/pom.xml
tags/3.3.3.CR1/samples/seamEAR/projects/logging/pom.xml
tags/3.3.3.CR1/samples/seamEAR/projects/pom.xml
tags/3.3.3.CR1/samples/seamEAR/wars/pom.xml
tags/3.3.3.CR1/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.3.3.CR1/samples/seamIntegration/pom.xml
tags/3.3.3.CR1/samples/separator-sample/pom.xml
tags/3.3.3.CR1/samples/simpleTogglePanel-sample/pom.xml
tags/3.3.3.CR1/samples/skins/pom.xml
tags/3.3.3.CR1/samples/sortingFilteringDemo/pom.xml
tags/3.3.3.CR1/samples/state-sample/pom.xml
tags/3.3.3.CR1/samples/stdcomponents-sample/pom.xml
tags/3.3.3.CR1/samples/suggestionbox-sample/pom.xml
tags/3.3.3.CR1/samples/tabPanelDemo/pom.xml
tags/3.3.3.CR1/samples/themes/pom.xml
tags/3.3.3.CR1/samples/togglePanel-sample/pom.xml
tags/3.3.3.CR1/samples/tomahawkCompability/pom.xml
tags/3.3.3.CR1/samples/toolBarDemo/pom.xml
tags/3.3.3.CR1/samples/tooltip-sample/pom.xml
tags/3.3.3.CR1/samples/tree-demo/pom.xml
tags/3.3.3.CR1/samples/treeModelDemo/pom.xml
tags/3.3.3.CR1/samples/violetRays/pom.xml
tags/3.3.3.CR1/samples/virtualEarth-sample/pom.xml
tags/3.3.3.CR1/sandbox/api/pom.xml
tags/3.3.3.CR1/sandbox/cdk/pom.xml
tags/3.3.3.CR1/sandbox/impl/pom.xml
tags/3.3.3.CR1/sandbox/pom.xml
tags/3.3.3.CR1/sandbox/samples/dialog-window-sample/pom.xml
tags/3.3.3.CR1/sandbox/samples/editorOld-sample/pom.xml
tags/3.3.3.CR1/sandbox/samples/fileUploadPOC/pom.xml
tags/3.3.3.CR1/sandbox/samples/maven-rd-plugin-sample/pom.xml
tags/3.3.3.CR1/sandbox/samples/panel2-sample/pom.xml
tags/3.3.3.CR1/sandbox/samples/pom.xml
tags/3.3.3.CR1/sandbox/samples/rex-demo/pom.xml
tags/3.3.3.CR1/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.3.3.CR1/sandbox/ui/create.bat
tags/3.3.3.CR1/sandbox/ui/create.sh
tags/3.3.3.CR1/sandbox/ui/dialog-window/pom.xml
tags/3.3.3.CR1/sandbox/ui/editorOld/pom.xml
tags/3.3.3.CR1/sandbox/ui/panel2/pom.xml
tags/3.3.3.CR1/sandbox/ui/pom.xml
tags/3.3.3.CR1/sandbox/ui/rex-button/pom.xml
tags/3.3.3.CR1/sandbox/ui/rex-messageBox/pom.xml
tags/3.3.3.CR1/sandbox/ui/rex-resizable/pom.xml
tags/3.3.3.CR1/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.3.3.CR1/sandbox/ui/sortableHeader/pom.xml
tags/3.3.3.CR1/sandbox/ui/treeTable/pom.xml
tags/3.3.3.CR1/test-applications/ajaxTest/pom.xml
tags/3.3.3.CR1/test-applications/automator/pom.xml
tags/3.3.3.CR1/test-applications/facelets/pom.xml
tags/3.3.3.CR1/test-applications/jsp/pom.xml
tags/3.3.3.CR1/test-applications/pom.xml
tags/3.3.3.CR1/test-applications/regression-test/pom.xml
tags/3.3.3.CR1/test-applications/regressionArea/pom.xml
tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-ear/pom.xml
tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-ejb/pom.xml
tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-tests/pom.xml
tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-web/pom.xml
tags/3.3.3.CR1/test-applications/richfaces-docs/pom.xml
tags/3.3.3.CR1/test-applications/seamApp/pom.xml
tags/3.3.3.CR1/test-applications/seleniumTest/pom.xml
tags/3.3.3.CR1/test-applications/seleniumTest/richfaces/pom.xml
tags/3.3.3.CR1/test-applications/seleniumTest/samples/pom.xml
tags/3.3.3.CR1/test-applications/test-jsp/pom.xml
tags/3.3.3.CR1/ui/assembly/pom.xml
tags/3.3.3.CR1/ui/beanValidator/pom.xml
tags/3.3.3.CR1/ui/calendar/pom.xml
tags/3.3.3.CR1/ui/colorPicker/pom.xml
tags/3.3.3.CR1/ui/columns/pom.xml
tags/3.3.3.CR1/ui/combobox/pom.xml
tags/3.3.3.CR1/ui/componentControl/pom.xml
tags/3.3.3.CR1/ui/contextMenu/pom.xml
tags/3.3.3.CR1/ui/core/pom.xml
tags/3.3.3.CR1/ui/create.bat
tags/3.3.3.CR1/ui/dataFilterSlider/pom.xml
tags/3.3.3.CR1/ui/dataTable/pom.xml
tags/3.3.3.CR1/ui/datascroller/pom.xml
tags/3.3.3.CR1/ui/drag-drop/pom.xml
tags/3.3.3.CR1/ui/dropdown-menu/pom.xml
tags/3.3.3.CR1/ui/editor/pom.xml
tags/3.3.3.CR1/ui/effect/pom.xml
tags/3.3.3.CR1/ui/extendedDataTable/pom.xml
tags/3.3.3.CR1/ui/fileUpload/pom.xml
tags/3.3.3.CR1/ui/functions/pom.xml
tags/3.3.3.CR1/ui/gmap/pom.xml
tags/3.3.3.CR1/ui/hotKey/pom.xml
tags/3.3.3.CR1/ui/inplaceInput/pom.xml
tags/3.3.3.CR1/ui/inplaceSelect/pom.xml
tags/3.3.3.CR1/ui/inputnumber-slider/pom.xml
tags/3.3.3.CR1/ui/inputnumber-spinner/pom.xml
tags/3.3.3.CR1/ui/insert/pom.xml
tags/3.3.3.CR1/ui/jQuery/pom.xml
tags/3.3.3.CR1/ui/layout/pom.xml
tags/3.3.3.CR1/ui/listShuttle/pom.xml
tags/3.3.3.CR1/ui/menu-components/pom.xml
tags/3.3.3.CR1/ui/message/pom.xml
tags/3.3.3.CR1/ui/modal-panel/pom.xml
tags/3.3.3.CR1/ui/orderingList/pom.xml
tags/3.3.3.CR1/ui/paint2D/pom.xml
tags/3.3.3.CR1/ui/panel/pom.xml
tags/3.3.3.CR1/ui/panelbar/pom.xml
tags/3.3.3.CR1/ui/panelmenu/pom.xml
tags/3.3.3.CR1/ui/pickList/pom.xml
tags/3.3.3.CR1/ui/pom.xml
tags/3.3.3.CR1/ui/progressBAR/pom.xml
tags/3.3.3.CR1/ui/scrollableDataTable/pom.xml
tags/3.3.3.CR1/ui/separator/pom.xml
tags/3.3.3.CR1/ui/simpleTogglePanel/pom.xml
tags/3.3.3.CR1/ui/spacer/pom.xml
tags/3.3.3.CR1/ui/state/pom.xml
tags/3.3.3.CR1/ui/suggestionbox/pom.xml
tags/3.3.3.CR1/ui/tabPanel/pom.xml
tags/3.3.3.CR1/ui/togglePanel/pom.xml
tags/3.3.3.CR1/ui/toolBar/pom.xml
tags/3.3.3.CR1/ui/tooltip/pom.xml
tags/3.3.3.CR1/ui/tree/pom.xml
tags/3.3.3.CR1/ui/treeModel/pom.xml
tags/3.3.3.CR1/ui/treeTable/pom.xml
tags/3.3.3.CR1/ui/virtualEarth/pom.xml
Log:
create tag for 3.3.3.CR1
Copied: tags/3.3.3.CR1 (from rev 16398, branches/community/3.3.X)
Modified: tags/3.3.3.CR1/cdk/generator/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/generator/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/generator/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: tags/3.3.3.CR1/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsf-component/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/maven-archetype-jsf-component/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.3.CR1/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/maven-archetype-jsfwebapp/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -30,12 +30,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.3.CR1/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/maven-archetype-plug-n-skin/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.3.3.CR1/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.3.CR1/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-seam-app/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/maven-archetype-seam-app/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.3-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.3.CR1</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.3.CR1/cdk/maven-archetype-theme/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-theme/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/maven-archetype-theme/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-theme</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>maven-archetype</packaging>
<name>maven-archetype-theme</name>
<build>
Modified: tags/3.3.3.CR1/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -41,12 +41,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>provided</scope>
</dependency>
Modified: tags/3.3.3.CR1/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-cdk-plugin/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/maven-cdk-plugin/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.3.CR1/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-javascript-plugin/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/maven-javascript-plugin/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.3.3.CR1/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/maven-resource-dependency-plugin/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +12,7 @@
<artifactId>maven-resource-dependency-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.3.3.CR1/cdk/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.3.CR1/cdk/richfaces-facelets/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/richfaces-facelets/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/richfaces-facelets/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,13 +4,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>richfaces-facelets</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>maven-archetype-rf-facelets</name>
<packaging>maven-archetype</packaging>
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<build>
Modified: tags/3.3.3.CR1/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -28,7 +28,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.3.CR1/docs/cdkguide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/cdkguide/en/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/cdkguide/en/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.3.3.CR1/docs/cdkguide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/cdkguide/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/cdkguide/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.3.3.CR1/docs/common-resources/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/common-resources/en/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>Documentation common resources (${translation})</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,7 +4,7 @@
<artifactId>richfacesguide-archetype</artifactId>
<packaging>maven-archetype</packaging>
<name>richfacesguide-archetype</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<extensions>
<extension>
Modified: tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.richfacesguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>Richfaces Guide Template</name>
Modified: tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>richfacesguide</name>
<description>Richfaces Guide Template</description>
<pluginRepositories>
Modified: tags/3.3.3.CR1/docs/common-resources/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/common-resources/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: tags/3.3.3.CR1/docs/faq/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/faq/en/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/faq/en/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
<build>
Modified: tags/3.3.3.CR1/docs/faq/pom.xml
===================================================================
--- branches/community/3.3.X/docs/faq/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/faq/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<!--repositories>
Modified: tags/3.3.3.CR1/docs/highlight/pom.xml
===================================================================
--- branches/community/3.3.X/docs/highlight/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/highlight/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.3.3.CR1/docs/migrationguide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/migrationguide/en/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/migrationguide/en/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
<build>
Modified: tags/3.3.3.CR1/docs/migrationguide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/migrationguide/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/migrationguide/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.3.CR1/docs/photo_album_app_guide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/en/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/photo_album_app_guide/en/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.photo_album_app_guide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>RichFaces Photo Album application Guide (${translation})</name>
Modified: tags/3.3.3.CR1/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -74,7 +74,7 @@
<para><code>mvn archetype:generate </code></para>
<para><code>-DarchetypeGroupId=org.richfaces.cdk </code></para>
<para><code>-DarchetypeArtifactId=maven-archetype-seam-app </code></para>
- <para><code>-DarchetypeVersion=3.3.3-SNAPSHOT </code></para>
+ <para><code>-DarchetypeVersion=3.3.3.CR1 </code></para>
<para><code>-DgroupId=[Your_project_group_id] </code></para>
<para><code>-DartifactId=[Your_project_name] </code></para>
<para>Some project preferences such as <property>RichFaces</property> components version or Jboss server version and others could be customized in the root <code>.pom</code> file </para>
Modified: tags/3.3.3.CR1/docs/photo_album_app_guide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/photo_album_app_guide/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,13 +4,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>RichFaces Photo Album Application Guide</name>
<description>RichFaces Photo Album Application Guide</description>
<pluginRepositories>
Modified: tags/3.3.3.CR1/docs/pom.xml
===================================================================
--- branches/community/3.3.X/docs/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.3.3.CR1/docs/userguide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/userguide/en/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -335,7 +335,7 @@
<para>Now you have everything to create the project using the "maven-archetype-jsfwebapp" archetype. Create a folder that will house your project and run the this command in it:</para>
<programlisting role="XML" ><![CDATA[...
-mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.3-SNAPSHOT -DgroupId=org.docs.richfaces -DartifactId=jsf-app
+mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.3.CR1 -DgroupId=org.docs.richfaces -DartifactId=jsf-app
...]]></programlisting>
@@ -461,17 +461,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
...]]></programlisting>
Modified: tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3839,7 +3839,7 @@
<listitem>
<para>
<code>archetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.3.3-SNAPSHOT"</code>
+ <code>"3.3.3.CR1"</code>
</para>
</listitem>
<listitem>
@@ -4080,7 +4080,7 @@
follow the steps described in the previous section.</para>
<para>This command will be used to create a template of the new skin project. </para>
<programlisting role="XML"><![CDATA[
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-plug-n-skin -DarchetypeVersion=3.3.3-SNAPSHOT -DartifactId=P-n-S -DgroupId=GROUPID -Dversion=1.0.-SNAPSHOT
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-plug-n-skin -DarchetypeVersion=3.3.3.CR1 -DartifactId=P-n-S -DgroupId=GROUPID -Dversion=1.0.-SNAPSHOT
]]></programlisting>
<para> Now you can browse the "P-n-S" folder to view what files and
folders were created there. </para>
Modified: tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -48,7 +48,7 @@
RichFaces components are available on<ulink
url="http://livedemo.exadel.com/richfaces-demo/">RichFaces Live Demo</ulink>.</para>
<para>War file of a nightly build can be found on the <ulink
- url="http://snapshots.jboss.org/maven2/org/richfaces/ui/richfaces-ui/3.3.3-SNA..."
+ url="http://snapshots.jboss.org/maven2/org/richfaces/ui/richfaces-ui/3.3.3.CR1/"
>Snapshots repository</ulink>.</para>
<para>Source Code (SVN) can be found in<ulink
url="http://anonsvn.jboss.org/repos/richfaces/trunk/samples/richfaces-demo/"
Modified: tags/3.3.3.CR1/docs/userguide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/docs/userguide/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.3.3.CR1/examples/photoalbum/assembly/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/assembly/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/examples/photoalbum/assembly/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.CR1/examples/photoalbum/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/examples/photoalbum/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,7 +4,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Photoalbum Demo Application Root</name>
<modules>
Modified: tags/3.3.3.CR1/examples/photoalbum/source/ear/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/ear/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/examples/photoalbum/source/ear/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.CR1/examples/photoalbum/source/ejb/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/ejb/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/examples/photoalbum/source/ejb/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.CR1/examples/photoalbum/source/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/examples/photoalbum/source/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -8,7 +8,7 @@
<artifactId>photoalbum</artifactId>
<packaging>pom</packaging>
<name>${appName}</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<distributionManagement>
<downloadUrl>
Modified: tags/3.3.3.CR1/examples/photoalbum/source/web/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/web/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/examples/photoalbum/source/web/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.CR1/examples/photoalbum/tests/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/tests/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/examples/photoalbum/tests/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.CR1/extensions/gwt/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/gwt/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/extensions/gwt/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.3.CR1/extensions/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/extensions/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.3.3.CR1/extensions/seam/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/seam/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/extensions/seam/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.3.3.CR1/extensions/trinidad/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/trinidad/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/extensions/trinidad/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.3.3.CR1/framework/api/pom.xml
===================================================================
--- branches/community/3.3.X/framework/api/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/framework/api/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<dependencies>
<dependency>
Modified: tags/3.3.3.CR1/framework/impl/pom.xml
===================================================================
--- branches/community/3.3.X/framework/impl/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/framework/impl/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,13 +3,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>${classifiedArtifactId}</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<resources>
<resource>
@@ -249,7 +249,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-02-02 17:38:02 UTC (rev 16399)
@@ -38,7 +38,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "3-SNAPSHOT" ;
+ public static final String REVISION = "3.CR1" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: tags/3.3.3.CR1/framework/jsf-test/pom.xml
===================================================================
--- branches/community/3.3.X/framework/jsf-test/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/framework/jsf-test/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
<name>jsf-test</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<dependencies>
<dependency>
Modified: tags/3.3.3.CR1/framework/pom.xml
===================================================================
--- branches/community/3.3.X/framework/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/framework/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
Modified: tags/3.3.3.CR1/framework/test/pom.xml
===================================================================
--- branches/community/3.3.X/framework/test/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/framework/test/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,12 +3,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
Modified: tags/3.3.3.CR1/pom.xml
===================================================================
--- branches/community/3.3.X/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
Modified: tags/3.3.3.CR1/samples/beanValidatorSample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/beanValidatorSample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/beanValidatorSample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -34,7 +34,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.3-SNAPSHOT</version> </dependency>
+ <version>3.3.3.CR1</version> </dependency>
-->
<dependency>
<groupId>org.slf4j</groupId>
@@ -50,12 +50,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.3.CR1/samples/calendar-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/calendar-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/calendar-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/colorPickerDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/colorPickerDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/colorPickerDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -40,17 +40,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.3.CR1/samples/columnsDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/columnsDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/columnsDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/combobox-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/combobox-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/combobox-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/contextMenuDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/contextMenuDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/contextMenuDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/createProject.sh
===================================================================
--- branches/community/3.3.X/samples/createProject.sh 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/createProject.sh 2010-02-02 17:38:02 UTC (rev 16399)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp \
- -DarchetypeVersion=3.3.3-SNAPSHOT -Dversion=3.3.3-SNAPSHOT -DgroupId=org.richfaces.samples -DartifactId=$1
+ -DarchetypeVersion=3.3.3.CR1 -Dversion=3.3.3.CR1 -DgroupId=org.richfaces.samples -DartifactId=$1
Modified: tags/3.3.3.CR1/samples/darkX/pom.xml
===================================================================
--- branches/community/3.3.X/samples/darkX/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/darkX/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dataFilterSliderDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/dataFilterSliderDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/dataTableDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dataTableDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/dataTableDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/datascroller-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/datascroller-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/datascroller-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/dragDropDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dragDropDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/dragDropDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dropdownmenu-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/dropdownmenu-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/editor-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/editor-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/editor-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/samples/editorSeam-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/editorSeam-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/editorSeam-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/samples/effect-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/effect-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/effect-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/extendedDataTable-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/extendedDataTable-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/extendedDataTable-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.CR1/samples/fileUploadDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/fileUploadDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/fileUploadDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/functions-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/functions-demo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/functions-demo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/glassX/pom.xml
===================================================================
--- branches/community/3.3.X/samples/glassX/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/glassX/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
<name>glassX</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/samples/gmap-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/gmap-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/gmap-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/hotKey-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/hotKey-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/hotKey-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.CR1/samples/inplaceInput-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inplaceInput-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/inplaceInput-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/inplaceSelect-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inplaceSelect-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/inplaceSelect-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inputNumberSliderDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/inputNumberSliderDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inputNumberSpinnerDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/inputNumberSpinnerDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/jQuery-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/jQuery-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/jQuery-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/jira-data/pom.xml
===================================================================
--- branches/community/3.3.X/samples/jira-data/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/jira-data/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/laguna/pom.xml
===================================================================
--- branches/community/3.3.X/samples/laguna/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/laguna/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.3.3.CR1/samples/layout-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/layout-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/layout-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -34,17 +34,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<exclusions>
<exclusion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.3.CR1/samples/listShuttleDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/listShuttleDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/listShuttleDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/local-value-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/local-value-demo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/local-value-demo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/mediaOutput/pom.xml
===================================================================
--- branches/community/3.3.X/samples/mediaOutput/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/mediaOutput/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -5,11 +5,11 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces</groupId>
<artifactId>mediaOutput</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>war</packaging>
<name>mediaOutput Maven Webapp</name>
<build>
Modified: tags/3.3.3.CR1/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/modalpanel-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/modalpanel-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/orderingListDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/orderingListDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/orderingListDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/panel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/panel-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/panel-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/panelbar-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/panelbar-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/panelbar-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/panelmenu-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/panelmenu-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/pickList-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/pickList-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/pickList-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/pom.xml
===================================================================
--- branches/community/3.3.X/samples/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.CR1/samples/progressBarDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/progressBarDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/progressBarDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/queue-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/queue-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/queue-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: tags/3.3.3.CR1/samples/rich-message-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/rich-message-demo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/rich-message-demo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-art-datatable/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/richfaces-art-datatable/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/richfaces-demo/functional-test/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/richfaces-demo/functional-test/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.richfaces.integrationTest</groupId>
<artifactId>functional-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>selenium-test</name>
<url>http://maven.apache.org</url>
Modified: tags/3.3.3.CR1/samples/richfaces-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/richfaces-demo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -246,22 +246,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -356,12 +356,12 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
Modified: tags/3.3.3.CR1/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/richfaces-ear-demo/ejb/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.3.CR1/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/richfaces-ear-demo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.3.CR1/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/richfaces-ear-demo/webapp/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.3.CR1/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/scrollableDataTableDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/scrollableDataTableDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.3.3.CR1/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/ear/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/seamEAR/ear/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.3.CR1/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/ejbs/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/seamEAR/ejbs/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.3.CR1/samples/seamEAR/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/seamEAR/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/primary-source/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/seamEAR/primary-source/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.3.CR1/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/projects/logging/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/seamEAR/projects/logging/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
</project>
Modified: tags/3.3.3.CR1/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/projects/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/seamEAR/projects/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.3.3.CR1/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/wars/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/seamEAR/wars/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.3.3.CR1/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/seamEAR/wars/seamWebapp/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.3.CR1/samples/seamIntegration/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamIntegration/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/seamIntegration/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/separator-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/separator-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/separator-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/simpleTogglePanel-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/simpleTogglePanel-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/skins/pom.xml
===================================================================
--- branches/community/3.3.X/samples/skins/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/skins/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/sortingFilteringDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/sortingFilteringDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/sortingFilteringDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency-->
<dependency>
Modified: tags/3.3.3.CR1/samples/state-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/state-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/state-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/samples/stdcomponents-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/stdcomponents-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/stdcomponents-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/suggestionbox-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/suggestionbox-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tabPanelDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/tabPanelDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/themes/pom.xml
===================================================================
--- branches/community/3.3.X/samples/themes/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/themes/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>themes</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.CR1/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/togglePanel-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/togglePanel-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tomahawkCompability/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/tomahawkCompability/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/toolBarDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/toolBarDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/toolBarDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/tooltip-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tooltip-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/tooltip-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/tree-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tree-demo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/tree-demo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/treeModelDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/treeModelDemo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/treeModelDemo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/violetRays/pom.xml
===================================================================
--- branches/community/3.3.X/samples/violetRays/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/violetRays/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>violetRays</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.CR1/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/virtualEarth-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/samples/virtualEarth-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/sandbox/api/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/api/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/api/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.3.CR1/sandbox/cdk/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/cdk/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/cdk/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.3.CR1/sandbox/impl/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/impl/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/impl/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.3.CR1/sandbox/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.CR1/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/dialog-window-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/samples/dialog-window-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/editorOld-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/samples/editorOld-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/fileUploadPOC/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/samples/fileUploadPOC/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.CR1/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<pluginRepositories>
<pluginRepository>
@@ -33,7 +33,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/panel2-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/samples/panel2-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/sandbox/samples/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/samples/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/sandbox/samples/rex-demo/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/rex-demo/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/samples/rex-demo/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
Modified: tags/3.3.3.CR1/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.CR1/sandbox/ui/create.bat
===================================================================
--- branches/community/3.3.X/sandbox/ui/create.bat 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/ui/create.bat 2010-02-02 17:38:02 UTC (rev 16399)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3.CR1 -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/create.sh
===================================================================
--- branches/community/3.3.X/sandbox/ui/create.sh 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/ui/create.sh 2010-02-02 17:38:02 UTC (rev 16399)
@@ -1,2 +1,2 @@
#!/bin/sh
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3.CR1 -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/dialog-window/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/ui/dialog-window/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.3.CR1/sandbox/ui/editorOld/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/editorOld/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/ui/editorOld/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/panel2/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/ui/panel2/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/ui/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.3.3.CR1/sandbox/ui/rex-button/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/rex-button/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/ui/rex-button/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/rex-messageBox/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/ui/rex-messageBox/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/rex-resizable/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/ui/rex-resizable/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/ui/simpleTogglePanel2/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/sortableHeader/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/ui/sortableHeader/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/treeTable/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/treeTable/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/sandbox/ui/treeTable/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/test-applications/ajaxTest/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/ajaxTest/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/ajaxTest/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Modified: tags/3.3.3.CR1/test-applications/automator/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/automator/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/automator/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/test-applications/facelets/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/facelets/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/facelets/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/test-applications/jsp/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/jsp/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/jsp/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/test-applications/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,11 +50,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.3-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.3.CR1</rfVersion>
</properties>
<modules>
Modified: tags/3.3.3.CR1/test-applications/regression-test/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regression-test/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/regression-test/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -5,7 +5,7 @@
<artifactId>regression-test</artifactId>
<name>Regression test application</name>
<packaging>war</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<description>Application for manual testing of regressions.</description>
<url>http://www.jboss.org/richfaces</url>
<inceptionYear>2009</inceptionYear>
@@ -48,7 +48,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<exclusions>
<exclusion>
<artifactId>richfaces-impl</artifactId>
@@ -59,7 +59,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.3.CR1/test-applications/regressionArea/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/regressionArea/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Regresion Area:Seam Application</name>
<repositories>
<repository>
@@ -60,7 +60,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.3-SNAPSHOT</richversion>
+ <richversion>3.3.3.CR1</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.3.CR1/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-web/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: tags/3.3.3.CR1/test-applications/richfaces-docs/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/richfaces-docs/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/richfaces-docs/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -204,7 +204,7 @@
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
@@ -214,7 +214,7 @@
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
@@ -224,7 +224,7 @@
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
Modified: tags/3.3.3.CR1/test-applications/seamApp/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seamApp/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/seamApp/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <rfVersion>3.3.3-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.3.CR1</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.3.CR1/test-applications/seleniumTest/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seleniumTest/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/seleniumTest/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -233,7 +233,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.3.CR1/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seleniumTest/richfaces/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/seleniumTest/richfaces/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: tags/3.3.3.CR1/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seleniumTest/samples/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/seleniumTest/samples/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.3.3.CR1/test-applications/test-jsp/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/test-jsp/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/test-applications/test-jsp/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/ui/assembly/pom.xml
===================================================================
--- branches/community/3.3.X/ui/assembly/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/assembly/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
@@ -435,17 +435,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl-jsf2</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</profile>
Modified: tags/3.3.3.CR1/ui/beanValidator/pom.xml
===================================================================
--- branches/community/3.3.X/ui/beanValidator/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/beanValidator/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,19 +4,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
<name>beanValidator</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -46,7 +46,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: tags/3.3.3.CR1/ui/calendar/pom.xml
===================================================================
--- branches/community/3.3.X/ui/calendar/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/calendar/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -46,7 +46,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/colorPicker/pom.xml
===================================================================
--- branches/community/3.3.X/ui/colorPicker/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/colorPicker/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/columns/pom.xml
===================================================================
--- branches/community/3.3.X/ui/columns/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/columns/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.3.CR1/ui/combobox/pom.xml
===================================================================
--- branches/community/3.3.X/ui/combobox/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/combobox/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.3.3.CR1/ui/componentControl/pom.xml
===================================================================
--- branches/community/3.3.X/ui/componentControl/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/componentControl/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/contextMenu/pom.xml
===================================================================
--- branches/community/3.3.X/ui/contextMenu/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/contextMenu/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/core/pom.xml
===================================================================
--- branches/community/3.3.X/ui/core/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/core/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/create.bat
===================================================================
--- branches/community/3.3.X/ui/create.bat 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/create.bat 2010-02-02 17:38:02 UTC (rev 16399)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3-SNAPSHOT -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3.CR1 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/community/3.3.X/ui/dataFilterSlider/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/dataFilterSlider/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/dataTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/dataTable/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/dataTable/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.3.CR1/ui/datascroller/pom.xml
===================================================================
--- branches/community/3.3.X/ui/datascroller/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/datascroller/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/drag-drop/pom.xml
===================================================================
--- branches/community/3.3.X/ui/drag-drop/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/drag-drop/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.3.CR1/ui/dropdown-menu/pom.xml
===================================================================
--- branches/community/3.3.X/ui/dropdown-menu/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/dropdown-menu/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/editor/pom.xml
===================================================================
--- branches/community/3.3.X/ui/editor/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/editor/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.CR1/ui/effect/pom.xml
===================================================================
--- branches/community/3.3.X/ui/effect/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/effect/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/extendedDataTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/extendedDataTable/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/extendedDataTable/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -64,40 +64,40 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/fileUpload/pom.xml
===================================================================
--- branches/community/3.3.X/ui/fileUpload/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/fileUpload/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/functions/pom.xml
===================================================================
--- branches/community/3.3.X/ui/functions/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/functions/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/gmap/pom.xml
===================================================================
--- branches/community/3.3.X/ui/gmap/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/gmap/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/hotKey/pom.xml
===================================================================
--- branches/community/3.3.X/ui/hotKey/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/hotKey/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/inplaceInput/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inplaceInput/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/inplaceInput/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/inplaceSelect/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inplaceSelect/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/inplaceSelect/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.3.3.CR1/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inputnumber-slider/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/inputnumber-slider/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inputnumber-spinner/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/inputnumber-spinner/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.CR1/ui/insert/pom.xml
===================================================================
--- branches/community/3.3.X/ui/insert/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/insert/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/jQuery/pom.xml
===================================================================
--- branches/community/3.3.X/ui/jQuery/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/jQuery/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/layout/pom.xml
===================================================================
--- branches/community/3.3.X/ui/layout/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/layout/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -4,18 +4,18 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>layout</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>layout</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.CR1/ui/listShuttle/pom.xml
===================================================================
--- branches/community/3.3.X/ui/listShuttle/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/listShuttle/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.3.CR1/ui/menu-components/pom.xml
===================================================================
--- branches/community/3.3.X/ui/menu-components/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/menu-components/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/message/pom.xml
===================================================================
--- branches/community/3.3.X/ui/message/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/message/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/modal-panel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/modal-panel/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/modal-panel/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/orderingList/pom.xml
===================================================================
--- branches/community/3.3.X/ui/orderingList/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/orderingList/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/paint2D/pom.xml
===================================================================
--- branches/community/3.3.X/ui/paint2D/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/paint2D/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/panel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/panel/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/panel/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.CR1/ui/panelbar/pom.xml
===================================================================
--- branches/community/3.3.X/ui/panelbar/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/panelbar/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/panelmenu/pom.xml
===================================================================
--- branches/community/3.3.X/ui/panelmenu/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/panelmenu/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/pickList/pom.xml
===================================================================
--- branches/community/3.3.X/ui/pickList/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/pickList/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,13 +53,13 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.3.3.CR1/ui/pom.xml
===================================================================
--- branches/community/3.3.X/ui/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -187,12 +187,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
@@ -249,7 +249,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.3.3.CR1/ui/progressBAR/pom.xml
===================================================================
--- branches/community/3.3.X/ui/progressBAR/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/progressBAR/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/scrollableDataTable/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/scrollableDataTable/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,12 +70,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/separator/pom.xml
===================================================================
--- branches/community/3.3.X/ui/separator/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/separator/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.CR1/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/simpleTogglePanel/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/simpleTogglePanel/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/spacer/pom.xml
===================================================================
--- branches/community/3.3.X/ui/spacer/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/spacer/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/state/pom.xml
===================================================================
--- branches/community/3.3.X/ui/state/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/state/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/suggestionbox/pom.xml
===================================================================
--- branches/community/3.3.X/ui/suggestionbox/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/suggestionbox/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/tabPanel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/tabPanel/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/tabPanel/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/togglePanel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/togglePanel/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/togglePanel/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/toolBar/pom.xml
===================================================================
--- branches/community/3.3.X/ui/toolBar/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/toolBar/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/tooltip/pom.xml
===================================================================
--- branches/community/3.3.X/ui/tooltip/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/tooltip/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/tree/pom.xml
===================================================================
--- branches/community/3.3.X/ui/tree/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/tree/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/treeModel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/treeModel/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/treeModel/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/treeTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/treeTable/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/treeTable/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/virtualEarth/pom.xml
===================================================================
--- branches/community/3.3.X/ui/virtualEarth/pom.xml 2010-02-02 15:03:05 UTC (rev 16398)
+++ tags/3.3.3.CR1/ui/virtualEarth/pom.xml 2010-02-02 17:38:02 UTC (rev 16399)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
15 years, 1 month
JBoss Rich Faces SVN: r16398 - in branches/community/3.3.X/ui/calendar/src/main/java/org/richfaces: renderkit and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2010-02-02 10:03:05 -0500 (Tue, 02 Feb 2010)
New Revision: 16398
Modified:
branches/community/3.3.X/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java
branches/community/3.3.X/ui/calendar/src/main/java/org/richfaces/renderkit/CalendarRendererBase.java
Log:
RF-7746
Modified: branches/community/3.3.X/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java
===================================================================
--- branches/community/3.3.X/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java 2010-02-02 14:22:47 UTC (rev 16397)
+++ branches/community/3.3.X/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java 2010-02-02 15:03:05 UTC (rev 16398)
@@ -253,13 +253,6 @@
// TODO onclick add users onclick
// currentDate processing -------------------------------------------------
- @Override
- public void processDecodes(FacesContext context) {
- if (this.isDisabled()){
- return;
- }
- super.decode(context);
- }
public Calendar getCalendar() {
return Calendar.getInstance(getTimeZone(), getAsLocale(getLocale()));
Modified: branches/community/3.3.X/ui/calendar/src/main/java/org/richfaces/renderkit/CalendarRendererBase.java
===================================================================
--- branches/community/3.3.X/ui/calendar/src/main/java/org/richfaces/renderkit/CalendarRendererBase.java 2010-02-02 14:22:47 UTC (rev 16397)
+++ branches/community/3.3.X/ui/calendar/src/main/java/org/richfaces/renderkit/CalendarRendererBase.java 2010-02-02 15:03:05 UTC (rev 16398)
@@ -325,6 +325,9 @@
@Override
protected void doDecode(FacesContext context, UIComponent component) {
// TODO Auto-generated method stub
+ if (((UICalendar)component).isDisabled()){
+ return;
+ }
super.doDecode(context, component);
String clientId = component.getClientId(context);
15 years, 1 month
JBoss Rich Faces SVN: r16397 - branches/community/3.3.X/examples/photoalbum/tests.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-02-02 09:22:47 -0500 (Tue, 02 Feb 2010)
New Revision: 16397
Modified:
branches/community/3.3.X/examples/photoalbum/tests/pom.xml
Log:
- upgraded Selenium dependencies to 1.0.1 (RFPL-369)
Modified: branches/community/3.3.X/examples/photoalbum/tests/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/tests/pom.xml 2010-02-02 12:02:40 UTC (rev 16396)
+++ branches/community/3.3.X/examples/photoalbum/tests/pom.xml 2010-02-02 14:22:47 UTC (rev 16397)
@@ -16,6 +16,7 @@
<jbosshome>${project.basedir}/target/installs/jboss-${jboss.version}/jboss-${jboss.version}</jbosshome>
<jboss.installer.url>file:d:\workspace\jboss-${jboss.version}.zip</jboss.installer.url>
<jbosscontext>default</jbosscontext>
+ <selenium.version>1.0.1</selenium.version>
</properties>
<repositories>
@@ -70,19 +71,19 @@
<dependency>
<groupId>org.seleniumhq.selenium.core</groupId>
<artifactId>selenium-core</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>${selenium.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium.client-drivers</groupId>
<artifactId>selenium-java-client-driver</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>${selenium.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium.server</groupId>
<artifactId>selenium-server-coreless</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>${selenium.version}</version>
<scope>test</scope>
<!--exclusions>
<exclusion>
@@ -191,4 +192,4 @@
</plugin>
</plugins>
</build>
-</project>
\ No newline at end of file
+</project>
15 years, 1 month
JBoss Rich Faces SVN: r16396 - root/framework/trunk/impl/src/main/resources/META-INF/resources.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2010-02-02 07:02:40 -0500 (Tue, 02 Feb 2010)
New Revision: 16396
Modified:
root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-event.js
Log:
removed jq() function
Modified: root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-event.js
===================================================================
--- root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-event.js 2010-02-02 11:47:22 UTC (rev 16395)
+++ root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-event.js 2010-02-02 12:02:40 UTC (rev 16396)
@@ -1,10 +1,6 @@
(function($, richfaces) {
richfaces.Event = richfaces.Event || {};
- var jq = function (myid) {
- return '#' + myid.replace(/(:|\.)/g,'\\$1');
- };
-
$.extend(richfaces.Event, {
RICH_NAMESPACE : "RICH:",
ready : function(fn) {
@@ -29,7 +25,7 @@
var f = function (e){
e.data.fn.call(e.data.component||this, e, this);
};
- $(jq(id)).bind(type, {component: data, fn:fn}, f);
+ $(document.getElementById(id)).bind(type, {component: data, fn:fn}, f);
return f;
},
bindOne: function(selector, type, fn, data) {
@@ -45,7 +41,7 @@
var f = function (e){
e.data.fn.call(e.data.component||this, e, this);
};
- $(jq(id)).one(type, {component: data, fn:fn}, f);
+ $(document.getElementById(id)).one(type, {component: data, fn:fn}, f);
return f;
},
unbind : function(selector, type, fn) {
@@ -54,19 +50,19 @@
},
unbindById : function(id, type, fn) {
// type: namespace can be used, like onclick.rf.conponentName
- return $(jq(id)).unbind(type, fn);
+ return $(document.getElementById(id)).unbind(type, fn);
},
fire : function(selector, event, data) {
return $(selector).trigger(event, data);
},
fireById : function(id, event, data) {
- return $(jq(id)).trigger(event, data);
+ return $(document.getElementById(id)).trigger(event, data);
},
callHandler : function(selector, event, data) {
return $(selector).triggerHandler(event, data);
},
callHandlerById : function(id, event, data) {
- return $(jq(id)).triggerHandler(event, data);
+ return $(document.getElementById(id)).triggerHandler(event, data);
},
// TODO: rename argument names
createNamespace : function(componentName, id, prefix) {
15 years, 1 month
JBoss Rich Faces SVN: r16395 - root/framework/trunk/impl/src/main/resources/META-INF/resources.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2010-02-02 06:47:22 -0500 (Tue, 02 Feb 2010)
New Revision: 16395
Modified:
root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-event.js
Log:
byId functions added, some changes
Modified: root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-event.js
===================================================================
--- root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-event.js 2010-02-02 11:27:33 UTC (rev 16394)
+++ root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-event.js 2010-02-02 11:47:22 UTC (rev 16395)
@@ -1,11 +1,15 @@
-(function(basefw, richfaces) {
+(function($, richfaces) {
richfaces.Event = richfaces.Event || {};
- basefw.extend(richfaces.Event, {
- RICH_NAMESPACE : "RICH",
+ var jq = function (myid) {
+ return '#' + myid.replace(/(:|\.)/g,'\\$1');
+ };
+
+ $.extend(richfaces.Event, {
+ RICH_NAMESPACE : "RICH:",
ready : function(fn) {
// TODO: not completed yet
- return basefw(document).ready(fn);
+ return $(document).ready(fn);
/*
function callback(jQueryReference) {
this; // document
@@ -17,37 +21,63 @@
var f = function (e){
e.data.fn.call(e.data.component||this, e, this);
};
- basefw(selector).bind(type, {component: data, fn:fn}, f);
+ $(selector).bind(type, {component: data, fn:fn}, f);
return f;
},
+ bindById : function(id, type, fn, data) {
+ // type: namespace can be used, like onclick.rf.conponentName
+ var f = function (e){
+ e.data.fn.call(e.data.component||this, e, this);
+ };
+ $(jq(id)).bind(type, {component: data, fn:fn}, f);
+ return f;
+ },
bindOne: function(selector, type, fn, data) {
// type: namespace can be used, like onclick.rf.conponentName
var f = function (e){
e.data.fn.call(e.data.component||this, e, this);
};
- basefw(selector).one(type, {component: data, fn:fn}, f);
+ $(selector).one(type, {component: data, fn:fn}, f);
return f;
},
+ bindOneById: function(id, type, fn, data) {
+ // type: namespace can be used, like onclick.rf.conponentName
+ var f = function (e){
+ e.data.fn.call(e.data.component||this, e, this);
+ };
+ $(jq(id)).one(type, {component: data, fn:fn}, f);
+ return f;
+ },
unbind : function(selector, type, fn) {
// type: namespace can be used, like onclick.rf.conponentName
- return basefw(selector).unbind(type, fn);
- },
+ return $(selector).unbind(type, fn);
+ },
+ unbindById : function(id, type, fn) {
+ // type: namespace can be used, like onclick.rf.conponentName
+ return $(jq(id)).unbind(type, fn);
+ },
fire : function(selector, event, data) {
- return basefw(selector).trigger(event, data);
+ return $(selector).trigger(event, data);
},
+ fireById : function(id, event, data) {
+ return $(jq(id)).trigger(event, data);
+ },
callHandler : function(selector, event, data) {
- return basefw(selector).triggerHandler(event, data);
+ return $(selector).triggerHandler(event, data);
},
+ callHandlerById : function(id, event, data) {
+ return $(jq(id)).triggerHandler(event, data);
+ },
// TODO: rename argument names
createNamespace : function(componentName, id, prefix) {
var a = [];
a.push(prefix || richfaces.Event.RICH_NAMESPACE);
if (componentName) {
a.push(componentName);
- if (id) {
- a.push(id);
- }
}
+ if (id) {
+ a.push(id);
+ }
return a.join('.');
}
});
15 years, 1 month
JBoss Rich Faces SVN: r16394 - root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-02-02 06:27:33 -0500 (Tue, 02 Feb 2010)
New Revision: 16394
Modified:
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClassGenerator.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClassVisitor.java
Log:
https://jira.jboss.org/jira/browse/RF-7732
https://jira.jboss.org/jira/browse/RF-8309
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClassGenerator.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClassGenerator.java 2010-02-02 11:10:04 UTC (rev 16393)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClassGenerator.java 2010-02-02 11:27:33 UTC (rev 16394)
@@ -39,6 +39,7 @@
import org.richfaces.cdk.model.Property;
import org.richfaces.cdk.model.RenderKitModel;
import org.richfaces.cdk.model.RendererModel;
+import org.richfaces.cdk.model.RendererModel.Type;
import org.richfaces.cdk.templatecompiler.model.Template;
import org.richfaces.cdk.xmlconfig.JAXBBinding;
@@ -66,13 +67,23 @@
}
private ComponentModel findComponentByRenderer(RendererModel renderer) {
+ String rendererFamily = renderer.getFamily();
+ Type rendererType = renderer.getType();
+
Collection<ComponentModel> components = context.getLibrary().getComponents();
if (components != null) {
for (ComponentModel component : components) {
+ if (!rendererFamily.equals(component.getFamily())) {
+ continue;
+ }
+
+ //TODO - compare renderkit Id?
Collection<RendererModel> renderers = component.getRenderers();
if (renderers != null) {
- if (renderers.contains(renderer)) {
- return component;
+ for (RendererModel rendererModel : renderers) {
+ if (rendererType.equals(rendererModel.getType())) {
+ return component;
+ }
}
}
}
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClassVisitor.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClassVisitor.java 2010-02-02 11:10:04 UTC (rev 16393)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClassVisitor.java 2010-02-02 11:27:33 UTC (rev 16394)
@@ -313,7 +313,7 @@
return sb.toString();
}
- private JavaField createPassThroughField(Map<String, Attribute> attributesMap) {
+ private JavaField createPassThroughField(Map<String, Attribute> htmlAttributesMap) {
String fieldName = PASS_THROUGH_ATTRIBUTES_FIELD_NAME;
if (passThroughCounter >= 0) {
fieldName += ("_" + passThroughCounter);
@@ -336,14 +336,13 @@
StringBuilder fieldValue = new StringBuilder("Collections.unmodifiableMap(ComponentAttribute.createMap(");
boolean isFirstArgument = true;
- for (Map.Entry<String, Attribute> entry : attributesMap.entrySet()) {
+ for (Map.Entry<String, Attribute> entry : htmlAttributesMap.entrySet()) {
if (isFirstArgument) {
isFirstArgument = false;
} else {
fieldValue.append(", ");
}
- // TODO behaviors data
String htmlAttributeName = entry.getKey();
String componentAttributeName = entry.getValue().getComponentAttributeName();
fieldValue.append(createPassThroughAttributeCode(htmlAttributeName, componentAttributeName));
15 years, 1 month