blob: 3ab88697599d29bef1061de74b289e80a0e553aa [file] [log] [blame]
Karl Pauls4ebe5082006-10-30 15:00:08 +00001# Licensed to the Apache Software Foundation (ASF) under one
2# or more contributor license agreements. See the NOTICE file
3# distributed with this work for additional information
4# regarding copyright ownership. The ASF licenses this file
5# to you under the Apache License, Version 2.0 (the
6# "License"); you may not use this file except in compliance
7# with the License. You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing,
12# software distributed under the License is distributed on an
13# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14# KIND, either express or implied. See the License for the
15# specific language governing permissions and limitations
16# under the License.
17
Alex Karasuluc15532e2006-03-06 19:42:54 +000018#
19# Framework config properties.
20#
Richard S. Hall8155b232008-10-16 20:22:58 +000021
22# To override the packages the framework exports by default from the
23# class path, set this variable.
24#org.osgi.framework.system.packages=
25
26# To append packages to the default set of exported system packages,
27# set this value.
28#org.osgi.framework.system.packages.extra=
Richard S. Hallac6bc742006-06-09 08:40:53 +000029
Richard S. Hallf3ce0022008-10-09 15:54:32 +000030# The following property makes specified packages from the class path
31# available to all bundles. You should avoid using this property.
Richard S. Hall77ff0ea2006-04-14 12:52:18 +000032#org.osgi.framework.bootdelegation=sun.*,com.sun.*
Richard S. Hallf3ce0022008-10-09 15:54:32 +000033
Richard S. Hall4818aa92009-08-27 18:26:48 +000034# Felix tries to guess when to implicitly boot delegate in certain
35# situations to ease integration without outside code. This feature
36# is enabled by default, uncomment the following line to disable it.
37#felix.bootdelegation.implicit=false
38
Richard S. Hallf3ce0022008-10-09 15:54:32 +000039# The following property explicitly specifies the location of the bundle
40# cache, which defaults to "felix-cache" in the current working directory.
41# If this value is not absolute, then the felix.cache.rootdir controls
42# how the absolute location is calculated. (See next property)
Karl Paulsee682142008-10-10 21:26:51 +000043#org.osgi.framework.storage=${dollar}{felix.cache.rootdir}/felix-cache
Richard S. Hallf3ce0022008-10-09 15:54:32 +000044
45# The following property is used to convert a relative bundle cache
46# location into an absolute one by specifying the root to prepend to
47# the relative cache path. The default for this property is the
48# current working directory.
49#felix.cache.rootdir=${dollar}{user.dir}
50
Richard S. Hallb6ed2122008-10-10 15:38:59 +000051# The following property controls whether the bundle cache is flushed
52# the first time the framework is initialized. Possible values are
53# "none" and "onFirstInit"; the default is "none".
54#org.osgi.framework.storage.clean=onFirstInit
55
Richard S. Hall7af82d72009-08-06 15:53:25 +000056# The following property determines which actions are performed when
57# processing the auto-deploy directory. It is a comma-delimited list of
58# the following values: 'install', 'start', 'update', and 'uninstall'.
59# An undefined or blank value is equivalent to disabling auto-deploy
60# processing.
61felix.auto.deploy.action=install,start,update
Richard S. Hall5fd6cb62009-08-03 18:24:19 +000062
63# The following property specifies the directory to use as the bundle
64# auto-deploy directory; the default is 'bundle' in the working directory.
Richard S. Hall87dbfa82009-08-04 21:02:44 +000065#felix.auto.deploy.dir=bundle
Richard S. Hall5fd6cb62009-08-03 18:24:19 +000066
67# The following property is a space-delimited list of bundle URLs
68# to install when the framework starts. The ending numerical component
69# is the target start level. Any number of these properties may be
70# specified for different start levels.
71#felix.auto.install.1=
72
73# The following property is a space-delimited list of bundle URLs
74# to install and start when the framework starts. The ending numerical
75# component is the target start level. Any number of these properties
76# may be specified for different start levels.
77#felix.auto.start.1=
Stuart McCulloch6bb5fd62008-11-07 14:20:52 +000078
Karl Paulse72e3882009-09-06 22:53:04 +000079felix.log.level=4
Richard S. Hall8155b232008-10-16 20:22:58 +000080
81# Sets the initial start level of the framework upon startup.
Richard S. Hall448b9fb2009-06-10 15:54:21 +000082#org.osgi.framework.startlevel.beginning=1
Richard S. Hall8155b232008-10-16 20:22:58 +000083
84# Sets the start level of newly installed bundles.
85#felix.startlevel.bundle=1
Richard S. Halle49bf1c2008-09-12 20:51:49 +000086
Richard S. Halle49bf1c2008-09-12 20:51:49 +000087# Felix installs a stream and content handler factories by default,
88# uncomment the following line to not install them.
Karl Pauls929bd6a2008-01-27 21:07:25 +000089#felix.service.urlhandlers=false
Alex Karasuluc15532e2006-03-06 19:42:54 +000090
Richard S. Halla5bb7382009-08-26 19:46:51 +000091# The launcher registers a shutdown hook to cleanly stop the framework
92# by default, uncomment the following line to disable it.
93#felix.shutdown.hook=false
94
Alex Karasuluc15532e2006-03-06 19:42:54 +000095#
96# Bundle config properties.
97#
Richard S. Hall8155b232008-10-16 20:22:58 +000098
Alex Karasuluc15532e2006-03-06 19:42:54 +000099org.osgi.service.http.port=8080
Richard S. Hall69e076c2007-05-09 17:10:53 +0000100osgi.shell.telnet=on
Karl Pauls189a85a2008-09-07 19:54:38 +0000101obr.repository.url=http://felix.apache.org/obr/releases.xml