This is an automated email from the ASF dual-hosted git repository.
mthl pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git The following commit(s) were added to refs/heads/trunk by this push: new 1158664 Fixed: Add XML declaration in “web.xml” files (OFBIZ-6993) 1158664 is described below commit 1158664ba37264fa6b8429033bad768175ff10d5 Author: Mathieu Lirzin <[hidden email]> AuthorDate: Sat Dec 7 22:52:30 2019 +0100 Fixed: Add XML declaration in “web.xml” files (OFBIZ-6993) These declarations avoid SAXParseException traceback when parsing web.xml the first time in WebappUtil.parseWebXmlFile A schema conformance issue has been fixed in ecommerce “web.xml”. --- assetmaint/webapp/assetmaint/WEB-INF/web.xml | 2 +- assetmaint/webapp/ismgr/WEB-INF/web.xml | 2 +- bi/webapp/bi/WEB-INF/web.xml | 2 +- birt/webapp/accounting/WEB-INF/web.xml | 2 +- birt/webapp/birt/WEB-INF/web.xml | 2 +- birt/webapp/facility/WEB-INF/web.xml | 2 +- birt/webapp/ordermgr/WEB-INF/web.xml | 2 +- cmssite/webapp/cmssite/WEB-INF/web.xml | 2 +- ebay/webapp/ebay/WEB-INF/web.xml | 2 +- ebaystore/webapp/ebaystore/WEB-INF/web.xml | 2 +- ecommerce/webapp/ecommerce/WEB-INF/web.xml | 4 ++-- ecommerce/webapp/ecomseo/WEB-INF/web.xml | 2 +- example/webapp/example/WEB-INF/web.xml | 2 +- exampleext/webapp/exampleext/WEB-INF/web.xml | 2 +- lucene/webapp/content/WEB-INF/web.xml | 2 +- msggateway/webapp/msggateway/WEB-INF/web.xml | 2 +- multiflex/webapp/multiflex/WEB-INF/web.xml | 2 +- myportal/webapp/myportal/WEB-INF/web.xml | 2 +- passport/webapp/passport/WEB-INF/web.xml | 2 +- pricat/webapp/pricat/WEB-INF/web.xml | 2 +- pricat/webapp/pricatdemo/WEB-INF/web.xml | 2 +- projectmgr/webapp/projectmgr/WEB-INF/web.xml | 2 +- scrum/webapp/demotest/WEB-INF/web.xml | 2 +- scrum/webapp/scrum/WEB-INF/web.xml | 2 +- solr/webapp/solr/WEB-INF/web.xml | 2 +- webpos/webapp/webpos/WEB-INF/web.xml | 2 +- 26 files changed, 27 insertions(+), 27 deletions(-) diff --git a/assetmaint/webapp/assetmaint/WEB-INF/web.xml b/assetmaint/webapp/assetmaint/WEB-INF/web.xml index 4954db3..b77dbfe 100644 --- a/assetmaint/webapp/assetmaint/WEB-INF/web.xml +++ b/assetmaint/webapp/assetmaint/WEB-INF/web.xml @@ -18,7 +18,7 @@ under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - Asset Maintenance</display-name> <description>Asset Management component of the Apache OFBiz Project</description> diff --git a/assetmaint/webapp/ismgr/WEB-INF/web.xml b/assetmaint/webapp/ismgr/WEB-INF/web.xml index 8ef59c1..2a2d462 100644 --- a/assetmaint/webapp/ismgr/WEB-INF/web.xml +++ b/assetmaint/webapp/ismgr/WEB-INF/web.xml @@ -18,7 +18,7 @@ under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - Information Systems</display-name> <description>Information Systems Management application of the Apache OFBiz Project</description> diff --git a/bi/webapp/bi/WEB-INF/web.xml b/bi/webapp/bi/WEB-INF/web.xml index a66166d..47f4646 100644 --- a/bi/webapp/bi/WEB-INF/web.xml +++ b/bi/webapp/bi/WEB-INF/web.xml @@ -18,7 +18,7 @@ under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - Business Intelligence</display-name> <description>Business Intelligence component of the Apache OFBiz Project</description> diff --git a/birt/webapp/accounting/WEB-INF/web.xml b/birt/webapp/accounting/WEB-INF/web.xml index e99c3ed..1f86b35 100644 --- a/birt/webapp/accounting/WEB-INF/web.xml +++ b/birt/webapp/accounting/WEB-INF/web.xml @@ -19,7 +19,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - Accounting Manager</display-name> <description>Accounting Manager Module of the Apache OFBiz Project</description> diff --git a/birt/webapp/birt/WEB-INF/web.xml b/birt/webapp/birt/WEB-INF/web.xml index f59f777..1056ac3 100644 --- a/birt/webapp/birt/WEB-INF/web.xml +++ b/birt/webapp/birt/WEB-INF/web.xml @@ -18,7 +18,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - BIRT Component</display-name> <description>BIRT Component of the Apache OFBiz Project</description> diff --git a/birt/webapp/facility/WEB-INF/web.xml b/birt/webapp/facility/WEB-INF/web.xml index f5a8a6d..9f426bf 100644 --- a/birt/webapp/facility/WEB-INF/web.xml +++ b/birt/webapp/facility/WEB-INF/web.xml @@ -19,7 +19,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - Facility Manager</display-name> <description>Facility Manager Module of the Apache OFBiz Project</description> diff --git a/birt/webapp/ordermgr/WEB-INF/web.xml b/birt/webapp/ordermgr/WEB-INF/web.xml index 2be64af..60d9b58 100644 --- a/birt/webapp/ordermgr/WEB-INF/web.xml +++ b/birt/webapp/ordermgr/WEB-INF/web.xml @@ -19,7 +19,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - Order Manager</display-name> <description>Order Manager Module of the Apache OFBiz Project</description> diff --git a/cmssite/webapp/cmssite/WEB-INF/web.xml b/cmssite/webapp/cmssite/WEB-INF/web.xml index aa62d0c..40f88c5 100644 --- a/cmssite/webapp/cmssite/WEB-INF/web.xml +++ b/cmssite/webapp/cmssite/WEB-INF/web.xml @@ -19,7 +19,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - CMS Site</display-name> <description>CMS Site for the Apache OFBiz Project</description> diff --git a/ebay/webapp/ebay/WEB-INF/web.xml b/ebay/webapp/ebay/WEB-INF/web.xml index b9d3647..13118e1 100644 --- a/ebay/webapp/ebay/WEB-INF/web.xml +++ b/ebay/webapp/ebay/WEB-INF/web.xml @@ -18,7 +18,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - Ebay</display-name> <description>eBay component of the Apache OFBiz Project</description> diff --git a/ebaystore/webapp/ebaystore/WEB-INF/web.xml b/ebaystore/webapp/ebaystore/WEB-INF/web.xml index aee3fce..ca2d340 100644 --- a/ebaystore/webapp/ebaystore/WEB-INF/web.xml +++ b/ebaystore/webapp/ebaystore/WEB-INF/web.xml @@ -18,7 +18,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - eBay Store</display-name> <description>eBay Store component of the Apache OFBiz Project</description> diff --git a/ecommerce/webapp/ecommerce/WEB-INF/web.xml b/ecommerce/webapp/ecommerce/WEB-INF/web.xml index 1b056a4..c299c6b 100644 --- a/ecommerce/webapp/ecommerce/WEB-INF/web.xml +++ b/ecommerce/webapp/ecommerce/WEB-INF/web.xml @@ -19,7 +19,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - demostore</display-name> <description>Demo Store for the Apache OFBiz Project</description> @@ -111,9 +111,9 @@ under the License. <listener><listener-class>org.apache.ofbiz.webapp.control.LoginEventListener</listener-class></listener> <servlet> + <description>Main Control Servlet</description> <display-name>ControlServlet</display-name> <servlet-name>ControlServlet</servlet-name> - <description>Main Control Servlet</description> <servlet-class>org.apache.ofbiz.webapp.control.ControlServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> diff --git a/ecommerce/webapp/ecomseo/WEB-INF/web.xml b/ecommerce/webapp/ecomseo/WEB-INF/web.xml index abf8de7..17c74b8 100644 --- a/ecommerce/webapp/ecomseo/WEB-INF/web.xml +++ b/ecommerce/webapp/ecomseo/WEB-INF/web.xml @@ -19,7 +19,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - demostore</display-name> <description>Demo Store for the Apache OFBiz Project</description> diff --git a/example/webapp/example/WEB-INF/web.xml b/example/webapp/example/WEB-INF/web.xml index 71933e9..8acd303 100644 --- a/example/webapp/example/WEB-INF/web.xml +++ b/example/webapp/example/WEB-INF/web.xml @@ -18,7 +18,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - Example Application</display-name> <description>Example Application of the Apache OFBiz Project</description> diff --git a/exampleext/webapp/exampleext/WEB-INF/web.xml b/exampleext/webapp/exampleext/WEB-INF/web.xml index 673e7d4..eb72228 100644 --- a/exampleext/webapp/exampleext/WEB-INF/web.xml +++ b/exampleext/webapp/exampleext/WEB-INF/web.xml @@ -18,7 +18,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - Extended Example Application</display-name> <description>Extended Example Application of the Apache OFBiz Project</description> diff --git a/lucene/webapp/content/WEB-INF/web.xml b/lucene/webapp/content/WEB-INF/web.xml index bec428d..3408913 100644 --- a/lucene/webapp/content/WEB-INF/web.xml +++ b/lucene/webapp/content/WEB-INF/web.xml @@ -19,7 +19,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - Lucene Component</display-name> <description>Lucene Component of the Apache OFBiz Project</description> diff --git a/msggateway/webapp/msggateway/WEB-INF/web.xml b/msggateway/webapp/msggateway/WEB-INF/web.xml index 33fc2b6..9066299 100644 --- a/msggateway/webapp/msggateway/WEB-INF/web.xml +++ b/msggateway/webapp/msggateway/WEB-INF/web.xml @@ -18,7 +18,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - MsgGateway Component</display-name> <description>MsgGateway Component of the Apache OFBiz Project</description> diff --git a/multiflex/webapp/multiflex/WEB-INF/web.xml b/multiflex/webapp/multiflex/WEB-INF/web.xml index dfcb64a..40caa19 100644 --- a/multiflex/webapp/multiflex/WEB-INF/web.xml +++ b/multiflex/webapp/multiflex/WEB-INF/web.xml @@ -18,7 +18,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - multiflex Ecommerce Visual Theme</display-name> <description>multiflex Ecommerce Visual Theme</description> diff --git a/myportal/webapp/myportal/WEB-INF/web.xml b/myportal/webapp/myportal/WEB-INF/web.xml index 460f112..f1480d5 100644 --- a/myportal/webapp/myportal/WEB-INF/web.xml +++ b/myportal/webapp/myportal/WEB-INF/web.xml @@ -19,7 +19,7 @@ under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - My Page</display-name> <description>My Portal component of the Apache OFBiz Project</description> diff --git a/passport/webapp/passport/WEB-INF/web.xml b/passport/webapp/passport/WEB-INF/web.xml index cad5e4b..f73e4d9 100644 --- a/passport/webapp/passport/WEB-INF/web.xml +++ b/passport/webapp/passport/WEB-INF/web.xml @@ -19,7 +19,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - Passport Component</display-name> <description>Passport Component of the Apache OFBiz Project</description> </web-app> \ No newline at end of file diff --git a/pricat/webapp/pricat/WEB-INF/web.xml b/pricat/webapp/pricat/WEB-INF/web.xml index 8331605..29d64e9 100644 --- a/pricat/webapp/pricat/WEB-INF/web.xml +++ b/pricat/webapp/pricat/WEB-INF/web.xml @@ -18,7 +18,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - PriCat</display-name> <description>PriCat Application of the Apache OFBiz Project</description> diff --git a/pricat/webapp/pricatdemo/WEB-INF/web.xml b/pricat/webapp/pricatdemo/WEB-INF/web.xml index a928555..447883e 100644 --- a/pricat/webapp/pricatdemo/WEB-INF/web.xml +++ b/pricat/webapp/pricatdemo/WEB-INF/web.xml @@ -18,7 +18,7 @@ specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - PriCat Demo</display-name> <description>PriCat Demo Application of the Apache OFBiz Project</description> diff --git a/projectmgr/webapp/projectmgr/WEB-INF/web.xml b/projectmgr/webapp/projectmgr/WEB-INF/web.xml index 9898872..6cbf472 100644 --- a/projectmgr/webapp/projectmgr/WEB-INF/web.xml +++ b/projectmgr/webapp/projectmgr/WEB-INF/web.xml @@ -18,7 +18,7 @@ under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - Project Management</display-name> <description>Project Management component of the Apache OFBiz Project</description> diff --git a/scrum/webapp/demotest/WEB-INF/web.xml b/scrum/webapp/demotest/WEB-INF/web.xml index 259f07d..5c8b85d 100644 --- a/scrum/webapp/demotest/WEB-INF/web.xml +++ b/scrum/webapp/demotest/WEB-INF/web.xml @@ -17,7 +17,7 @@ KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - scrum Component</display-name> <description>scrum Component of the Apache OFBiz Project diff --git a/scrum/webapp/scrum/WEB-INF/web.xml b/scrum/webapp/scrum/WEB-INF/web.xml index 866ce44..11d7000 100644 --- a/scrum/webapp/scrum/WEB-INF/web.xml +++ b/scrum/webapp/scrum/WEB-INF/web.xml @@ -17,7 +17,7 @@ KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - scrum Component</display-name> <description>scrum Component of the Apache OFBiz Project</description> diff --git a/solr/webapp/solr/WEB-INF/web.xml b/solr/webapp/solr/WEB-INF/web.xml index 3f1f457..03b436d 100644 --- a/solr/webapp/solr/WEB-INF/web.xml +++ b/solr/webapp/solr/WEB-INF/web.xml @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - Solr Component</display-name> <description>Solr Component of the Apache OFBiz Project</description> diff --git a/webpos/webapp/webpos/WEB-INF/web.xml b/webpos/webapp/webpos/WEB-INF/web.xml index a58fe47..1be2f7e 100644 --- a/webpos/webapp/webpos/WEB-INF/web.xml +++ b/webpos/webapp/webpos/WEB-INF/web.xml @@ -18,7 +18,7 @@ under the License. --> -<web-app version="3.0"> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>Apache OFBiz - Web Pos</display-name> <description>Web Pos component of the Apache OFBiz Project</description> |
Free forum by Nabble | Edit this page |