Note: The maven-plugin currently only supports the Tomcat Server 5.0.x or 5.5.x
Property | Description | Default value |
---|---|---|
org.apache.jetspeed.server.home
|
The root folder of your Tomcat server
installation.
Example: ${CATALINA_HOME}/
.
|
no default |
org.apache.jetspeed.server.shared
|
The location of the shared jars in your Tomcat
installation.
Example:
${org.apache.jetspeed.server.home}/shared/lib/
|
no default |
org.apache.jetspeed.deploy.war.dir
|
The location of web applications in your Tomcat
installation.
Example:
${org.apache.jetspeed.server.home}/webapps/
|
no default |
org.apache.jetspeed.services.autodeployment.user
|
A Tomcat user with the manager role.
Used to access the Tomcat Manager application from within the portal, explained below. |
no default |
org.apache.jetspeed.services.autodeployment.password
|
The password of the Tomcat user above.
Used to access the Tomcat Manager application from within the portal, explained below. |
no default |
org.apache.jetspeed.catalina.version.major
|
The major version of the Tomcat server you are
using: 5 or 5.5
Example: 5.5
|
no default |
Jetspeed-2 and its maven-plugin uses, as well as provides, by default a HSQLDB database.
If you want to use a different database you will need to override the following properties:
Property | Description | Default value |
---|---|---|
org.apache.jetspeed.production.database.default.name
|
The type of database you are using. Used for sql
script generation with Torque.
Currently supported databases (with corresponding Torque target database name):
|
hsql |
org.apache.jetspeed.production.database.url
|
The jdbc connection url | jdbc:hsqldb:hsql://127.0.0.1:9001 |
org.apache.jetspeed.production.database.user
|
The database user name to connect with. | sa |
org.apache.jetspeed.production.database.password
|
The database user its password to connect with. | empty |
org.apache.jetspeed.production.database.driver
|
The jdbc driver class name | org.hsqldb.jdbcDriver |
org.apache.jetspeed.production.jdbc.drivers.path
|
A Java classpath style path to the jdbc driver
classes or jar(s) needed for connecting to the
database.
Example:
/lib/ojdbc14.jar;/lib/nls_charset12.jar
|
empty |