Karl Pauls | 4ebe508 | 2006-10-30 15:00:08 +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 | |
Alex Karasulu | c15532e | 2006-03-06 19:42:54 +0000 | [diff] [blame] | 18 | # |
| 19 | # Framework config properties. |
| 20 | # |
Richard S. Hall | 8155b23 | 2008-10-16 20:22:58 +0000 | [diff] [blame] | 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= |
Richard S. Hall | ac6bc74 | 2006-06-09 08:40:53 +0000 | [diff] [blame] | 29 | |
Richard S. Hall | f3ce002 | 2008-10-09 15:54:32 +0000 | [diff] [blame] | 30 | # The following property makes specified packages from the class path |
| 31 | # available to all bundles. You should avoid using this property. |
Richard S. Hall | 77ff0ea | 2006-04-14 12:52:18 +0000 | [diff] [blame] | 32 | #org.osgi.framework.bootdelegation=sun.*,com.sun.* |
Richard S. Hall | f3ce002 | 2008-10-09 15:54:32 +0000 | [diff] [blame] | 33 | |
| 34 | # The following property explicitly specifies the location of the bundle |
| 35 | # cache, which defaults to "felix-cache" in the current working directory. |
| 36 | # If this value is not absolute, then the felix.cache.rootdir controls |
| 37 | # how the absolute location is calculated. (See next property) |
Karl Pauls | ee68214 | 2008-10-10 21:26:51 +0000 | [diff] [blame] | 38 | #org.osgi.framework.storage=${dollar}{felix.cache.rootdir}/felix-cache |
Richard S. Hall | f3ce002 | 2008-10-09 15:54:32 +0000 | [diff] [blame] | 39 | |
| 40 | # The following property is used to convert a relative bundle cache |
| 41 | # location into an absolute one by specifying the root to prepend to |
| 42 | # the relative cache path. The default for this property is the |
| 43 | # current working directory. |
| 44 | #felix.cache.rootdir=${dollar}{user.dir} |
| 45 | |
Richard S. Hall | b6ed212 | 2008-10-10 15:38:59 +0000 | [diff] [blame] | 46 | # The following property controls whether the bundle cache is flushed |
| 47 | # the first time the framework is initialized. Possible values are |
| 48 | # "none" and "onFirstInit"; the default is "none". |
| 49 | #org.osgi.framework.storage.clean=onFirstInit |
| 50 | |
Alex Karasulu | c15532e | 2006-03-06 19:42:54 +0000 | [diff] [blame] | 51 | felix.auto.start.1= \ |
Karl Pauls | 5f40791 | 2009-05-10 22:21:25 +0000 | [diff] [blame^] | 52 | file:bundle/org.apache.felix.shell-1.3.0-SNAPSHOT.jar \ |
| 53 | file:bundle/org.apache.felix.shell.tui-1.3.0-SNAPSHOT.jar \ |
| 54 | file:bundle/org.apache.felix.bundlerepository-1.5.0-SNAPSHOT.jar |
Stuart McCulloch | 6bb5fd6 | 2008-11-07 14:20:52 +0000 | [diff] [blame] | 55 | |
Karl Pauls | 54eb889 | 2009-04-26 21:14:07 +0000 | [diff] [blame] | 56 | felix.log.level=${log.level} |
Richard S. Hall | 8155b23 | 2008-10-16 20:22:58 +0000 | [diff] [blame] | 57 | |
| 58 | # Sets the initial start level of the framework upon startup. |
| 59 | #org.osgi.framework.startlevel=1 |
| 60 | |
| 61 | # Sets the start level of newly installed bundles. |
| 62 | #felix.startlevel.bundle=1 |
Richard S. Hall | e49bf1c | 2008-09-12 20:51:49 +0000 | [diff] [blame] | 63 | |
| 64 | # Invalid fragment bundles throw an 'exception' by default, but |
| 65 | # uncomment the follow line to have them log a 'warning' instead. |
| 66 | #felix.fragment.validation=warning |
| 67 | |
| 68 | # Felix installs a stream and content handler factories by default, |
| 69 | # uncomment the following line to not install them. |
Karl Pauls | 929bd6a | 2008-01-27 21:07:25 +0000 | [diff] [blame] | 70 | #felix.service.urlhandlers=false |
Alex Karasulu | c15532e | 2006-03-06 19:42:54 +0000 | [diff] [blame] | 71 | |
| 72 | # |
| 73 | # Bundle config properties. |
| 74 | # |
Richard S. Hall | 8155b23 | 2008-10-16 20:22:58 +0000 | [diff] [blame] | 75 | |
Alex Karasulu | c15532e | 2006-03-06 19:42:54 +0000 | [diff] [blame] | 76 | org.osgi.service.http.port=8080 |
Richard S. Hall | 69e076c | 2007-05-09 17:10:53 +0000 | [diff] [blame] | 77 | osgi.shell.telnet=on |
Karl Pauls | 189a85a | 2008-09-07 19:54:38 +0000 | [diff] [blame] | 78 | obr.repository.url=http://felix.apache.org/obr/releases.xml |