Ray Milkey | d84f89b | 2018-08-17 14:54:17 -0700 | [diff] [blame] | 1 | ################################################################################ |
| 2 | # |
| 3 | # Licensed to the Apache Software Foundation (ASF) under one or more |
| 4 | # contributor license agreements. See the NOTICE file distributed with |
| 5 | # this work for additional information regarding copyright ownership. |
| 6 | # The ASF licenses this file to You under the Apache License, Version 2.0 |
| 7 | # (the "License"); you may not use this file except in compliance with |
| 8 | # the License. You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | # |
| 18 | ################################################################################ |
| 19 | |
| 20 | # |
| 21 | # Comma separated list of features repositories to register by default |
| 22 | # |
| 23 | featuresRepositories = \ |
Thomas Vachuska | 369e3fb | 2019-01-02 16:38:37 -0800 | [diff] [blame] | 24 | mvn:org.apache.karaf.features/standard/4.2.2/xml/features, \ |
Ray Milkey | d84f89b | 2018-08-17 14:54:17 -0700 | [diff] [blame] | 25 | mvn:org.onosproject/onos-features/$ONOS_VERSION/xml/features, \ |
Thomas Vachuska | 369e3fb | 2019-01-02 16:38:37 -0800 | [diff] [blame] | 26 | mvn:org.apache.karaf.features/enterprise/4.2.2/xml/features, \ |
| 27 | mvn:org.apache.karaf.features/spring/4.2.2/xml/features, \ |
| 28 | mvn:org.apache.karaf.features/standard/4.2.2/xml/features, \ |
| 29 | mvn:org.apache.karaf.features/framework/4.2.2/xml/features |
Ray Milkey | d84f89b | 2018-08-17 14:54:17 -0700 | [diff] [blame] | 30 | |
| 31 | # |
| 32 | # Comma separated list of features to install at startup |
| 33 | # |
| 34 | featuresBoot = \ |
Thomas Vachuska | 369e3fb | 2019-01-02 16:38:37 -0800 | [diff] [blame] | 35 | instance/4.2.2, \ |
| 36 | package/4.2.2, \ |
| 37 | log/4.2.2, \ |
| 38 | ssh/4.2.2, \ |
| 39 | framework/4.2.2, \ |
| 40 | system/4.2.2, \ |
| 41 | eventadmin/4.2.2, \ |
| 42 | feature/4.2.2, \ |
| 43 | shell/4.2.2, \ |
| 44 | management/4.2.2, \ |
| 45 | service/4.2.2, \ |
| 46 | jaas/4.2.2, \ |
| 47 | deployer/4.2.2, \ |
| 48 | diagnostic/4.2.2, \ |
Ray Milkey | d84f89b | 2018-08-17 14:54:17 -0700 | [diff] [blame] | 49 | (wrap/2.5.4), \ |
Thomas Vachuska | 369e3fb | 2019-01-02 16:38:37 -0800 | [diff] [blame] | 50 | (bundle/4.2.2, \ |
| 51 | config/4.2.2, \ |
| 52 | kar/4.2.2, \ |
| 53 | webconsole/4.2.2, \ |
| 54 | scr/4.2.2, \ |
| 55 | war/4.2.2), \ |
Brian O'Connor | 1a37866 | 2018-12-12 17:27:11 -0800 | [diff] [blame] | 56 | (onos-netty/$ONOS_VERSION), \ |
| 57 | (onos-api/$ONOS_VERSION, \ |
| 58 | onos-core/$ONOS_VERSION, \ |
| 59 | onos-cli/$ONOS_VERSION, \ |
Brian O'Connor | 1a37866 | 2018-12-12 17:27:11 -0800 | [diff] [blame] | 60 | onos-rest/$ONOS_VERSION, \ |
Ray Milkey | 1bc2f63 | 2018-12-18 09:06:45 -0800 | [diff] [blame] | 61 | onos-gui/$ONOS_VERSION), \ |
Thomas Vachuska | 369e3fb | 2019-01-02 16:38:37 -0800 | [diff] [blame] | 62 | (ssh/4.2.2) |
Ray Milkey | d84f89b | 2018-08-17 14:54:17 -0700 | [diff] [blame] | 63 | |
| 64 | |
| 65 | # |
| 66 | # Resource repositories (OBR) that the features resolver can use |
| 67 | # to resolve requirements/capabilities |
| 68 | # |
| 69 | # The format of the resourceRepositories is |
| 70 | # resourceRepositories=[xml:url|json:url],... |
| 71 | # for Instance: |
| 72 | # |
| 73 | #resourceRepositories=xml:http://host/path/to/index.xml |
| 74 | # or |
| 75 | #resourceRepositories=json:http://host/path/to/index.json |
| 76 | # |
| 77 | |
| 78 | # |
| 79 | # Defines if the boot features are started in asynchronous mode (in a dedicated thread) |
| 80 | # |
| 81 | featuresBootAsynchronous=false |
| 82 | |
| 83 | # |
| 84 | # Service requirements enforcement |
| 85 | # |
| 86 | # By default, the feature resolver checks the service requirements/capabilities of |
| 87 | # bundles for new features (xml schema >= 1.3.0) in order to automatically installs |
| 88 | # the required bundles. |
| 89 | # The following flag can have those values: |
| 90 | # - disable: service requirements are completely ignored |
| 91 | # - default: service requirements are ignored for old features |
| 92 | # - enforce: service requirements are always verified |
| 93 | # |
| 94 | #serviceRequirements=default |
| 95 | |
| 96 | # |
| 97 | # Store cfg file for config element in feature |
| 98 | # |
| 99 | #configCfgStore=true |
| 100 | |
| 101 | # |
| 102 | # Configuration of features processing mechanism (overrides, blacklisting, modification of features) |
| 103 | # XML file defines instructions related to features processing |
| 104 | # versions.properties may declare properties to resolve placeholders in XML file |
| 105 | # both files are relative to ${karaf.etc} |
| 106 | # |
| 107 | #featureProcessing=org.apache.karaf.features.xml |
| 108 | #featureProcessingVersions=versions.properties |