JBoss Rich Faces SVN: r3366 - branches/3.1.x/test-applications/qa.
by richfaces-svn-commits@lists.jboss.org
Author: viktor_volkov
Date: 2007-10-15 08:13:15 -0400 (Mon, 15 Oct 2007)
New Revision: 3366
Added:
branches/3.1.x/test-applications/qa/QA test report Build RF3.1.2 CR1.xls
Log:
Added: branches/3.1.x/test-applications/qa/QA test report Build RF3.1.2 CR1.xls
===================================================================
(Binary files differ)
Property changes on: branches/3.1.x/test-applications/qa/QA test report Build RF3.1.2 CR1.xls
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
17 years, 2 months
JBoss Rich Faces SVN: r3365 - trunk/framework/impl/src/main/java/org/richfaces/component/util.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2007-10-15 07:53:08 -0400 (Mon, 15 Oct 2007)
New Revision: 3365
Modified:
trunk/framework/impl/src/main/java/org/richfaces/component/util/HtmlUtil.java
Log:
RF-1096
Modified: trunk/framework/impl/src/main/java/org/richfaces/component/util/HtmlUtil.java
===================================================================
--- trunk/framework/impl/src/main/java/org/richfaces/component/util/HtmlUtil.java 2007-10-15 11:18:11 UTC (rev 3364)
+++ trunk/framework/impl/src/main/java/org/richfaces/component/util/HtmlUtil.java 2007-10-15 11:53:08 UTC (rev 3365)
@@ -21,6 +21,11 @@
package org.richfaces.component.util;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+
+import javax.faces.component.UIComponent;
+
import org.ajax4jsf.util.HtmlDimensions;
/**
@@ -48,4 +53,24 @@
return HtmlDimensions.formatPx(
new Double(decoded.doubleValue() + doubleDelta.doubleValue()));
}
+
+ public static final Pattern idSelectorPattern = Pattern.compile("#((:|_|[a-z,A-Z])[a-z,A-Z,0-9,_,-,:]+)");
+
+ public static String expandIdSelector(String selector, UIComponent component) {
+ Matcher matcher = idSelectorPattern.matcher(selector);
+ StringBuffer sb = new StringBuffer();
+
+ while (matcher.find())
+ {
+ if (matcher.group(1).indexOf("::")==-1)
+ {
+ // make new id selector here using matcher.group(1)
+ matcher.appendReplacement(sb, "#new value");
+ }
+ }
+ matcher.appendTail(sb);
+ String result = sb.toString();
+ if (result.length()==0) result = selector;
+ return sb.toString();
+ }
}
17 years, 2 months
JBoss Rich Faces SVN: r3364 - trunk/test-applications/jsp/src/main/webapp/Calendar.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2007-10-15 07:18:11 -0400 (Mon, 15 Oct 2007)
New Revision: 3364
Modified:
trunk/test-applications/jsp/src/main/webapp/Calendar/Calendar.jsp
Log:
http://jira.jboss.com/jira/browse/RF-1115
delete scrollMode
Modified: trunk/test-applications/jsp/src/main/webapp/Calendar/Calendar.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/Calendar/Calendar.jsp 2007-10-15 09:39:24 UTC (rev 3363)
+++ trunk/test-applications/jsp/src/main/webapp/Calendar/Calendar.jsp 2007-10-15 11:18:11 UTC (rev 3364)
@@ -17,72 +17,134 @@
}
</style>
<h:form>
- <rich:calendar id="calendarID" dataModel="#{calendarDataModel}"
- locale="#{calendarBean.locale}"
- popup="#{calendarBean.popup}"
- datePattern="#{calendarBean.pattern}"
- weekDayLabels="#{calendarBean.weekDayLabels}"
- weekDayLabelsShort="#{calendarBean.weekDayLabelsShort}"
- monthLabels="#{calendarBean.monthLabels}"
- monthLabelsShort="#{calendarBean.monthLabelsShort}"
- value="#{calendarBean.selectedDate}"
- currentDate="#{calendarBean.currentDate}"
- jointPoint="#{calendarBean.jointPoint}"
- direction="#{calendarBean.direction}"
- enableManualInput="#{calendarBean.enableManualInput}"
- showInput="#{calendarBean.showInput}"
- buttonLabel="#{calendarBean.label}"
- boundaryDatesMode="#{calendarBean.boundary}"
- currentDateChangeListener="#{calendarBean.dcl}"
- valueChangeListener="#{calendarBean.ddd}" reRender="counter"
- inputClass="ic" buttonClass="bc"
- ajaxSingle="#{calendarBean.ajaxSingle}"
- buttonIcon="#{calendarBean.icon}"
- buttonIconDisabled="#{icon.iconFileManagerReject}"
- disabled="#{calendarBean.disabled}"
- bypassUpdates="#{calendarBean.bypassUpdates}"
- height="#{calendarBean.height}"
- width="#{calendarBean.width}"
- zindex="#{calendarBean.zindex}"
- toolTipMode="#{calendarBean.toolTipMode}"
- rendered="#{calendarBean.rendered}"
- focus="popupModeID"
- mode="#{calendarBean.mode}"
- required="#{calendarBean.required}"
- requiredMessage="Required Message"
- timeZone="#{calendarBean.tmZone}"
- >
+ <rich:messages showDetail="true"></rich:messages>
+
+ <h:panelGrid columns="2">
+ <h:outputText value="Client mode" />
+ <h:outputText value="Ajax mode" />
- <f:facet name="weekDay">
- {weekDayLabel}
- </f:facet>
-
- <f:facet name="optionalHeader">
- <h:outputText value="optionalHeader Facet" />
- </f:facet>
+ <rich:calendar id="calendarClientID" dataModel="#{calendarDataModel}"
+ locale="#{calendarBean.locale}" popup="#{calendarBean.popup}"
+ preloadDateRangeBegin="#{calendarBean.prDateRangeBegin}"
+ preloadDateRangeEnd="#{calendarBean.prDateRangeEnd}"
+ datePattern="#{calendarBean.pattern}"
+ weekDayLabels="#{calendarBean.weekDayLabels}"
+ weekDayLabelsShort="#{calendarBean.weekDayLabelsShort}"
+ monthLabels="#{calendarBean.monthLabels}"
+ monthLabelsShort="#{calendarBean.monthLabelsShort}"
+ value="#{calendarBean.selectedDate}"
+ currentDate="#{calendarBean.currentDate}"
+ jointPoint="#{calendarBean.jointPoint}"
+ direction="#{calendarBean.direction}"
+ enableManualInput="#{calendarBean.enableManualInput}"
+ showInput="#{calendarBean.showInput}" buttonLabel="#{calendarBean.label}"
+ boundaryDatesMode="#{calendarBean.boundary}"
+ currentDateChangeListener="#{calendarBean.dcl}"
+ valueChangeListener="#{calendarBean.ddd}" reRender="counter"
+ inputClass="ic" buttonClass="bc"
+ ajaxSingle="#{calendarBean.ajaxSingle}"
+ buttonIcon="#{calendarBean.icon}"
+ buttonIconDisabled="#{icon.iconFileManagerReject}"
+ disabled="#{calendarBean.disabled}"
+ bypassUpdates="#{calendarBean.bypassUpdates}"
+ height="#{calendarBean.height}"
+ width="#{calendarBean.width}"
+ zindex="#{calendarBean.zindex}"
+ toolTipMode="#{calendarBean.toolTipMode}"
+ rendered="#{calendarBean.rendered}"
+ focus="popupModeID"
+ mode="client"
+ required="#{calendarBean.required}"
+ requiredMessage="Required Message"
+ >
+ <f:facet name="weekDay">
+ <f:verbatim><span style="padding: 2px; font-size: 4" >{weekDayLabel + weekDayLabelShort}</span></f:verbatim>
+ </f:facet>
+
+ <f:facet name="optionalHeader">
+ <h:outputText value="optionalHeader Facet" />
+ </f:facet>
+
+ <f:facet name="optionalFooter">
+ <h:outputText value="optionalFooter Facet" />
+ </f:facet>
+
+ <f:validator validatorId="org.richfaces.CalendarValidator" />
- <f:facet name="optionalFooter">
- <h:outputText value="optionalFooter Facet" />
- </f:facet>
+ <h:panelGrid columns="2">
+ <f:verbatim>
+ <span style="padding: 2px;">{day}</span>
+ </f:verbatim>
+ <h:panelGrid>
+ <h:outputText styleClass="smallText" value="{data.enLabel}" />
+ <h:outputText styleClass="smallText" value="{data.frLabel}" />
+ <h:outputText styleClass="smallText" value="{data.deLabel}" />
+ </h:panelGrid>
+ </h:panelGrid>
+ </rich:calendar>
+ <rich:calendar id="calendarAjaxID" dataModel="#{calendarDataModel}"
+ locale="#{calendarBean.locale}" popup="#{calendarBean.popup}"
+ datePattern="#{calendarBean.pattern}"
+ weekDayLabels="#{calendarBean.weekDayLabels}"
+ weekDayLabelsShort="#{calendarBean.weekDayLabelsShort}"
+ monthLabels="#{calendarBean.monthLabels}"
+ monthLabelsShort="#{calendarBean.monthLabelsShort}"
+ value="#{calendarBean.selectedDate}"
+ currentDate="#{calendarBean.currentDate}"
+ jointPoint="#{calendarBean.jointPoint}"
+ direction="#{calendarBean.direction}"
+ enableManualInput="#{calendarBean.enableManualInput}"
+ showInput="#{calendarBean.showInput}" buttonLabel="#{calendarBean.label}"
+ boundaryDatesMode="#{calendarBean.boundary}"
+ currentDateChangeListener="#{calendarBean.dcl}"
+ valueChangeListener="#{calendarBean.ddd}" reRender="counter"
+ inputClass="ic" buttonClass="bc"
+ ajaxSingle="#{calendarBean.ajaxSingle}"
+ buttonIcon="#{calendarBean.icon}"
+ buttonIconDisabled="#{icon.iconFileManagerReject}"
+ disabled="#{calendarBean.disabled}"
+ bypassUpdates="#{calendarBean.bypassUpdates}"
+ height="#{calendarBean.height}"
+ width="#{calendarBean.width}"
+ zindex="#{calendarBean.zindex}"
+ toolTipMode="#{calendarBean.toolTipMode}"
+ rendered="#{calendarBean.rendered}"
+ focus="popupModeID"
+ mode="ajax"
+ required="#{calendarBean.required}"
+ requiredMessage="Required Message">
+ <f:facet name="weekDay">
+ <f:verbatim><span style="padding: 2px; font-size: 4" >{weekDayLabel + weekDayLabelShort}</span></f:verbatim>
+ </f:facet>
+
+ <f:facet name="optionalHeader">
+ <h:outputText value="optionalHeader Facet" />
+ </f:facet>
+
+ <f:facet name="optionalFooter">
+ <h:outputText value="optionalFooter Facet" />
+ </f:facet>
+
+ <f:validator validatorId="org.richfaces.CalendarValidator" />
- <f:validator validatorId="org.richfaces.CalendarValidator" />
+ <h:panelGrid columns="2">
+ <f:verbatim>
+ <span style="padding: 2px;">{day}</span>
+ </f:verbatim>
+ <h:panelGrid>
+ <h:outputText styleClass="smallText" value="{data.enLabel}" />
+ <h:outputText styleClass="smallText" value="{data.frLabel}" />
+ <h:outputText styleClass="smallText" value="{data.deLabel}" />
+ </h:panelGrid>
+ </h:panelGrid>
+ </rich:calendar>
+ </h:panelGrid>
+
+
<h:panelGrid columns="2">
- <f:verbatim>
- <span style="padding: 2px;">{day}</span>
- </f:verbatim>
- <h:panelGrid>
- <h:outputText styleClass="smallText" value="{data.enLabel}" />
- <h:outputText styleClass="smallText" value="{data.frLabel}" />
- <h:outputText styleClass="smallText" value="{data.deLabel}" />
- </h:panelGrid>
- </h:panelGrid>
- </rich:calendar>
-
- <h:panelGrid columns="2">
<h:outputText value="Select Locale:" />
- <h:selectOneRadio onchange="submit()" value="en/US"
- valueChangeListener="#{calendarBean.selectLocale}">
+ <h:selectOneRadio onchange="submit()" value="en/US">
<f:selectItem itemLabel="US" itemValue="en/US" />
<f:selectItem itemLabel="DE" itemValue="de/DE" />
<f:selectItem itemLabel="FR" itemValue="fr/FR" />
@@ -98,7 +160,7 @@
<f:selectItem itemLabel="none" itemValue="none"/>
<f:selectItem itemLabel="day labels" itemValue="long"/>
<f:selectItem itemLabel="day labels short" itemValue="short"/>
- <a4j:support event="onclick" reRender="calendarID"></a4j:support>
+ <a4j:support event="onclick" reRender="calendarClientID,calendarAjaxID"></a4j:support>
</h:selectOneRadio>
<h:outputText value="Custom month labels" />
@@ -106,12 +168,11 @@
<f:selectItem itemLabel="none" itemValue="none"/>
<f:selectItem itemLabel="day labels" itemValue="long"/>
<f:selectItem itemLabel="day labels short" itemValue="short"/>
- <a4j:support event="onclick" reRender="calendarID"></a4j:support>
+ <a4j:support event="onclick" reRender="calendarClientID,calendarAjaxID"></a4j:support>
</h:selectOneRadio>
<h:outputText value="Select Date Pattern:" />
- <h:selectOneMenu value="MMM d, yyyy" onchange="submit()"
- valueChangeListener="#{calendarBean.selectPattern}">
+ <h:selectOneMenu value="MMM d, yyyy" onchange="submit()">
<f:selectItem itemLabel="d/M/yy" itemValue="d/M/yy" />
<f:selectItem itemLabel="dd/M/yy" itemValue="dd/M/yy" />
<f:selectItem itemLabel="d/MMM/y" itemValue="d/MMM/y" />
@@ -123,12 +184,6 @@
<h:commandButton type="button" value="Select Date"
onclick="$(this.form.id+':calendarID').component.selectDate(this.form[this.form.id+':selectdate'].value);" />
- <h:outputText value="Mode:" />
- <h:selectOneRadio value="#{calendarBean.mode}" onclick="submit();">
- <f:selectItem itemLabel="client" itemValue="client"/>
- <f:selectItem itemLabel="ajax" itemValue="ajax"/>
- </h:selectOneRadio>
-
<h:outputText value="Preload date range begin(d.m.y)" />
<h:inputText value="#{calendarBean.preloadDateRangeBegin}" onchange="submit();"/>
@@ -137,17 +192,17 @@
<h:outputText value="z-index:" />
<h:inputText value="#{calendarBean.zindex}">
- <a4j:support event="onchange" reRender="calendarID"></a4j:support>
+ <a4j:support event="onchange" reRender="calendarClientID,calendarAjaxID"></a4j:support>
</h:inputText>
<h:outputText value="Height:" />
<h:inputText value="#{calendarBean.height}">
- <a4j:support event="onchange" reRender="calendarID"></a4j:support>
+ <a4j:support event="onchange" reRender="calendarClientID,calendarAjaxID"></a4j:support>
</h:inputText>
<h:outputText value="Width:" />
<h:inputText value="#{calendarBean.width}">
- <a4j:support event="onchange" reRender="calendarID"></a4j:support>
+ <a4j:support event="onchange" reRender="calendarClientID,calendarAjaxID"></a4j:support>
</h:inputText>
<h:outputText value="reRender (counter):" />
@@ -158,8 +213,7 @@
<h:outputText value="Select Popup Joint Point:" />
<h:selectOneRadio onchange="submit()"
- value="#{calendarBean.jointPoint}"
- valueChangeListener="#{calendarBean.selectJointPoint}">
+ value="#{calendarBean.jointPoint}">
<f:selectItem itemLabel="bottom-right" itemValue="bottom-right" />
<f:selectItem itemLabel="bottom-left" itemValue="bottom-left" />
<f:selectItem itemLabel="top-right" itemValue="top-right" />
@@ -168,8 +222,7 @@
<h:outputText value="Select Popup Direction:" />
<h:selectOneRadio onchange="submit()"
- value="#{calendarBean.direction}"
- valueChangeListener="#{calendarBean.selectDirection}">
+ value="#{calendarBean.direction}">
<f:selectItem itemLabel="bottom-right" itemValue="bottom-right" />
<f:selectItem itemLabel="bottom-left" itemValue="bottom-left" />
<f:selectItem itemLabel="top-right" itemValue="top-right" />
17 years, 2 months
JBoss Rich Faces SVN: r3363 - in branches/3.1.x/ui/dataTable/src: test/java/org/richfaces/component and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: akushunin
Date: 2007-10-15 05:39:24 -0400 (Mon, 15 Oct 2007)
New Revision: 3363
Modified:
branches/3.1.x/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractGridRenderer.java
branches/3.1.x/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java
branches/3.1.x/ui/dataTable/src/test/java/org/richfaces/component/DataGridComponentTest.java
Log:
RF-1106
Modified: branches/3.1.x/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractGridRenderer.java
===================================================================
--- branches/3.1.x/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractGridRenderer.java 2007-10-15 09:30:04 UTC (rev 3362)
+++ branches/3.1.x/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractGridRenderer.java 2007-10-15 09:39:24 UTC (rev 3363)
@@ -45,7 +45,7 @@
if(header != null ){
writer.startElement("thead", table);
String headerClass = (String) table.getAttributes().get("headerClass");
- encodeTableHeaderFacet(context, table.getColumns(), writer, header, "dr-table-header rich-table-header","dr-table-header-continue rich-table-header-continue", "dr-table-headercell rich-table-headercell", headerClass, "td");
+ encodeTableHeaderFacet(context, table.getColumns(), writer, header, "dr-table-header rich-table-header","dr-table-header-continue rich-table-header-continue", "dr-table-headercell rich-table-headercell", headerClass, "th");
writer.endElement("thead");
}
}
Modified: branches/3.1.x/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java
===================================================================
--- branches/3.1.x/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java 2007-10-15 09:30:04 UTC (rev 3362)
+++ branches/3.1.x/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java 2007-10-15 09:39:24 UTC (rev 3363)
@@ -98,7 +98,7 @@
"dr-table-header rich-table-header",
"dr-table-header-continue rich-table-header-continue",
"dr-table-headercell rich-table-headercell",
- headerClass, "td");
+ headerClass, "th");
}
if (headers.hasNext()&&findFacet(table,"header")) {
@@ -108,7 +108,7 @@
headerClass);
encodeHeaderFacets(context, writer, headers,
"dr-table-subheadercell rich-table-subheadercell",
- headerClass, "header", "td");
+ headerClass, "header", "th");
writer.endElement("tr");
}
@@ -388,4 +388,4 @@
}
return count;
}
-}
\ No newline at end of file
+}
Modified: branches/3.1.x/ui/dataTable/src/test/java/org/richfaces/component/DataGridComponentTest.java
===================================================================
--- branches/3.1.x/ui/dataTable/src/test/java/org/richfaces/component/DataGridComponentTest.java 2007-10-15 09:30:04 UTC (rev 3362)
+++ branches/3.1.x/ui/dataTable/src/test/java/org/richfaces/component/DataGridComponentTest.java 2007-10-15 09:39:24 UTC (rev 3363)
@@ -166,7 +166,7 @@
classAttr = tr.getAttributeValue("class");
assertTrue(classAttr.contains("dr-table-header rich-table-header"));
- List tds = tr.getHtmlElementsByTagName("td");
+ List tds = tr.getHtmlElementsByTagName("th");
assertTrue(tds.size() > 0);
HtmlElement td = (HtmlElement) tds.get(0);
assertNotNull(td);
17 years, 2 months
JBoss Rich Faces SVN: r3362 - in trunk/ui/dataTable/src: test/java/org/richfaces/component and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: akushunin
Date: 2007-10-15 05:30:04 -0400 (Mon, 15 Oct 2007)
New Revision: 3362
Modified:
trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractGridRenderer.java
trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java
trunk/ui/dataTable/src/test/java/org/richfaces/component/DataGridComponentTest.java
Log:
Rf-1106
Modified: trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractGridRenderer.java
===================================================================
--- trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractGridRenderer.java 2007-10-15 08:17:07 UTC (rev 3361)
+++ trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractGridRenderer.java 2007-10-15 09:30:04 UTC (rev 3362)
@@ -45,7 +45,7 @@
if(header != null ){
writer.startElement("thead", table);
String headerClass = (String) table.getAttributes().get("headerClass");
- encodeTableHeaderFacet(context, table.getColumns(), writer, header, "dr-table-header rich-table-header","dr-table-header-continue rich-table-header-continue", "dr-table-headercell rich-table-headercell", headerClass, "td");
+ encodeTableHeaderFacet(context, table.getColumns(), writer, header, "dr-table-header rich-table-header","dr-table-header-continue rich-table-header-continue", "dr-table-headercell rich-table-headercell", headerClass, "th");
writer.endElement("thead");
}
}
Modified: trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java
===================================================================
--- trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java 2007-10-15 08:17:07 UTC (rev 3361)
+++ trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java 2007-10-15 09:30:04 UTC (rev 3362)
@@ -92,7 +92,7 @@
"dr-table-header rich-table-header",
"dr-table-header-continue rich-table-header-continue",
"dr-table-headercell rich-table-headercell",
- headerClass, "td");
+ headerClass, "th");
}
if (headers.hasNext()&&findFacet(table,"header")) {
@@ -102,7 +102,7 @@
headerClass);
encodeHeaderFacets(context, writer, headers,
"dr-table-subheadercell rich-table-subheadercell",
- headerClass, "header", "td");
+ headerClass, "header", "th");
writer.endElement("tr");
}
Modified: trunk/ui/dataTable/src/test/java/org/richfaces/component/DataGridComponentTest.java
===================================================================
--- trunk/ui/dataTable/src/test/java/org/richfaces/component/DataGridComponentTest.java 2007-10-15 08:17:07 UTC (rev 3361)
+++ trunk/ui/dataTable/src/test/java/org/richfaces/component/DataGridComponentTest.java 2007-10-15 09:30:04 UTC (rev 3362)
@@ -166,7 +166,7 @@
classAttr = tr.getAttributeValue("class");
assertTrue(classAttr.contains("dr-table-header rich-table-header"));
- List tds = tr.getHtmlElementsByTagName("td");
+ List tds = tr.getHtmlElementsByTagName("th");
assertTrue(tds.size() > 0);
HtmlElement td = (HtmlElement) tds.get(0);
assertNotNull(td);
17 years, 2 months
JBoss Rich Faces SVN: r3361 - trunk/test-applications/jsp/src/main/webapp/pages.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2007-10-15 04:17:07 -0400 (Mon, 15 Oct 2007)
New Revision: 3361
Modified:
trunk/test-applications/jsp/src/main/webapp/pages/main.jsp
Log:
Modified: trunk/test-applications/jsp/src/main/webapp/pages/main.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/pages/main.jsp 2007-10-15 08:17:03 UTC (rev 3360)
+++ trunk/test-applications/jsp/src/main/webapp/pages/main.jsp 2007-10-15 08:17:07 UTC (rev 3361)
@@ -11,7 +11,7 @@
<f:view>
<h:form>
<div align="center"><h:outputText
- value="VCP 3.2.0 Test Application (JSF 1.1RI(1.2RI))" styleClass="maintext"></h:outputText></div>
+ value="VCP Test Application (JSF 1.1RI(1.2RI))" styleClass="maintext"></h:outputText></div>
<rich:panel>
<h:panelGrid columns="2" cellpadding="5px">
<h:commandLink value="RichFaces" action="RichTest"></h:commandLink>
17 years, 2 months
JBoss Rich Faces SVN: r3360 - trunk/test-applications/facelets/src/main/webapp/pages.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2007-10-15 04:17:03 -0400 (Mon, 15 Oct 2007)
New Revision: 3360
Modified:
trunk/test-applications/facelets/src/main/webapp/pages/main.xhtml
Log:
Modified: trunk/test-applications/facelets/src/main/webapp/pages/main.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/pages/main.xhtml 2007-10-15 08:13:15 UTC (rev 3359)
+++ trunk/test-applications/facelets/src/main/webapp/pages/main.xhtml 2007-10-15 08:17:03 UTC (rev 3360)
@@ -11,7 +11,7 @@
<body>
<h:form>
<div align="center"><h:outputText
- value="VCP 3.2.0 Test Application (JSF 1.1RI(1.2RI) with Facelets)"
+ value="VCP Test Application (JSF 1.1RI(1.2RI) with Facelets)"
style="font-size: 30px"></h:outputText></div>
<rich:panel>
<h:panelGrid columns="2" cellpadding="5px" cellspacing="5px">
17 years, 2 months
JBoss Rich Faces SVN: r3359 - trunk/test-applications/facelets/src/main/webapp/pages.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2007-10-15 04:13:15 -0400 (Mon, 15 Oct 2007)
New Revision: 3359
Modified:
trunk/test-applications/facelets/src/main/webapp/pages/main.xhtml
Log:
Modified: trunk/test-applications/facelets/src/main/webapp/pages/main.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/pages/main.xhtml 2007-10-15 07:53:01 UTC (rev 3358)
+++ trunk/test-applications/facelets/src/main/webapp/pages/main.xhtml 2007-10-15 08:13:15 UTC (rev 3359)
@@ -18,7 +18,6 @@
<h:commandLink value="RichFaces" action="Test"></h:commandLink>
<h:commandLink value="Div" action="TestDiv"></h:commandLink>
<h:commandLink value="Select" action="Map"></h:commandLink>
- <h:commandLink value="temp" action="RichTest"></h:commandLink>
<h:commandLink value="Customize page" action="CustomizePage"></h:commandLink>
</h:panelGrid>
</rich:panel>
17 years, 2 months
JBoss Rich Faces SVN: r3358 - trunk/test-applications/facelets/src/main/webapp/pages/Select.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2007-10-15 03:53:01 -0400 (Mon, 15 Oct 2007)
New Revision: 3358
Modified:
trunk/test-applications/facelets/src/main/webapp/pages/Select/Map.xhtml
Log:
Modified: trunk/test-applications/facelets/src/main/webapp/pages/Select/Map.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/pages/Select/Map.xhtml 2007-10-13 00:31:32 UTC (rev 3357)
+++ trunk/test-applications/facelets/src/main/webapp/pages/Select/Map.xhtml 2007-10-15 07:53:01 UTC (rev 3358)
@@ -21,11 +21,7 @@
<ui:include src="${richBean.src}" />
</div>
- <iframe src="banner.html" width="468" height="60" align="center">
-
- </iframe>
-
- <div id="divID" style="position: relative; top:60px; left: 10px; z-index: 1">
+ <div id="divID" style="absolute; relative; top:60px; left: 10px; z-index: 1">
<ui:include src="/pages/Select/SelectOneMenuPage.xhtml" />
</div>
</body>
17 years, 2 months
JBoss Rich Faces SVN: r3357 - in tags: 3.1.2.CR1 and 122 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-10-12 20:31:32 -0400 (Fri, 12 Oct 2007)
New Revision: 3357
Added:
tags/3.1.2.CR1/
Modified:
tags/3.1.2.CR1/cdk/generator/pom.xml
tags/3.1.2.CR1/cdk/maven-archetype-jsf-component/pom.xml
tags/3.1.2.CR1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.1.2.CR1/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.1.2.CR1/cdk/maven-cdk-plugin/pom.xml
tags/3.1.2.CR1/cdk/pom.xml
tags/3.1.2.CR1/docs/pom.xml
tags/3.1.2.CR1/docs/userguide/en/pom.xml
tags/3.1.2.CR1/docs/userguide/pom.xml
tags/3.1.2.CR1/docs/xslt/en/pom.xml
tags/3.1.2.CR1/docs/xslt/pom.xml
tags/3.1.2.CR1/extensions/gwt/pom.xml
tags/3.1.2.CR1/extensions/pom.xml
tags/3.1.2.CR1/extensions/portlet/pom.xml
tags/3.1.2.CR1/extensions/seam/pom.xml
tags/3.1.2.CR1/extensions/trinidad/pom.xml
tags/3.1.2.CR1/framework/api-parent/pom.xml
tags/3.1.2.CR1/framework/api/pom.xml
tags/3.1.2.CR1/framework/impl-parent/pom.xml
tags/3.1.2.CR1/framework/impl/pom.xml
tags/3.1.2.CR1/framework/impl/src/main/java/org/richfaces/VersionBean.java
tags/3.1.2.CR1/framework/pom.xml
tags/3.1.2.CR1/framework/test/pom.xml
tags/3.1.2.CR1/pom.xml
tags/3.1.2.CR1/samples/ajaxPortlet/pom.xml
tags/3.1.2.CR1/samples/calendar-sample/pom.xml
tags/3.1.2.CR1/samples/dataFilterSliderDemo/pom.xml
tags/3.1.2.CR1/samples/dataTableDemo/pom.xml
tags/3.1.2.CR1/samples/datascroller-sample/pom.xml
tags/3.1.2.CR1/samples/dragDropDemo/pom.xml
tags/3.1.2.CR1/samples/dropdownmenu-sample/pom.xml
tags/3.1.2.CR1/samples/effect-sample/pom.xml
tags/3.1.2.CR1/samples/gmap-sample/pom.xml
tags/3.1.2.CR1/samples/inputNumberSliderDemo/pom.xml
tags/3.1.2.CR1/samples/inputNumberSpinnerDemo/pom.xml
tags/3.1.2.CR1/samples/jQuery-sample/pom.xml
tags/3.1.2.CR1/samples/local-value-demo/pom.xml
tags/3.1.2.CR1/samples/modalpanel-sample/pom.xml
tags/3.1.2.CR1/samples/panel-sample/pom.xml
tags/3.1.2.CR1/samples/panelbar-sample/pom.xml
tags/3.1.2.CR1/samples/panelmenu-sample/pom.xml
tags/3.1.2.CR1/samples/pom.xml
tags/3.1.2.CR1/samples/portal-echo/pom.xml
tags/3.1.2.CR1/samples/rich-message-demo/pom.xml
tags/3.1.2.CR1/samples/richfaces-art-datatable/pom.xml
tags/3.1.2.CR1/samples/richfaces-demo/pom.xml
tags/3.1.2.CR1/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.1.2.CR1/samples/richfaces-ear-demo/pom.xml
tags/3.1.2.CR1/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.1.2.CR1/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.1.2.CR1/samples/scrollableDataTableDemo/pom.xml
tags/3.1.2.CR1/samples/seamEAR/ear/pom.xml
tags/3.1.2.CR1/samples/seamEAR/ejbs/pom.xml
tags/3.1.2.CR1/samples/seamEAR/pom.xml
tags/3.1.2.CR1/samples/seamEAR/primary-source/pom.xml
tags/3.1.2.CR1/samples/seamEAR/projects/logging/pom.xml
tags/3.1.2.CR1/samples/seamEAR/projects/pom.xml
tags/3.1.2.CR1/samples/seamEAR/wars/pom.xml
tags/3.1.2.CR1/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.1.2.CR1/samples/seamIntegration/pom.xml
tags/3.1.2.CR1/samples/separator-sample/pom.xml
tags/3.1.2.CR1/samples/simpleTogglePanel-sample/pom.xml
tags/3.1.2.CR1/samples/skins/pom.xml
tags/3.1.2.CR1/samples/suggestionbox-sample/pom.xml
tags/3.1.2.CR1/samples/tabPanelDemo/pom.xml
tags/3.1.2.CR1/samples/togglePanel-sample/pom.xml
tags/3.1.2.CR1/samples/tomahawkCompability/pom.xml
tags/3.1.2.CR1/samples/toolBarDemo/pom.xml
tags/3.1.2.CR1/samples/tooltip-sample/pom.xml
tags/3.1.2.CR1/samples/tree-demo/pom.xml
tags/3.1.2.CR1/samples/treeModelDemo/pom.xml
tags/3.1.2.CR1/samples/useCases/pom.xml
tags/3.1.2.CR1/samples/virtualEarth-sample/pom.xml
tags/3.1.2.CR1/sandbox/api/pom.xml
tags/3.1.2.CR1/sandbox/impl/pom.xml
tags/3.1.2.CR1/sandbox/pom.xml
tags/3.1.2.CR1/sandbox/samples/dialog-window-sample/pom.xml
tags/3.1.2.CR1/sandbox/samples/panel2-sample/pom.xml
tags/3.1.2.CR1/sandbox/samples/pom.xml
tags/3.1.2.CR1/sandbox/samples/rich-message-demo/pom.xml
tags/3.1.2.CR1/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.1.2.CR1/sandbox/ui/dialog-window/pom.xml
tags/3.1.2.CR1/sandbox/ui/panel2/pom.xml
tags/3.1.2.CR1/sandbox/ui/pom.xml
tags/3.1.2.CR1/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.1.2.CR1/sandbox/ui/state/pom.xml
tags/3.1.2.CR1/test-applications/facelets/pom.xml
tags/3.1.2.CR1/test-applications/jsp/pom.xml
tags/3.1.2.CR1/test-applications/pom.xml
tags/3.1.2.CR1/ui/assembly/pom.xml
tags/3.1.2.CR1/ui/calendar/pom.xml
tags/3.1.2.CR1/ui/core/pom.xml
tags/3.1.2.CR1/ui/create.bat
tags/3.1.2.CR1/ui/create.sh
tags/3.1.2.CR1/ui/dataFilterSlider/pom.xml
tags/3.1.2.CR1/ui/dataTable/pom.xml
tags/3.1.2.CR1/ui/datascroller/pom.xml
tags/3.1.2.CR1/ui/drag-drop/pom.xml
tags/3.1.2.CR1/ui/dropdown-menu/pom.xml
tags/3.1.2.CR1/ui/effect/pom.xml
tags/3.1.2.CR1/ui/gmap/pom.xml
tags/3.1.2.CR1/ui/inputnumber-slider/pom.xml
tags/3.1.2.CR1/ui/inputnumber-spinner/pom.xml
tags/3.1.2.CR1/ui/insert/pom.xml
tags/3.1.2.CR1/ui/jQuery/pom.xml
tags/3.1.2.CR1/ui/menu-components/pom.xml
tags/3.1.2.CR1/ui/message/pom.xml
tags/3.1.2.CR1/ui/modal-panel/pom.xml
tags/3.1.2.CR1/ui/paint2D/pom.xml
tags/3.1.2.CR1/ui/panel/pom.xml
tags/3.1.2.CR1/ui/panelbar/pom.xml
tags/3.1.2.CR1/ui/panelmenu/pom.xml
tags/3.1.2.CR1/ui/pom.xml
tags/3.1.2.CR1/ui/scrollableDataTable/pom.xml
tags/3.1.2.CR1/ui/separator/pom.xml
tags/3.1.2.CR1/ui/simpleTogglePanel/pom.xml
tags/3.1.2.CR1/ui/spacer/pom.xml
tags/3.1.2.CR1/ui/suggestionbox/pom.xml
tags/3.1.2.CR1/ui/tabPanel/pom.xml
tags/3.1.2.CR1/ui/togglePanel/pom.xml
tags/3.1.2.CR1/ui/toolBar/pom.xml
tags/3.1.2.CR1/ui/tooltip/pom.xml
tags/3.1.2.CR1/ui/tree/pom.xml
tags/3.1.2.CR1/ui/treeModel/pom.xml
tags/3.1.2.CR1/ui/virtualEarth/pom.xml
Log:
Mark release candidate for a 3.1.2
Copied: tags/3.1.2.CR1 (from rev 3356, branches/3.1.x)
Modified: tags/3.1.2.CR1/cdk/generator/pom.xml
===================================================================
--- branches/3.1.x/cdk/generator/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/cdk/generator/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: tags/3.1.2.CR1/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/3.1.x/cdk/maven-archetype-jsf-component/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/cdk/maven-archetype-jsf-component/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/3.1.x/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
Modified: tags/3.1.2.CR1/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/3.1.x/cdk/maven-archetype-jsfwebapp/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/cdk/maven-archetype-jsfwebapp/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/3.1.x/cdk/maven-cdk-plugin/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/cdk/maven-cdk-plugin/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/cdk/pom.xml
===================================================================
--- branches/3.1.x/cdk/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/cdk/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.1.2.CR1/docs/pom.xml
===================================================================
--- branches/3.1.x/docs/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/docs/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -3,12 +3,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.1.2.CR1/docs/userguide/en/pom.xml
===================================================================
--- branches/3.1.x/docs/userguide/en/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/docs/userguide/en/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>jdocbook</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.1.2.CR1/docs/userguide/pom.xml
===================================================================
--- branches/3.1.x/docs/userguide/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/docs/userguide/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.1.2.CR1/docs/xslt/en/pom.xml
===================================================================
--- branches/3.1.x/docs/xslt/en/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/docs/xslt/en/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>xslt</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.xslt</groupId>
<artifactId>en</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>jar</packaging>
<name>Documentation stylesheets (English translation)</name>
<description>
Modified: tags/3.1.2.CR1/docs/xslt/pom.xml
===================================================================
--- branches/3.1.x/docs/xslt/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/docs/xslt/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>xslt</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>pom</packaging>
<name>Documentation stylesheets</name>
<description>Docbook documentation stylesheets</description>
Modified: tags/3.1.2.CR1/extensions/gwt/pom.xml
===================================================================
--- branches/3.1.x/extensions/gwt/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/extensions/gwt/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -3,7 +3,7 @@
<parent>
<artifactId>master</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.1.2.CR1/extensions/pom.xml
===================================================================
--- branches/3.1.x/extensions/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/extensions/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.1.2.CR1/extensions/portlet/pom.xml
===================================================================
--- branches/3.1.x/extensions/portlet/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/extensions/portlet/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.extensions</groupId>
<artifactId>portlet</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>ajax4jsf portlet brige</name>
<url>http://labs.jboss.com/wiki/Ajax4jsf/a4j-portlet</url>
<dependencies>
@@ -56,12 +56,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<scope>test</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR1/extensions/seam/pom.xml
===================================================================
--- branches/3.1.x/extensions/seam/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/extensions/seam/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.1.2.CR1/extensions/trinidad/pom.xml
===================================================================
--- branches/3.1.x/extensions/trinidad/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/extensions/trinidad/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.1.2.CR1/framework/api/pom.xml
===================================================================
--- branches/3.1.x/framework/api/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/framework/api/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<build>
<plugins>
<plugin>
Modified: tags/3.1.2.CR1/framework/api-parent/pom.xml
===================================================================
--- branches/3.1.x/framework/api-parent/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/framework/api-parent/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<packaging>pom</packaging>
<artifactId>api-parent</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>Java Server Faces AJAX framework API Dependencies</name>
<properties>
<jsfVersion>1.1</jsfVersion>
Modified: tags/3.1.2.CR1/framework/impl/pom.xml
===================================================================
--- branches/3.1.x/framework/impl/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/framework/impl/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -3,19 +3,19 @@
<parent>
<artifactId>impl-parent</artifactId>
<groupId>org.richfaces.framework</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<relativePath>../impl-parent/pom.xml</relativePath>
</parent>
-->
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>Java Server Faces AJAX framework implementation</name>
<build>
<resources>
@@ -189,7 +189,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
<profiles>
Modified: tags/3.1.2.CR1/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/richfaces/VersionBean.java 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/framework/impl/src/main/java/org/richfaces/VersionBean.java 2007-10-13 00:31:32 UTC (rev 3357)
@@ -37,7 +37,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "2-SNAPSHOT" ;
+ public static final String REVISION = "2.CR1" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: tags/3.1.2.CR1/framework/impl-parent/pom.xml
===================================================================
--- branches/3.1.x/framework/impl-parent/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/framework/impl-parent/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -5,12 +5,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>impl-parent</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>pom</packaging>
<name>
Java Server Faces AJAX framework implementation parent file
@@ -203,7 +203,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
<properties>
Modified: tags/3.1.2.CR1/framework/pom.xml
===================================================================
--- branches/3.1.x/framework/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/framework/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<dependencies />
Modified: tags/3.1.2.CR1/framework/test/pom.xml
===================================================================
--- branches/3.1.x/framework/test/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/framework/test/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
<dependencies>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>htmlunit</groupId>
Modified: tags/3.1.2.CR1/pom.xml
===================================================================
--- branches/3.1.x/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
@@ -129,9 +129,9 @@
</license>
</licenses>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/3.1.x</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/3.1.x</developerConnection>
- <url>https://svn.jboss.org/repos/richfaces/branches/3.1.x</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/3.1.2.CR1</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/3.1.2.CR1</developerConnection>
+ <url>https://svn.jboss.org/repos/richfaces/branches/3.1.2.CR1</url>
</scm>
<profiles>
<profile>
Modified: tags/3.1.2.CR1/samples/ajaxPortlet/pom.xml
===================================================================
--- branches/3.1.x/samples/ajaxPortlet/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/ajaxPortlet/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -5,12 +5,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>portalAjaxSample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<description>Ajax JSF sample portlet</description>
<build>
@@ -27,7 +27,7 @@
<dependency>
<groupId>org.richfaces.extensions</groupId>
<artifactId>portlet</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.CR1/samples/calendar-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/calendar-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/calendar-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -3,29 +3,29 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>calendar-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>calendar-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>calendar</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR1/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/dataFilterSliderDemo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/dataFilterSliderDemo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,29 +2,29 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>dataFilterSliderDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>dataFilterSliderDemo Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataFilterSlider</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR1/samples/dataTableDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/dataTableDemo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/dataTableDemo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>dataTableDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<url>http://maven.apache.org</url>
@@ -18,12 +18,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/samples/datascroller-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/datascroller-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/datascroller-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>datascroller-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>datascroller</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/samples/dragDropDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/dragDropDemo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/dragDropDemo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>dragDropDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>Drag/Drop demo app</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/dropdownmenu-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/dropdownmenu-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>dropdownmenu-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,17 +17,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dropdown-menu</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/samples/effect-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/effect-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/effect-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>effect-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>effect Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>effect</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR1/samples/gmap-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/gmap-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/gmap-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>gmap-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>gmap-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>gmap</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR1/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/inputNumberSliderDemo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/inputNumberSliderDemo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>inputNumberSliderDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-slider</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/inputNumberSpinnerDemo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/inputNumberSpinnerDemo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>inputNumberSpinnerDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/samples/jQuery-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/jQuery-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/jQuery-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>jQuery-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>jQuery-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR1/samples/local-value-demo/pom.xml
===================================================================
--- branches/3.1.x/samples/local-value-demo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/local-value-demo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,24 +2,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>local-value-demo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>richfaces-local-value-demo Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR1/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/modalpanel-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/modalpanel-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,24 +2,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>modalpanel-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>modalpanel-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>modal-panel</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR1/samples/panel-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/panel-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/panel-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,24 +2,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>panel-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>panel-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>panel</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR1/samples/panelbar-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/panelbar-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/panelbar-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>panelbar-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>panelbar</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/panelmenu-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/panelmenu-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -3,24 +3,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>panelmenu-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>panelmenu-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>panelmenu</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR1/samples/pom.xml
===================================================================
--- branches/3.1.x/samples/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -3,14 +3,14 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
<packaging>pom</packaging>
<name>RichFaces Components Examples</name>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<url>http://labs.jboss.com/jbossrichfaces/samples</url>
<properties>
<!-- -->
@@ -67,12 +67,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
@@ -361,7 +361,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.CR1/samples/portal-echo/pom.xml
===================================================================
--- branches/3.1.x/samples/portal-echo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/portal-echo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -5,13 +5,13 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>portal-echo</artifactId>
<packaging>war</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<description>Ajax JSF sample portlet</description>
<build>
<defaultGoal>package</defaultGoal>
Modified: tags/3.1.2.CR1/samples/rich-message-demo/pom.xml
===================================================================
--- branches/3.1.x/samples/rich-message-demo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/rich-message-demo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -3,29 +3,29 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>rich-message-demo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>rich-message-demo</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR1/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/3.1.x/samples/richfaces-art-datatable/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/richfaces-art-datatable/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -3,19 +3,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>richfaces-art-datatable</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>richfaces-art-datatableDemo Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR1/samples/richfaces-demo/pom.xml
===================================================================
--- branches/3.1.x/samples/richfaces-demo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/richfaces-demo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>richfaces-demo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>richfaces-demo Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -24,7 +24,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR1/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/3.1.x/samples/richfaces-ear-demo/ejb/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/richfaces-ear-demo/ejb/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -4,14 +4,14 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>ejb</artifactId>
<packaging>ejb</packaging>
<name>ejb</name>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
@@ -23,7 +23,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.CR1/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/3.1.x/samples/richfaces-ear-demo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/richfaces-ear-demo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -4,14 +4,14 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>richfaces-ear-demo</artifactId>
<name>JSF 1.2/Jee5 enterprise application demo</name>
<packaging>pom</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<build>
<pluginManagement>
<plugins>
Modified: tags/3.1.2.CR1/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/3.1.x/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -4,32 +4,32 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>richfacesEAR</artifactId>
<name>richfacesEAR</name>
<packaging>ear</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>ejb</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>ejb</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<type>ejb-client</type>
</dependency>
<dependency>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>webapp</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<type>war</type>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR1/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/3.1.x/samples/richfaces-ear-demo/webapp/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/richfaces-ear-demo/webapp/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -4,14 +4,14 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>webapp</artifactId>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<url>http://maven.apache.org</url>
<build>
<finalName>webapp</finalName>
@@ -48,17 +48,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<optional>true</optional>
</dependency>
<dependency>
@@ -71,7 +71,7 @@
<dependency>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>ejb</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<type>ejb-client</type>
<scope>provided</scope>
<optional>true</optional>
Modified: tags/3.1.2.CR1/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/scrollableDataTableDemo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/scrollableDataTableDemo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -4,34 +4,34 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>scrollableDataTable Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR1/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/ear/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/seamEAR/ear/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -6,18 +6,18 @@
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>ear</artifactId>
<packaging>ear</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>ear assembly</name>
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<dependencies>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.CR1/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/ejbs/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/seamEAR/ejbs/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -6,12 +6,12 @@
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>ejbs</artifactId>
<packaging>ejb</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>enterprise java beans</name>
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<dependencies>
<dependency>
@@ -32,7 +32,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.CR1/samples/seamEAR/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/seamEAR/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -6,12 +6,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
-->
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<artifactId>seamEAR</artifactId>
<packaging>pom</packaging>
<name>seam EAR project</name>
@@ -58,23 +58,23 @@
org.richfaces.samples.seamEAR.projects
</groupId>
<artifactId>logging</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>primary-source</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples.seamEAR.wars</groupId>
<artifactId>seamWebapp</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>ejbs</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<type>ejb</type>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR1/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/primary-source/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/seamEAR/primary-source/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.1.2.CR1/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/projects/logging/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/seamEAR/projects/logging/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
</project>
Modified: tags/3.1.2.CR1/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/projects/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/seamEAR/projects/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -1,14 +1,14 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.seamEAR</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<artifactId>projects</artifactId>
<packaging>pom</packaging>
<name>sub projects</name>
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.1.2.CR1/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/wars/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/seamEAR/wars/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -4,11 +4,11 @@
<artifactId>wars</artifactId>
<packaging>pom</packaging>
<name>wars</name>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.1.2.CR1/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/wars/seamWebapp/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/seamEAR/wars/seamWebapp/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -42,17 +42,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.1.2.CR1/samples/seamIntegration/pom.xml
===================================================================
--- branches/3.1.x/samples/seamIntegration/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/seamIntegration/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamIntegration</artifactId>
<packaging>war</packaging>
<name>seamIntegration Maven Webapp</name>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<build>
<finalName>seamIntegration</finalName>
<plugins>
Modified: tags/3.1.2.CR1/samples/separator-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/separator-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/separator-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>separator-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>separator</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/simpleTogglePanel-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/simpleTogglePanel-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>simpleTogglePanel-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>simpleTogglePanel</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/samples/skins/pom.xml
===================================================================
--- branches/3.1.x/samples/skins/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/skins/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.1.2.CR1/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/suggestionbox-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/suggestionbox-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>suggestionbox-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>suggestionbox-sample Maven Webapp</name>
<build>
@@ -17,17 +17,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/tabPanelDemo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/tabPanelDemo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>tabPanelDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,22 +17,22 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tabPanel</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>panel</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/togglePanel-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/togglePanel-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>togglePanel-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,17 +17,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>togglePanel</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>panel</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/3.1.x/samples/tomahawkCompability/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/tomahawkCompability/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -8,7 +8,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>tomahawkCompability</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>tomahawkCompability Maven Webapp</name>
<properties>
Modified: tags/3.1.2.CR1/samples/toolBarDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/toolBarDemo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/toolBarDemo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>toolBarDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>toolBar</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/samples/tooltip-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/tooltip-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/tooltip-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -3,24 +3,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>tooltip-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>tooltip-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tooltip</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR1/samples/tree-demo/pom.xml
===================================================================
--- branches/3.1.x/samples/tree-demo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/tree-demo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,29 +2,29 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>tree-demo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>tree-demo Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR1/samples/treeModelDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/treeModelDemo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/treeModelDemo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -3,24 +3,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>treeModelDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>Tree Model Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>treeModel</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR1/samples/useCases/pom.xml
===================================================================
--- branches/3.1.x/samples/useCases/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/useCases/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -5,12 +5,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>useCases</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>useCases Maven Webapp</name>
<build>
Modified: tags/3.1.2.CR1/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/virtualEarth-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/samples/virtualEarth-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -4,19 +4,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>virtualEarth-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<packaging>war</packaging>
<name>gmap-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>virtualEarth</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR1/sandbox/api/pom.xml
===================================================================
--- branches/3.1.x/sandbox/api/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/sandbox/api/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,18 +2,18 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<dependencies>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.CR1/sandbox/impl/pom.xml
===================================================================
--- branches/3.1.x/sandbox/impl/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/sandbox/impl/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.CR1/sandbox/pom.xml
===================================================================
--- branches/3.1.x/sandbox/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/sandbox/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.1.2.CR1/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/3.1.x/sandbox/samples/dialog-window-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/sandbox/samples/dialog-window-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -15,12 +15,12 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>dialog-window</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR1/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/3.1.x/sandbox/samples/panel2-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/sandbox/samples/panel2-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -15,12 +15,12 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>panel2</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR1/sandbox/samples/pom.xml
===================================================================
--- branches/3.1.x/sandbox/samples/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/sandbox/samples/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.1.2.CR1/sandbox/samples/rich-message-demo/pom.xml
===================================================================
--- branches/3.1.x/sandbox/samples/rich-message-demo/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/sandbox/samples/rich-message-demo/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.demo</groupId>
@@ -13,17 +13,17 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>message</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR1/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/3.1.x/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -16,12 +16,12 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>simpleTogglePanel2</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/sandbox/ui/dialog-window/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR1/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/3.1.x/sandbox/ui/panel2/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/sandbox/ui/panel2/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/sandbox/ui/pom.xml
===================================================================
--- branches/3.1.x/sandbox/ui/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/sandbox/ui/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.1.2.CR1/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/3.1.x/sandbox/ui/simpleTogglePanel2/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/sandbox/ui/simpleTogglePanel2/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/sandbox/ui/state/pom.xml
===================================================================
--- branches/3.1.x/sandbox/ui/state/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/sandbox/ui/state/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/test-applications/facelets/pom.xml
===================================================================
--- branches/3.1.x/test-applications/facelets/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/test-applications/facelets/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.1.2.CR1/test-applications/jsp/pom.xml
===================================================================
--- branches/3.1.x/test-applications/jsp/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/test-applications/jsp/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.1.2.CR1/test-applications/pom.xml
===================================================================
--- branches/3.1.x/test-applications/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/test-applications/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<relativePath>../samples</relativePath>
</parent>
@@ -43,11 +43,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.1.2-SNAPSHOT</rfVersion>
+ <rfVersion>3.1.2.CR1</rfVersion>
</properties>
<modules>
Modified: tags/3.1.2.CR1/ui/assembly/pom.xml
===================================================================
--- branches/3.1.x/ui/assembly/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/assembly/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: tags/3.1.2.CR1/ui/calendar/pom.xml
===================================================================
--- branches/3.1.x/ui/calendar/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/calendar/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/core/pom.xml
===================================================================
--- branches/3.1.x/ui/core/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/core/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR1/ui/create.bat
===================================================================
--- branches/3.1.x/ui/create.bat 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/create.bat 2007-10-13 00:31:32 UTC (rev 3357)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.1.2-SNAPSHOT -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.1.2.CR1 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/create.sh
===================================================================
--- branches/3.1.x/ui/create.sh 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/create.sh 2007-10-13 00:31:32 UTC (rev 3357)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component \
- -DarchetypeVersion=3.1.2-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=$1
+ -DarchetypeVersion=3.1.2.CR1 -DgroupId=org.richfaces.ui -DartifactId=$1
Modified: tags/3.1.2.CR1/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/3.1.x/ui/dataFilterSlider/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/dataFilterSlider/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/dataTable/pom.xml
===================================================================
--- branches/3.1.x/ui/dataTable/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/dataTable/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
-->
</dependencies>
Modified: tags/3.1.2.CR1/ui/datascroller/pom.xml
===================================================================
--- branches/3.1.x/ui/datascroller/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/datascroller/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/drag-drop/pom.xml
===================================================================
--- branches/3.1.x/ui/drag-drop/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/drag-drop/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
-->
</dependencies>
Modified: tags/3.1.2.CR1/ui/dropdown-menu/pom.xml
===================================================================
--- branches/3.1.x/ui/dropdown-menu/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/dropdown-menu/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/effect/pom.xml
===================================================================
--- branches/3.1.x/ui/effect/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/effect/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR1/ui/gmap/pom.xml
===================================================================
--- branches/3.1.x/ui/gmap/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/gmap/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR1/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/3.1.x/ui/inputnumber-slider/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/inputnumber-slider/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR1/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/3.1.x/ui/inputnumber-spinner/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/inputnumber-spinner/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.1.2.CR1/ui/insert/pom.xml
===================================================================
--- branches/3.1.x/ui/insert/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/insert/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR1/ui/jQuery/pom.xml
===================================================================
--- branches/3.1.x/ui/jQuery/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/jQuery/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR1/ui/menu-components/pom.xml
===================================================================
--- branches/3.1.x/ui/menu-components/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/menu-components/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/message/pom.xml
===================================================================
--- branches/3.1.x/ui/message/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/message/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/modal-panel/pom.xml
===================================================================
--- branches/3.1.x/ui/modal-panel/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/modal-panel/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR1/ui/paint2D/pom.xml
===================================================================
--- branches/3.1.x/ui/paint2D/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/paint2D/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR1/ui/panel/pom.xml
===================================================================
--- branches/3.1.x/ui/panel/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/panel/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/panelbar/pom.xml
===================================================================
--- branches/3.1.x/ui/panelbar/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/panelbar/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR1/ui/panelmenu/pom.xml
===================================================================
--- branches/3.1.x/ui/panelmenu/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/panelmenu/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/pom.xml
===================================================================
--- branches/3.1.x/ui/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -131,12 +131,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.1.2.CR1/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/scrollableDataTable/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<name>Scrollable Data Table</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -71,12 +71,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<scope>test</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR1/ui/separator/pom.xml
===================================================================
--- branches/3.1.x/ui/separator/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/separator/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.1.2.CR1/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/3.1.x/ui/simpleTogglePanel/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/simpleTogglePanel/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/spacer/pom.xml
===================================================================
--- branches/3.1.x/ui/spacer/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/spacer/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/suggestionbox/pom.xml
===================================================================
--- branches/3.1.x/ui/suggestionbox/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/suggestionbox/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/tabPanel/pom.xml
===================================================================
--- branches/3.1.x/ui/tabPanel/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/tabPanel/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/togglePanel/pom.xml
===================================================================
--- branches/3.1.x/ui/togglePanel/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/togglePanel/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/toolBar/pom.xml
===================================================================
--- branches/3.1.x/ui/toolBar/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/toolBar/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/tooltip/pom.xml
===================================================================
--- branches/3.1.x/ui/tooltip/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/tooltip/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/tree/pom.xml
===================================================================
--- branches/3.1.x/ui/tree/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/tree/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/treeModel/pom.xml
===================================================================
--- branches/3.1.x/ui/treeModel/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/treeModel/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR1/ui/virtualEarth/pom.xml
===================================================================
--- branches/3.1.x/ui/virtualEarth/pom.xml 2007-10-12 23:23:04 UTC (rev 3356)
+++ tags/3.1.2.CR1/ui/virtualEarth/pom.xml 2007-10-13 00:31:32 UTC (rev 3357)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.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.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
17 years, 2 months