Karl Pauls | c6eda45 | 2010-02-14 22:52:56 +0000 | [diff] [blame] | 1 | # 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 | |
| 18 | # |
| 19 | # Framework config properties. |
| 20 | # |
| 21 | |
| 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= |
| 29 | |
| 30 | # The following property makes specified packages from the class path |
| 31 | # available to all bundles. You should avoid using this property. |
| 32 | #org.osgi.framework.bootdelegation=sun.*,com.sun.* |
| 33 | |
| 34 | # 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 | |
| 39 | # 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) |
| 43 | #org.osgi.framework.storage=${dollar}{felix.cache.rootdir}/felix-cache |
| 44 | |
| 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 | |
| 51 | # 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 | |
| 56 | # 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. |
| 61 | felix.auto.deploy.action=install,start |
| 62 | |
| 63 | # The following property specifies the directory to use as the bundle |
| 64 | # auto-deploy directory; the default is 'bundle' in the working directory. |
| 65 | #felix.auto.deploy.dir=bundle |
| 66 | |
| 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= |
| 78 | |
| 79 | felix.log.level=1 |
| 80 | |
| 81 | # Sets the initial start level of the framework upon startup. |
| 82 | #org.osgi.framework.startlevel.beginning=1 |
| 83 | |
| 84 | # Sets the start level of newly installed bundles. |
| 85 | #felix.startlevel.bundle=1 |
| 86 | |
| 87 | # Felix installs a stream and content handler factories by default, |
| 88 | # uncomment the following line to not install them. |
| 89 | #felix.service.urlhandlers=false |
| 90 | |
| 91 | # 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 | |
| 95 | # |
| 96 | # Bundle config properties. |
| 97 | # |
| 98 | |
| 99 | org.osgi.service.http.port=8080 |
| 100 | obr.repository.url=http://felix.apache.org/obr/releases.xml |