blob: 56eca2a6037f4684a422b6fa1bf8f7a78ee12806 [file] [log] [blame]
Ray Milkeyd84f89b2018-08-17 14:54:17 -07001################################################################################
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#
23featuresRepositories = \
24 mvn:org.apache.karaf.features/standard/4.2.1/xml/features, \
25 mvn:org.onosproject/onos-features/$ONOS_VERSION/xml/features, \
26 mvn:org.apache.karaf.features/enterprise/4.2.1/xml/features, \
27 mvn:org.apache.karaf.features/spring/4.2.1/xml/features, \
28 mvn:org.apache.karaf.features/standard/4.2.1/xml/features, \
29 mvn:org.apache.karaf.features/framework/4.2.1/xml/features
30
31#
32# Comma separated list of features to install at startup
Brian O'Connor1a378662018-12-12 17:27:11 -080033# Groups of features within parens are brought up in parallel
34# Groups of features are brought up sequentially
35# Features without a paren group are assigned to an implicit paren group that ends when the next paren is found
Ray Milkeyd84f89b2018-08-17 14:54:17 -070036#
37featuresBoot = \
Brian O'Connor1a378662018-12-12 17:27:11 -080038 (instance/4.2.1, \
39 package/4.2.1, \
40 log/4.2.1, \
41 framework/4.2.1, \
42 system/4.2.1, \
43 eventadmin/4.2.1, \
44 feature/4.2.1, \
45 shell/4.2.1, \
46 management/4.2.1, \
47 service/4.2.1, \
48 jaas/4.2.1, \
49 deployer/4.2.1, \
50 diagnostic/4.2.1), \
Ray Milkeyd84f89b2018-08-17 14:54:17 -070051 (wrap/2.5.4), \
Brian O'Connor1a378662018-12-12 17:27:11 -080052 (bundle/4.2.1, \
53 config/4.2.1, \
54 kar/4.2.1, \
55 webconsole/4.2.1, \
56 scr/4.2.1, \
57 war/4.2.1), \
58 (onos-netty/$ONOS_VERSION), \
59 (onos-api/$ONOS_VERSION, \
60 onos-core/$ONOS_VERSION, \
61 onos-cli/$ONOS_VERSION, \
Brian O'Connor1a378662018-12-12 17:27:11 -080062 onos-rest/$ONOS_VERSION, \
Ray Milkey1bc2f632018-12-18 09:06:45 -080063 onos-gui/$ONOS_VERSION), \
64 (ssh/4.2.1)
Ray Milkeyd84f89b2018-08-17 14:54:17 -070065
66
67#
68# Resource repositories (OBR) that the features resolver can use
69# to resolve requirements/capabilities
70#
71# The format of the resourceRepositories is
72# resourceRepositories=[xml:url|json:url],...
73# for Instance:
74#
75#resourceRepositories=xml:http://host/path/to/index.xml
76# or
77#resourceRepositories=json:http://host/path/to/index.json
78#
79
80#
81# Defines if the boot features are started in asynchronous mode (in a dedicated thread)
82#
83featuresBootAsynchronous=false
84
85#
86# Service requirements enforcement
87#
88# By default, the feature resolver checks the service requirements/capabilities of
89# bundles for new features (xml schema >= 1.3.0) in order to automatically installs
90# the required bundles.
91# The following flag can have those values:
92# - disable: service requirements are completely ignored
93# - default: service requirements are ignored for old features
94# - enforce: service requirements are always verified
95#
96#serviceRequirements=default
97
98#
99# Store cfg file for config element in feature
100#
101#configCfgStore=true
102
103#
104# Configuration of features processing mechanism (overrides, blacklisting, modification of features)
105# XML file defines instructions related to features processing
106# versions.properties may declare properties to resolve placeholders in XML file
107# both files are relative to ${karaf.etc}
108#
109#featureProcessing=org.apache.karaf.features.xml
110#featureProcessingVersions=versions.properties