dlestrat 2004/04/28 19:53:44 Modified: portal project.properties Log: Applying patch from Ate Douma regarding JS2-18: Cannot run J2 using
Oracle due to problems with OBJ, Torque and dependencies on HSQLDB. Needed to add maven.test.dest property for maven.rc1 support. Revision Changes Path 1.11 +25 -11 jakarta-jetspeed-2/portal/project.properties Index: project.properties =================================================================== RCS file: /home/cvs/jakarta-jetspeed-2/portal/project.properties,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- project.properties 3 Apr 2004 03:49:46 -0000 1.10 +++ project.properties 29 Apr 2004 02:53:44 -0000 1.11 @@ -3,9 +3,9 @@ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at -# +# # http://www.apache.org/licenses/LICENSE-2.0 -# +# # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -15,6 +15,9 @@ # Remote repos maven.repo.remote = http://www.bluesunrise.com/maven/, http://www.ibiblio.org/maven/ +# Maven test-classes destination directory +maven.test.dest=${maven.build.dir}/test-classes + # Display the date on the Maven web site maven.xdoc.date = left @@ -47,18 +50,29 @@ org.apache.jetspeed.database.user \ org.apache.jetspeed.database.password \ java.security.auth.login.config \ -applicationRoot +applicationRoot \ +p6.home + +org.apache.jetspeed.test.database.url = jdbc:hsqldb:hsql://127.0.0.1:9001 +org.apache.jetspeed.test.database.driver = org.hsqldb.jdbcDriver +org.apache.jetspeed.test.database.user = sa +org.apache.jetspeed.test.database.password = + +org.apache.jetspeed.test.jdbc.drivers.path= +org.apache.jetspeed.test.database.default.name=hsql +org.apache.jetspeed.test.database.ojb.platform=Hsqldb + +org.apache.jetspeed.production.database.url = jdbc:hsqldb:hsql://127.0.0.1:9001 +org.apache.jetspeed.production.database.driver = org.hsqldb.jdbcDriver +org.apache.jetspeed.production.database.user = sa +org.apache.jetspeed.production.database.password = + +org.apache.jetspeed.production.jdbc.drivers.path= +org.apache.jetspeed.production.database.default.name=hsql +org.apache.jetspeed.production.database.ojb.platform=Hsqldb -org.apache.jetspeed.database.url = jdbc:hsqldb:hsql://127.0.0.1:9001 -org.apache.jetspeed.database.driver = org.hsqldb.jdbcDriver -org.apache.jetspeed.database.user = sa -org.apache.jetspeed.database.password = java.security.auth.login.config = ../services/security/src/webapp/WEB-INF/conf/jaas/login.conf applicationRoot = src/webapp - - - -database.default.name=hsql deploy.war.dir=/apache/tomcat5/webapps webapp.name=jetspeed --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
