JBoss Rich Faces SVN: r15924 - root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2009-11-18 14:08:09 -0500 (Wed, 18 Nov 2009)
New Revision: 15924
Modified:
root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/extendedDataTable.js
Log:
RF-7865
Modified: root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/extendedDataTable.js
===================================================================
--- root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/extendedDataTable.js 2009-11-18 16:53:20 UTC (rev 15923)
+++ root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/extendedDataTable.js 2009-11-18 19:08:09 UTC (rev 15924)
@@ -26,7 +26,7 @@
for (var j = 0; !rule && j < sheets.length; j++) {
var rules = sheets[j].cssRules ? sheets[j].cssRules: sheets[j].rules;
for (var i = 0; !rule && i < rules.length; i++) {
- if (rules[i].selectorText.toLowerCase() == (className.toLowerCase())) {
+ if (rules[i].selectorText && rules[i].selectorText.toLowerCase() == className.toLowerCase()) {
rule = rules[i];
}
}
@@ -35,40 +35,49 @@
};
richfaces.ExtendedDataTable = function(id) {
- this.id = id;
- this.element = document.getElementById(id);
- this.bodyElement = document.getElementById(id + ":b");
- this.contentElement = document.getElementById(id + ":c");
- this.marginElement = this.contentElement.firstChild;//TODO this.marginElement = Richfaces.firstDescendant(this.contentElement);
- this.dataTableElement = this.contentElement.lastChild;//TODO this.dataTableElement = Richfaces.lastDescendant(this.contentElement);
- this.frozenHeaderPartElement = document.getElementById(id + ":fhpe");
+ var element = document.getElementById(id);
+ var bodyElement = document.getElementById(id + ":b");
+ var contentElement = document.getElementById(id + ":c");
+ var marginElement = contentElement.firstChild;//TODO this.marginElement = Richfaces.firstDescendant(this.contentElement);
+ var dataTableElement = contentElement.lastChild;//TODO this.dataTableElement = Richfaces.lastDescendant(this.contentElement);
+ var frozenHeaderPartElement = document.getElementById(id + ":fhpe");
- this.normalPartStyle = richfaces.getCSSRule(".rich-extable-part-width").style;
- this.idSuffixs = [":nhpe", ":nbpe", ":nfpe"];
+ var normalPartStyle = richfaces.getCSSRule(".rich-extable-part-width").style;
+ var idSuffixs = [":nhpe", ":nbpe", ":nfpe"];
- this.scrollElement = document.getElementById(this.id + this.idSuffixs[2]);
+ var scrollElement = document.getElementById(id + idSuffixs[2]);
- this.rows = document.getElementById(id + ":nbte").rows.length;
+ var rows = document.getElementById(id + ":nbte").rows.length;
- this.updateLayout = function() {
- var offsetWidth = this.frozenHeaderPartElement ? this.frozenHeaderPartElement.offsetWidth : 0;
- this.normalPartStyle.width = this.element.clientWidth - offsetWidth + "px";
- var height = this.element.clientHeight;
- var element = this.element.firstChild;
- while (element) {
- if(element.nodeName.toUpperCase() == "DIV" && element != this.bodyElement) {
- height -= element.offsetHeight;
+ var updateLayout = function() {
+ var offsetWidth = frozenHeaderPartElement ? frozenHeaderPartElement.offsetWidth : 0;
+ normalPartStyle.width = element.clientWidth - offsetWidth + "px";
+ var height = element.clientHeight;
+ var el = element.firstChild;
+ while (el) {
+ if(el.nodeName.toUpperCase() == "DIV" && el != bodyElement) {
+ height -= el.offsetHeight;
}
- element = element.nextSibling;
+ el = el.nextSibling;
}
- this.bodyElement.style.height = height + "px";
+ bodyElement.style.height = height + "px";
};
+
+ var initializeLayout = function() {
+ //TODO contentElement.style.height = (rowCount * dataTableElement.offsetHeight / rows) + "px";
+ updateLayout();
+ };
+
+ var updateScrollPosition = function() {
+ var scrollLeft = scrollElement.scrollLeft;
+ for (var i = 0; i < idSuffixs.length; i++) {
+ document.getElementById(id + idSuffixs[i]).scrollLeft = scrollLeft;//TODO Not use getElementById here
+ }
+ };
- var table = this;
- jQuery(document).ready(function(){
- table.contentElement.style.height = (table.rowCount * table.dataTableElement.offsetHeight / table.rows) + "px";
- table.updateLayout();
- });
+ jQuery(document).ready(initializeLayout);
+ jQuery(window).bind("resize", updateLayout);
+ jQuery(scrollElement).bind("scroll", updateScrollPosition);
};
}(window.RichFaces, jQuery));
15 years, 1 month
JBoss Rich Faces SVN: r15923 - branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/inputNumberSlider.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2009-11-18 11:53:20 -0500 (Wed, 18 Nov 2009)
New Revision: 15923
Modified:
branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/inputNumberSlider/InputNumberSliderTestCase.java
Log:
https://jira.jboss.org/jira/browse/RF-8075
* fixed a failure in windows
Modified: branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/inputNumberSlider/InputNumberSliderTestCase.java
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/inputNumberSlider/InputNumberSliderTestCase.java 2009-11-18 16:31:40 UTC (rev 15922)
+++ branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/inputNumberSlider/InputNumberSliderTestCase.java 2009-11-18 16:53:20 UTC (rev 15923)
@@ -69,7 +69,7 @@
private final String LOC_THIRD_INPUT = format(getLoc("SLIDER_N_INPUT"), 2);
// tolerance (in pixels)
- private final int DELTA = 10;
+ private final int DELTA = 14;
/**
* Tests clicking on the first slider. First, it checks the offset of the handler and
15 years, 1 month
JBoss Rich Faces SVN: r15922 - root/ui-sandbox/trunk.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2009-11-18 11:31:40 -0500 (Wed, 18 Nov 2009)
New Revision: 15922
Modified:
root/ui-sandbox/trunk/pom.xml
Log:
https://jira.jboss.org/jira/browse/RF-7732
Modified: root/ui-sandbox/trunk/pom.xml
===================================================================
--- root/ui-sandbox/trunk/pom.xml 2009-11-18 14:23:24 UTC (rev 15921)
+++ root/ui-sandbox/trunk/pom.xml 2009-11-18 16:31:40 UTC (rev 15922)
@@ -22,13 +22,13 @@
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
<executions>
- <execution>
+ <!--execution>
<phase>generate-sources</phase>
<goals>
<goal>compile-templates</goal>
</goals>
</execution>
- <!--execution>
+ <execution>
<id>generate-test-sources</id>
<phase>generate-test-sources</phase>
<goals>
15 years, 1 month
JBoss Rich Faces SVN: r15921 - branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/inputNumberSlider.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2009-11-18 09:23:24 -0500 (Wed, 18 Nov 2009)
New Revision: 15921
Modified:
branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/inputNumberSlider/InputNumberSliderTestCase.java
Log:
https://jira.jboss.org/jira/browse/RF-8075
* test case refactored to be more platform-independent
Modified: branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/inputNumberSlider/InputNumberSliderTestCase.java
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/inputNumberSlider/InputNumberSliderTestCase.java 2009-11-18 14:07:12 UTC (rev 15920)
+++ branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/inputNumberSlider/InputNumberSliderTestCase.java 2009-11-18 14:23:24 UTC (rev 15921)
@@ -67,6 +67,9 @@
private final String LOC_THIRD_HANDLE = format(getLoc("SLIDER_N_HANDLE"), 2);
private final String LOC_THIRD_TIP = format(getLoc("SLIDER_N_TIP"), 2);
private final String LOC_THIRD_INPUT = format(getLoc("SLIDER_N_INPUT"), 2);
+
+ // tolerance (in pixels)
+ private final int DELTA = 10;
/**
* Tests clicking on the first slider. First, it checks the offset of the handler and
@@ -76,8 +79,8 @@
*/
@Test
public void testFirstSliderMouse() {
- assertTrue(Math.abs(getOffset(LOC_FIRST_HANDLE + "@style") - 75) < 2, format(MSG_HANDLE_N_PX, 75));
- assertTrue(Math.abs(getOffset(LOC_FIRST_TIP + "@style") - 75) < 2, format(MSG_TIP_N_PX, 75));
+ assertTrue(Math.abs(getOffset(LOC_FIRST_HANDLE + "@style") - 75) < DELTA, format(MSG_HANDLE_N_PX, 75));
+ assertTrue(Math.abs(getOffset(LOC_FIRST_TIP + "@style") - 75) < DELTA, format(MSG_TIP_N_PX, 75));
assertFalse(isDisplayed(LOC_FIRST_TIP), MSG_TIP_SHOULD_NOT_BE_VISIBLE);
selenium.mouseDownAt(LOC_FIRST, "20,3");
@@ -89,7 +92,7 @@
int value = Integer.parseInt(selenium.getValue(LOC_FIRST_INPUT));
assertEquals(tipOffset, handleOffset, MSG_OFFSETS_SHOULD_BE_THE_SAME);
- assertTrue(Math.abs(tipOffset - value * 1.5) < 5, MSG_TIP_FIRST_HALF);
+ assertTrue(Math.abs(tipOffset - value * 1.5) < DELTA, MSG_TIP_FIRST_HALF);
assertTrue(handleOffset < 75, MSG_HANDLE_FIRST_HALF);
}
@@ -108,7 +111,7 @@
int handleOffset = getOffset(LOC_FIRST_HANDLE + "@style");
assertEquals(tipOffset, handleOffset, MSG_OFFSETS_SHOULD_BE_THE_SAME);
- assertTrue(Math.abs(tipOffset - 10 * 1.5) < 5, MSG_TIP_FIRST_HALF);
+ assertTrue(Math.abs(tipOffset - 10 * 1.5) < DELTA, MSG_TIP_FIRST_HALF);
assertTrue(handleOffset < 75, MSG_HANDLE_FIRST_HALF);
selenium.type(LOC_FIRST_INPUT, "90");
@@ -116,7 +119,7 @@
handleOffset = getOffset(LOC_FIRST_HANDLE + "@style");
assertEquals(tipOffset, handleOffset, MSG_OFFSETS_SHOULD_BE_THE_SAME);
- assertTrue(Math.abs(tipOffset - 90 * 1.5) < 5, MSG_TIP_SECOND_HALF);
+ assertTrue(Math.abs(tipOffset - 90 * 1.5) < DELTA, MSG_TIP_SECOND_HALF);
assertTrue(handleOffset > 75, MSG_HANDLE_SECOND_HALF);
selenium.type(LOC_FIRST_INPUT, "0");
@@ -148,8 +151,8 @@
*/
@Test
public void testSecondSlider() {
- assertTrue(Math.abs(getOffset(LOC_SECOND_HANDLE + "@style") - 96) < 2, format(MSG_HANDLE_N_PX, 96));
- assertTrue(Math.abs(getOffset(LOC_SECOND_TIP + "@style") - 96) < 2, format(MSG_TIP_N_PX, 96));
+ assertTrue(Math.abs(getOffset(LOC_SECOND_HANDLE + "@style") - 96) < DELTA, format(MSG_HANDLE_N_PX, 96));
+ assertTrue(Math.abs(getOffset(LOC_SECOND_TIP + "@style") - 96) < DELTA, format(MSG_TIP_N_PX, 96));
assertFalse(isDisplayed(LOC_SECOND_TIP), MSG_TIP_SHOULD_NOT_BE_VISIBLE);
selenium.mouseDownAt(LOC_SECOND, "20,3");
@@ -162,7 +165,7 @@
int value = Integer.parseInt(selenium.getValue(LOC_SECOND_INPUT));
assertEquals(tipOffset, handleOffset, MSG_OFFSETS_SHOULD_BE_THE_SAME);
- assertTrue(Math.abs(tipOffset - value * 1.5) < 5, MSG_TIP_FIRST_HALF);
+ assertTrue(Math.abs(tipOffset - value * 1.5) < DELTA, MSG_TIP_FIRST_HALF);
assertTrue(handleOffset < 75, MSG_HANDLE_FIRST_HALF);
}
@@ -174,8 +177,8 @@
*/
@Test
public void testThirdSliderMouse() {
- assertTrue(Math.abs(getOffset(LOC_THIRD_HANDLE + "@style") - 225) < 2, format(MSG_HANDLE_N_PX, 225));
- assertTrue(Math.abs(getOffset(LOC_THIRD_TIP + "@style") - 225) < 2, format(MSG_TIP_N_PX, 225));
+ assertTrue(Math.abs(getOffset(LOC_THIRD_HANDLE + "@style") - 225) < DELTA, format(MSG_HANDLE_N_PX, 225));
+ assertTrue(Math.abs(getOffset(LOC_THIRD_TIP + "@style") - 225) < DELTA, format(MSG_TIP_N_PX, 225));
assertFalse(isDisplayed(LOC_THIRD_TIP), MSG_TIP_SHOULD_NOT_BE_VISIBLE);
selenium.mouseDownAt(LOC_THIRD, "20,3");
@@ -188,7 +191,7 @@
int value = Integer.parseInt(selenium.getValue(LOC_THIRD_INPUT));
assertEquals(tipOffset, handleOffset, MSG_OFFSETS_SHOULD_BE_THE_SAME);
- assertTrue(Math.abs(tipOffset - value * 0.46) < 12, MSG_TIP_FIRST_HALF);
+ assertTrue(Math.abs(tipOffset - value * 0.46) < DELTA, MSG_TIP_FIRST_HALF);
assertTrue(handleOffset < 75, MSG_HANDLE_FIRST_HALF);
}
@@ -216,7 +219,7 @@
handleOffset = getOffset(LOC_THIRD_HANDLE + "@style");
assertEquals(tipOffset, handleOffset, MSG_OFFSETS_SHOULD_BE_THE_SAME);
- assertTrue(Math.abs(tipOffset - 0.69 * 450) < 5, MSG_TIP_SECOND_HALF);
+ assertTrue(Math.abs(tipOffset - 0.69 * 450) < DELTA, MSG_TIP_SECOND_HALF);
assertTrue(handleOffset > 75, MSG_HANDLE_SECOND_HALF);
selenium.type(LOC_THIRD_INPUT, "0");
15 years, 1 month
JBoss Rich Faces SVN: r15920 - root/ui/trunk.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-11-18 09:07:12 -0500 (Wed, 18 Nov 2009)
New Revision: 15920
Modified:
root/ui/trunk/pom.xml
Log:
https://jira.jboss.org/jira/browse/RF-7732
Modified: root/ui/trunk/pom.xml
===================================================================
--- root/ui/trunk/pom.xml 2009-11-18 14:00:27 UTC (rev 15919)
+++ root/ui/trunk/pom.xml 2009-11-18 14:07:12 UTC (rev 15920)
@@ -23,12 +23,12 @@
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
<executions>
- <execution>
+ <!--execution>
<phase>generate-sources</phase>
<goals>
<goal>compile-templates</goal>
</goals>
- </execution>
+ </execution-->
<!--execution>
<id>generate-test-sources</id>
<phase>generate-test-sources</phase>
15 years, 1 month
JBoss Rich Faces SVN: r15918 - in branches/community/3.3.X/samples/richfaces-demo/src/main: webapp/richfaces/dropDownMenu/examples and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2009-11-18 08:48:15 -0500 (Wed, 18 Nov 2009)
New Revision: 15918
Modified:
branches/community/3.3.X/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
branches/community/3.3.X/samples/richfaces-demo/src/main/webapp/richfaces/dropDownMenu/examples/topmenu.xhtml
Log:
https://jira.jboss.org/jira/browse/RF-8047
Modified: branches/community/3.3.X/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2009-11-18 13:43:56 UTC (rev 15917)
+++ branches/community/3.3.X/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2009-11-18 13:48:15 UTC (rev 15918)
@@ -30,7 +30,7 @@
panelMenu= richOutputs, Panel Menu, /images/ico_panelMenu.gif, /images/cn_PanelMenu.gif, rich_panelMenu.html, rich/panelMenu.html, org/richfaces/component/UIPanelMenu.html, /richfaces/panelMenu.jsf
suggestionBox= richInputs, Suggestion Box, /images/ico_SuggestionBox.gif, /images/cn_SuggestionBox.gif, rich_suggestionbox.html, rich/suggestionbox.html, org/richfaces/component/UISuggestionBox.html, /richfaces/suggestionBox.jsf
dataTableScroller= richDataIterators, Data Scroller, /images/ico_DataTableScroller.gif, /images/cn_DataTableScroller.gif, rich_datascroller.html, rich/datascroller.html, org/richfaces/component/UIDatascroller.html, /richfaces/dataTableScroller.jsf
-dropDownMenu= richMenu, Drop Down Menu, /images/ico_DropDownMenu.gif, /images/cn_DropDownMenu.gif, rich_dropDownMenu.html, rich/dropDownMenu.html, org/richfaces/component/UIDropDownMenu.html, /richfaces/dropDownMenu.jsf
+dropDownMenu= richMenu, Drop Down Menu, /images/ico_DropDownMenu.gif, /images/cn_DropDownMenu.gif, rich_dropDownMenu.html, rich/dropDownMenu.html, org/richfaces/component/UIDropDownMenu.html, /richfaces/dropDownMenu.jsf, new
menuGroup= richMenu, Menu Group, /images/ico_MenuGroup.gif, /images/cn_MenuGroup.gif, rich_menuGroup.html, rich/menuGroup.html, org/richfaces/component/UIMenuGroup.html, /richfaces/dropDownMenu.jsf
menuItem= richMenu, Menu Item, /images/ico_MenuItem.gif, /images/cn_MenuItem.gif, rich_menuItem.html, rich/menuItem.html, org/richfaces/component/UIMenuItem.html, /richfaces/dropDownMenu.jsf
menuSeparator= richMenu, Menu Separator, /images/ico_MenuSeparator.gif, /images/cn_MenuSeparator.gif, rich_menuSeparator.html, rich/menuSeparator.html, org/richfaces/component/UIMenuSeparator.html, /richfaces/dropDownMenu.jsf
@@ -48,7 +48,7 @@
commandButton= ajaxSupport, Command Button, /images/ico_common.gif, /images/cn_commandButton.gif, a4j_commandButton.html, a4j/commandButton.html, org/ajax4jsf/component/UIAjaxCommandButton.html, /richfaces/commandButton.jsf
commandLink= ajaxSupport, Command Link, /images/ico_common.gif, /images/cn_commandLink.gif, a4j_commandLink.html, a4j/commandLink.html, org/ajax4jsf/component/UIAjaxCommandLink.html, /richfaces/commandLink.jsf
form= ajaxSupport, Ajax Form, /images/ico_common.gif, /images/cn_ajaxForm.gif, a4j_form.html, a4j/form.html, org/ajax4jsf/component/UIAjaxForm.html, /richfaces/form.jsf
-support= ajaxSupport, Ajax Support, /images/ico_common.gif, /images/cn_ajaxSupport.gif, a4j_support.html, a4j/support.html, org/ajax4jsf/component/UIAjaxSupport.html, /richfaces/support.jsf
+support= ajaxSupport, Ajax Support, /images/ico_common.gif, /images/cn_ajaxSupport.gif, a4j_support.html, \t\t a4j/support.html, \t\t\t\t\t\t\t\t\torg/ajax4jsf/component/UIAjaxSupport.html, /richfaces/support.jsf
jsFunction= ajaxSupport, JS Function, /images/ico_common.gif, /images/cn_jsFunction.gif, a4j_jsFunction.html, a4j/jsFunction.html, org/ajax4jsf/component/UIAjaxFunction.html, /richfaces/jsFunction.jsf
poll= ajaxSupport, Poll, /images/ico_common.gif, /images/cn_poll.gif, a4j_poll.html, a4j/poll.html, org/ajax4jsf/component/UIPoll.html, /richfaces/poll.jsf
push= ajaxSupport, Push, /images/ico_common.gif, /images/cn_push.gif, a4j_push.html, a4j/push.html, org/ajax4jsf/component/UIPush.html, /richfaces/push.jsf , new
Modified: branches/community/3.3.X/samples/richfaces-demo/src/main/webapp/richfaces/dropDownMenu/examples/topmenu.xhtml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/src/main/webapp/richfaces/dropDownMenu/examples/topmenu.xhtml 2009-11-18 13:43:56 UTC (rev 15917)
+++ branches/community/3.3.X/samples/richfaces-demo/src/main/webapp/richfaces/dropDownMenu/examples/topmenu.xhtml 2009-11-18 13:48:15 UTC (rev 15918)
@@ -10,7 +10,12 @@
margin-bottom: -4px;
margin-right: 2px;
}
+ .search .rich-menu-item-hover{
+ background-color: transparent;
+ border-color: transparent;
+ }
</style>
+
<h:form>
<rich:toolBar>
@@ -70,6 +75,15 @@
</rich:menuItem>
</rich:dropDownMenu>
+ <rich:toolBarGroup location="right">
+ <rich:dropDownMenu value="Search" direction="bottom-left" jointPoint="br" styleClass="search">
+ <rich:menuItem submitMode="none">
+ <h:inputText value="" id="searchinput"/>
+ <button type="button">Search</button>
+ </rich:menuItem>
+ <rich:menuItem value="Enter your search criteria here" disabled="true"></rich:menuItem>
+ </rich:dropDownMenu>
+ </rich:toolBarGroup>
</rich:toolBar>
</h:form>
<rich:spacer width="1" height="5"/>
15 years, 1 month
JBoss Rich Faces SVN: r15917 - branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/colorPicker.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2009-11-18 08:43:56 -0500 (Wed, 18 Nov 2009)
New Revision: 15917
Modified:
branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/colorPicker/ColorPickerTestCase.java
Log:
https://jira.jboss.org/jira/browse/RF-8075
* test case refactored to be more platform-independent
Modified: branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/colorPicker/ColorPickerTestCase.java
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/colorPicker/ColorPickerTestCase.java 2009-11-18 10:33:01 UTC (rev 15916)
+++ branches/community/3.3.X/samples/richfaces-demo/functional-test/src/test/java/org/jboss/richfaces/integrationTest/colorPicker/ColorPickerTestCase.java 2009-11-18 13:43:56 UTC (rev 15917)
@@ -33,6 +33,8 @@
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
+import java.util.HashMap;
+import java.util.Map;
import javax.imageio.ImageIO;
@@ -125,14 +127,12 @@
*/
@Test
public void testInitialState() {
- String url = selenium.getAttribute(LOC_IMAGE + "@src");
-
- // get color of the pixel from the image
- Color imageColor = getPixelColor(url, 18, 97);
// get color from the input field
Color inputColor = createColor(selenium.getValue(LOC_COLOR_INPUT).substring(1));
- assertEquals(imageColor, inputColor, "Image should have the same color as the one defined in input field.");
+ Map<Color, Integer> histogram = getHistogram();
+ assertTrue(histogram.containsKey(inputColor),
+ "Image should have the same color as the one defined in input field.");
// get color of the button
String attr = getStyle(LOC_COLOR_BUTTON, "background-color").replace("rgb(", "").replace(")", "");
@@ -142,7 +142,7 @@
values[i] = Integer.parseInt(attr.split(",")[i].trim());
}
- assertEquals(imageColor, new Color(values[0], values[1], values[2]),
+ assertTrue(histogram.containsKey(new Color(values[0], values[1], values[2])),
"Image should have the same color as the button.");
}
@@ -155,14 +155,13 @@
selenium.click(LOC_COLOR_BUTTON);
selenium.mouseDownAt(LOC_COLOR_AREA, "50,50");
selenium.click(LOC_APPLY_BUTTON);
- waitFor(500);
-
- String url = selenium.getAttribute(LOC_IMAGE + "@src");
+ waitFor(1500);
- Color imageColor = getPixelColor(url, 18, 97);
+ Map<Color, Integer> histogram = getHistogram();
Color inputColor = createColor(selenium.getValue(LOC_COLOR_INPUT).substring(1));
- assertEquals(imageColor, inputColor, "Image should have the same color as the one defined in input field.");
+ assertTrue(histogram.containsKey(inputColor),
+ "Image should have the same color as the one defined in input field.");
}
/**
@@ -370,9 +369,8 @@
Color newColor = createColor(selenium.getValue(LOC_COLOR_INPUT).substring(1));
assertEquals(newColor, original, "Color in input should not change after clicking on \"Cancel\"");
- String url = selenium.getAttribute(LOC_IMAGE + "@src");
- Color imageColor = getPixelColor(url, 18, 97);
- assertEquals(imageColor, original, "Color of image should not change after clicking on \"Cancel\"");
+ Map<Color, Integer> histogram = getHistogram();
+ assertTrue(histogram.containsKey(original), "Color of image should not change after clicking on \"Cancel\"");
}
/**
@@ -522,17 +520,14 @@
}
/**
- * Returns the color of the pixel with specified coordinates.
+ * Creates a histogram of colors contained in the image. It reads 6 lines of
+ * the image where letters, shadow and background should be present.
*
- * @param url
- * relative URL of the image
- * @param x
- * the horizontal coordinate of the pixel
- * @param y
- * the vertical coordinate of the pixel
- * @return color of the pixel
+ * @return map containg each color of the image and how many pixels are of
+ * that color
*/
- private Color getPixelColor(String url, int x, int y) {
+ private Map<Color, Integer> getHistogram() {
+ String url = selenium.getAttribute(LOC_IMAGE + "@src");
// the index of first '/' not counting http://
int index = selenium.getLocation().indexOf('/', 7);
url = selenium.getLocation().substring(0, index) + url;
@@ -547,12 +542,32 @@
e.printStackTrace();
fail("Could not read image.");
}
- int c = image.getRGB(18, 97);
- int red = (c & 0x00ff0000) >> 16;
- int green = (c & 0x0000ff00) >> 8;
- int blue = c & 0x000000ff;
- return new Color(red, green, blue);
+ Map<Integer, Integer> result = new HashMap<Integer, Integer>();
+
+ int width = image.getWidth();
+ int color = 0;
+
+ for (int y = 95; y < 101; y++) {
+ for (int x = 0; x < width; x++) {
+ color = image.getRGB(x, y);
+ if (result.containsKey(color)) {
+ result.put(color, result.get(color) + 1);
+ } else {
+ result.put(color, 1);
+ }
+ }
+ }
+
+ Map<Color, Integer> colors = new HashMap<Color, Integer>();
+ for (int key : result.keySet()) {
+ int red = (key & 0x00ff0000) >> 16;
+ int green = (key & 0x0000ff00) >> 8;
+ int blue = key & 0x000000ff;
+ colors.put(new Color(red, green, blue), result.get(key));
+ }
+
+ return colors;
}
/**
15 years, 1 month
JBoss Rich Faces SVN: r15916 - branches/sandbox/3.3.X_JSF2.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2009-11-18 05:33:01 -0500 (Wed, 18 Nov 2009)
New Revision: 15916
Modified:
branches/sandbox/3.3.X_JSF2/pom.xml
Log:
change version to 3.3.3-jsf2
Modified: branches/sandbox/3.3.X_JSF2/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
+++ branches/sandbox/3.3.X_JSF2/pom.xml 2009-11-18 10:33:01 UTC (rev 15916)
@@ -2,10 +2,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>root</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<packaging>pom</packaging>
+
<name>Jboss RichFaces project</name>
- <version>3.3.3-SNAPSHOT</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
+
<properties>
<snapshotRepository>
dav:https://snapshots.jboss.org/maven2
15 years, 1 month
JBoss Rich Faces SVN: r15915 - in branches/sandbox/3.3.X_JSF2/ui: assembly and 52 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2009-11-18 05:24:38 -0500 (Wed, 18 Nov 2009)
New Revision: 15915
Modified:
branches/sandbox/3.3.X_JSF2/ui/assembly/pom.xml
branches/sandbox/3.3.X_JSF2/ui/beanValidator/pom.xml
branches/sandbox/3.3.X_JSF2/ui/calendar/pom.xml
branches/sandbox/3.3.X_JSF2/ui/colorPicker/pom.xml
branches/sandbox/3.3.X_JSF2/ui/columns/pom.xml
branches/sandbox/3.3.X_JSF2/ui/combobox/pom.xml
branches/sandbox/3.3.X_JSF2/ui/componentControl/pom.xml
branches/sandbox/3.3.X_JSF2/ui/contextMenu/pom.xml
branches/sandbox/3.3.X_JSF2/ui/core/pom.xml
branches/sandbox/3.3.X_JSF2/ui/dataFilterSlider/pom.xml
branches/sandbox/3.3.X_JSF2/ui/dataTable/pom.xml
branches/sandbox/3.3.X_JSF2/ui/datascroller/pom.xml
branches/sandbox/3.3.X_JSF2/ui/drag-drop/pom.xml
branches/sandbox/3.3.X_JSF2/ui/dropdown-menu/pom.xml
branches/sandbox/3.3.X_JSF2/ui/editor/pom.xml
branches/sandbox/3.3.X_JSF2/ui/effect/pom.xml
branches/sandbox/3.3.X_JSF2/ui/extendedDataTable/pom.xml
branches/sandbox/3.3.X_JSF2/ui/fileUpload/pom.xml
branches/sandbox/3.3.X_JSF2/ui/functions/pom.xml
branches/sandbox/3.3.X_JSF2/ui/gmap/pom.xml
branches/sandbox/3.3.X_JSF2/ui/hotKey/pom.xml
branches/sandbox/3.3.X_JSF2/ui/inplaceInput/pom.xml
branches/sandbox/3.3.X_JSF2/ui/inplaceSelect/pom.xml
branches/sandbox/3.3.X_JSF2/ui/inputnumber-slider/pom.xml
branches/sandbox/3.3.X_JSF2/ui/inputnumber-spinner/pom.xml
branches/sandbox/3.3.X_JSF2/ui/insert/pom.xml
branches/sandbox/3.3.X_JSF2/ui/jQuery/pom.xml
branches/sandbox/3.3.X_JSF2/ui/layout/pom.xml
branches/sandbox/3.3.X_JSF2/ui/listShuttle/pom.xml
branches/sandbox/3.3.X_JSF2/ui/menu-components/pom.xml
branches/sandbox/3.3.X_JSF2/ui/message/pom.xml
branches/sandbox/3.3.X_JSF2/ui/modal-panel/pom.xml
branches/sandbox/3.3.X_JSF2/ui/orderingList/pom.xml
branches/sandbox/3.3.X_JSF2/ui/paint2D/pom.xml
branches/sandbox/3.3.X_JSF2/ui/panel/pom.xml
branches/sandbox/3.3.X_JSF2/ui/panelbar/pom.xml
branches/sandbox/3.3.X_JSF2/ui/panelmenu/pom.xml
branches/sandbox/3.3.X_JSF2/ui/pickList/pom.xml
branches/sandbox/3.3.X_JSF2/ui/pom.xml
branches/sandbox/3.3.X_JSF2/ui/progressBAR/pom.xml
branches/sandbox/3.3.X_JSF2/ui/scrollableDataTable/pom.xml
branches/sandbox/3.3.X_JSF2/ui/separator/pom.xml
branches/sandbox/3.3.X_JSF2/ui/simpleTogglePanel/pom.xml
branches/sandbox/3.3.X_JSF2/ui/spacer/pom.xml
branches/sandbox/3.3.X_JSF2/ui/state/pom.xml
branches/sandbox/3.3.X_JSF2/ui/suggestionbox/pom.xml
branches/sandbox/3.3.X_JSF2/ui/tabPanel/pom.xml
branches/sandbox/3.3.X_JSF2/ui/togglePanel/pom.xml
branches/sandbox/3.3.X_JSF2/ui/toolBar/pom.xml
branches/sandbox/3.3.X_JSF2/ui/tooltip/pom.xml
branches/sandbox/3.3.X_JSF2/ui/tree/pom.xml
branches/sandbox/3.3.X_JSF2/ui/treeModel/pom.xml
branches/sandbox/3.3.X_JSF2/ui/treeTable/pom.xml
branches/sandbox/3.3.X_JSF2/ui/virtualEarth/pom.xml
Log:
change version to 3.3.3-jsf2
Modified: branches/sandbox/3.3.X_JSF2/ui/assembly/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/assembly/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/assembly/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
@@ -106,7 +106,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<goals>
@@ -434,4 +434,4 @@
</profile>
</profiles>
<dependencies />
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/beanValidator/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/beanValidator/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/beanValidator/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -1,82 +1,82 @@
-<?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>beanValidator</artifactId>
- <name>beanValidator</name>
- <version>3.3.3-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>beanValidator</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.3-jsf2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>message</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-validator</artifactId>
- <version>3.1.0.GA</version>
- <exclusions>
- <!--
- <exclusion> <artifactId>hibernate-core</artifactId>
- <groupId>org.hibernate</groupId> </exclusion> <exclusion>
- <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId>
- </exclusion>
- -->
- </exclusions>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>javax.validation</groupId>
- <artifactId>validation-api</artifactId>
- <version>1.0.CR3</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>1.4.2</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
+<?xml version="1.0"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>beanValidator</artifactId>
+ <name>beanValidator</name>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>beanValidator</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>message</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-validator</artifactId>
+ <version>3.1.0.GA</version>
+ <exclusions>
+ <!--
+ <exclusion> <artifactId>hibernate-core</artifactId>
+ <groupId>org.hibernate</groupId> </exclusion> <exclusion>
+ <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId>
+ </exclusion>
+ -->
+ </exclusions>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>javax.validation</groupId>
+ <artifactId>validation-api</artifactId>
+ <version>1.0.CR3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.4.2</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/calendar/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/calendar/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/calendar/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/colorPicker/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/colorPicker/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/colorPicker/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -1,55 +1,55 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>colorPicker</artifactId>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- <execution>
- <id>generate-test-sources</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>generate-tests</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>colorPicker</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.3-jsf2-SNAPSHOT</version>
- </dependency>
- </dependencies>
-</project>
+<?xml version="1.0"?><project>
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>colorPicker</artifactId>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>generate-test-sources</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate-tests</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>colorPicker</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/columns/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/columns/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/columns/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -57,4 +57,4 @@
<scope>test</scope>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/combobox/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/combobox/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/combobox/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -56,8 +56,8 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/componentControl/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/componentControl/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/componentControl/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,4 +53,4 @@
<version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/contextMenu/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/contextMenu/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/contextMenu/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -56,7 +56,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/core/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/core/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/core/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,4 +44,4 @@
</build>
<dependencies>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/dataFilterSlider/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/dataFilterSlider/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -14,7 +14,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -48,4 +48,4 @@
<version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/dataTable/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/dataTable/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/dataTable/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,8 +45,8 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
-->
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/datascroller/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/datascroller/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/datascroller/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -47,4 +47,4 @@
<version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/drag-drop/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/drag-drop/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/drag-drop/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,8 +45,8 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
-->
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/dropdown-menu/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/dropdown-menu/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/dropdown-menu/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -49,7 +49,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/editor/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/editor/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/editor/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -77,4 +77,4 @@
<scope>provided</scope>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/effect/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/effect/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/effect/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -42,4 +42,4 @@
</build>
<dependencies>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/extendedDataTable/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/extendedDataTable/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/extendedDataTable/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,34 +2,34 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>extendedDataTable</artifactId>
- <name>extendedDataTable</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <shortName>extendedDataTable</shortName>
- </taglib>
- </library>
- </configuration>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>extendedDataTable</artifactId>
+ <name>extendedDataTable</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <shortName>extendedDataTable</shortName>
+ </taglib>
+ </library>
+ </configuration>
</plugin>
<plugin>
@@ -57,52 +57,52 @@
</execution>
</executions>
</plugin>
-
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.3-jsf2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>drag-drop</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>dataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>menu-components</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>contextMenu</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>jQuery</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>componentControl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>scrollableDataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>drag-drop</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>dataTable</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>menu-components</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>contextMenu</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>jQuery</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>componentControl</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>scrollableDataTable</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/fileUpload/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/fileUpload/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/fileUpload/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -56,7 +56,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/functions/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/functions/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/functions/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -40,4 +40,4 @@
<version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/gmap/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/gmap/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/gmap/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -42,4 +42,4 @@
</build>
<dependencies>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/hotKey/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/hotKey/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/hotKey/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -1,56 +1,56 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>hotKey</artifactId>
- <name>hotKey</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- <execution>
- <id>generate-test-sources</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>generate-tests</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <shortName>hotKey</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.3-jsf2-SNAPSHOT</version>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
+<?xml version="1.0"?><project>
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>hotKey</artifactId>
+ <name>hotKey</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>generate-test-sources</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate-tests</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <shortName>hotKey</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/inplaceInput/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/inplaceInput/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/inplaceInput/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -56,12 +56,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/inplaceSelect/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/inplaceSelect/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/inplaceSelect/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -61,13 +61,13 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/inputnumber-slider/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/inputnumber-slider/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,4 +43,4 @@
<dependencies>
<!-- -->
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/inputnumber-spinner/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/inputnumber-spinner/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -44,4 +44,4 @@
<dependencies>
<!-- -->
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/insert/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/insert/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/insert/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -41,4 +41,4 @@
<optional>true</optional>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/jQuery/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/jQuery/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/jQuery/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -42,4 +42,4 @@
</build>
<dependencies>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/layout/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/layout/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/layout/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -1,54 +1,54 @@
-<?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
- </parent>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>layout</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- <name>layout</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- <executions>
- <execution>
- <id>generate-sources</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- <execution>
- <id>generate-test-sources</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>generate-tests</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <uri>http://richfaces.org/layout</uri>
- <shortName>layout</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.3-jsf2-SNAPSHOT</version>
- </dependency>
- </dependencies>
-</project>
+<?xml version="1.0"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </parent>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>layout</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ <name>layout</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <id>generate-sources</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>generate-test-sources</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate-tests</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <uri>http://richfaces.org/layout</uri>
+ <shortName>layout</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/listShuttle/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/listShuttle/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/listShuttle/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -47,4 +47,4 @@
<version>${project.version}</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/menu-components/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/menu-components/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/menu-components/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -47,4 +47,4 @@
<version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/message/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/message/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/message/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -48,4 +48,4 @@
<version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/modal-panel/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/modal-panel/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/modal-panel/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,4 +43,4 @@
<dependencies>
<!-- -->
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/orderingList/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/orderingList/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/orderingList/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -48,4 +48,4 @@
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/paint2D/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/paint2D/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/paint2D/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -40,4 +40,4 @@
</plugin>
</plugins>
</build>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/panel/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/panel/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/panel/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -49,4 +49,4 @@
</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/panelbar/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/panelbar/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/panelbar/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,4 +43,4 @@
<dependencies>
<!-- -->
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/panelmenu/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/panelmenu/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/panelmenu/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -47,4 +47,4 @@
<version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/pickList/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/pickList/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/pickList/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -66,14 +66,14 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -218,4 +218,4 @@
<scope>provided</scope>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/progressBAR/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/progressBAR/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/progressBAR/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/scrollableDataTable/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/scrollableDataTable/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -75,12 +75,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/separator/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/separator/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/separator/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,4 +45,4 @@
<dependencies>
<!-- -->
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/simpleTogglePanel/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/simpleTogglePanel/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -47,4 +47,4 @@
<version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/spacer/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/spacer/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/spacer/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -47,4 +47,4 @@
<version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/state/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/state/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/state/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -1,43 +1,43 @@
-<?xml version="1.0"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>state</artifactId>
- <name>state</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>state</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.3-jsf2-SNAPSHOT</version>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
+<?xml version="1.0"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>state</artifactId>
+ <name>state</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>state</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/suggestionbox/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/suggestionbox/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/suggestionbox/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -47,4 +47,4 @@
<version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/tabPanel/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/tabPanel/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/tabPanel/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -47,4 +47,4 @@
<version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/togglePanel/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/togglePanel/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/togglePanel/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -47,4 +47,4 @@
<version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/toolBar/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/toolBar/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/toolBar/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -47,4 +47,4 @@
<version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/tooltip/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/tooltip/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/tooltip/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -47,4 +47,4 @@
<version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/tree/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/tree/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/tree/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/treeModel/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/treeModel/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/treeModel/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/treeTable/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/treeTable/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/treeTable/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -1,37 +1,37 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces</groupId>
- <artifactId>treeTable</artifactId>
- <name>treeTable</name>
- <version>3.3.3-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <shortName>treeTable</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
-</project>
\ No newline at end of file
+<?xml version="1.0"?><project>
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces</groupId>
+ <artifactId>treeTable</artifactId>
+ <name>treeTable</name>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <shortName>treeTable</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Modified: branches/sandbox/3.3.X_JSF2/ui/virtualEarth/pom.xml
===================================================================
--- branches/sandbox/3.3.X_JSF2/ui/virtualEarth/pom.xml 2009-11-18 10:21:55 UTC (rev 15914)
+++ branches/sandbox/3.3.X_JSF2/ui/virtualEarth/pom.xml 2009-11-18 10:24:38 UTC (rev 15915)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3-jsf2-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -42,4 +42,4 @@
</build>
<dependencies>
</dependencies>
-</project>
\ No newline at end of file
+</project>
15 years, 1 month