config.properties revision 8d1791bef30ee93b0616a90971b348dd808a74ea
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# Licensed to the Apache Software Foundation (ASF) under one
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# or more contributor license agreements. See the NOTICE file
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# distributed with this work for additional information
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# regarding copyright ownership. The ASF licenses this file
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# to you under the Apache License, Version 2.0 (the
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# "License"); you may not use this file except in compliance
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# with the License. You may obtain a copy of the License at
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte#
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# http://www.apache.org/licenses/LICENSE-2.0
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte#
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# Unless required by applicable law or agreed to in writing,
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# software distributed under the License is distributed on an
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# KIND, either express or implied. See the License for the
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# specific language governing permissions and limitations
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# under the License.
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte#
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# Framework config properties.
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte#
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# To override the packages the framework exports by default from the
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# class path, set this variable.
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte#org.osgi.framework.system.packages=
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# To append packages to the default set of exported system packages,
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# set this value.
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forteorg.osgi.framework.system.packages.extra=sun.misc
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# The following property makes specified packages from the class path
93c20f2609342fd05f6625f16dfcb9348e7977f2Sukumar Swaminathan# available to all bundles. You should avoid using this property.
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forteorg.osgi.framework.bootdelegation=sun.*,com.sun.*,apple.*,com.apple.*
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# Felix tries to guess when to implicitly boot delegate in certain
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# situations to ease integration without outside code. This feature
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte# is enabled by default, uncomment the following line to disable it.
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte#felix.bootdelegation.implicit=false
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
# The following property explicitly specifies the location of the bundle
# cache, which defaults to "felix-cache" in the current working directory.
# If this value is not absolute, then the felix.cache.rootdir controls
# how the absolute location is calculated. (See buildNext property)
#org.osgi.framework.storage=${felix.cache.rootdir}/felix-cache
# The following property is used to convert a relative bundle cache
# location into an absolute one by specifying the root to prepend to
# the relative cache path. The default for this property is the
# current working directory.
#felix.cache.rootdir=${user.dir}
# The following property controls whether the bundle cache is flushed
# the first time the framework is initialized. Possible values are
# "none" and "onFirstInit"; the default is "none".
#org.osgi.framework.storage.clean=onFirstInit
# framework.service.urlhandlers - specifies whether or not to activate the URL Handlers
# service for the framework newBuilder; the default value is "true",
# which results in the URL.setURLStreamHandlerFactory() and
# URLConnection.setContentHandlerFactory() being called.
# felix.log.level - specifies an integer String whose value indicates the degree of
# logging reported by the framework; the default value is "1" and "0" turns off logging completely,
# otherwise log levels match those specified in the OSGi Log Service
# (i.e., 1 = error, 2 = warning, 3 = information, and 4 = debug).
# We log osgi entries via a log listener, and hence default the internal logging service logging to off
felix.log.level=0
# Sets the initial start level of the framework upon startup.
org.osgi.framework.startlevel.beginning=12
# Sets the start level of newly installed bundles.
felix.startlevel.bundle=10
# Felix installs a stream and content handler factories by default,
# uncomment the following line to not install them.
#felix.service.urlhandlers=false
# The launcher registers a shutdown hook to cleanly stop the framework
# by default, uncomment the following line to disable it.
#felix.shutdown.hook=false
#
# Bundle config properties.
#
obr.repository.url=http://felix.apache.org/obr/releases.xml
# Configures the web embedded Web server via the following file
org.ops4j.pax.web.config.file=&{launcher.project.location}/conf/jetty.xml
# Delegate the web server connector configuration to jetty.xml instead
org.osgi.service.http.enabled=true
org.osgi.service.http.secure.enabled=false
# https://issues.apache.org/jira/browse/FELIX-2526
ds.ctworkaround=true
# Disable the file configuration uncomment these options and enable the bootstrap in the system.properties.
#felix.fileinstall.disableConfigSave=false