[JBoss JIRA] Created: (RF-10030) richfaces-showcase in appengine-web.xml Intellij Idea reports error on <system-properties>
by Ara Minosian (JIRA)
richfaces-showcase in appengine-web.xml Intellij Idea reports error on <system-properties>
------------------------------------------------------------------------------------------
Key: RF-10030
URL: https://issues.jboss.org/browse/RF-10030
Project: RichFaces
Issue Type: Quality Risk
Security Level: Public (Everyone can see)
Environment: Windows 7-64, GAE 1.4.0, local mode, Java(TM) SE Runtime Environment (build 1.6.0_22-b04), Intellij Idea 10 not free
Reporter: Ara Minosian
Priority: Minor
Original file:
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>richfaces-showcase</application>
<version>11</version>
<sessions-enabled>true</sessions-enabled>
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/classes/logging.properties"/>
</system-properties>
</appengine-web-app>
----------------------------------------------------------
should be:
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>richfaces-showcase</application>
<version>11</version>
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/classes/logging.properties"/>
</system-properties>
<sessions-enabled>true</sessions-enabled>
</appengine-web-app>
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years