| # ------------------------------------------------------------------------ |
| # |
| # Setup for a new Turbine Application |
| # |
| # $Id$ |
| # |
| # ------------------------------------------------------------------------ |
| |
| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you 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. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| # |
| # Defaults for the plugin parameters. These are described in depth in |
| # the documentation. If you find any parameter in this file which is |
| # missing in the documentation, please report this to the Turbine |
| # development mailing list at turbine-dev@jakarta.apache.org |
| # |
| |
| # application type. Default: turbine-2.3.3 |
| turbine.app.flavor = turbine-2.3.3 |
| |
| # application mode. Default: normal |
| turbine.plugin.mode = normal |
| |
| # application package. Default: derived from the application name |
| turbine.app.package = org.apache.turbine.app.${turbine.app.name} |
| |
| # which OM layer to use (torque, none) |
| turbine.app.om.layer = torque |
| |
| # name of the datasource for the OM classes. Default: same as the application name |
| turbine.app.om.name = ${turbine.app.name} |
| |
| # package for the OM classes. Default: derived from the application package |
| turbine.app.om.package = org.apache.turbine.app.${turbine.app.name}.om |
| |
| # name of the datasource for the OM classes. Default: same as the application datasource |
| turbine.app.om.security.name = ${turbine.app.om.name} |
| |
| # package for the security OM classes. Default: same as the application package |
| turbine.app.om.security.package = ${turbine.app.om.package} |
| |
| # create the new application in a subdirectory |
| turbine.app.subdir = true |
| |
| # Install the Welcome pages by default |
| turbine.app.setup.demo = true |
| |
| # Create id table SQL by default |
| turbine.app.torque.use.idtable = true |
| |
| # use Tomcat Application Server |
| maven.appserver.name = tomcat |
| |
| # use PostgreSQL as the default database |
| torque.database = postgresql |
| |
| # don't skip any part of the Turbine deployment |
| turbine.plugin.deploy.config.skip = false |
| turbine.plugin.deploy.images.skip = false |
| turbine.plugin.deploy.pages.skip = false |
| turbine.plugin.deploy.resources.skip = false |
| turbine.plugin.deploy.scripts.skip = false |
| turbine.plugin.deploy.style.skip = false |
| turbine.plugin.deploy.templates.skip = false |