Brian O'Connor | 807ed4a | 2016-04-29 17:10:44 -0700 | [diff] [blame] | 1 | osgi_feature ( |
| 2 | name="onos-thirdparty-base", |
| 3 | title="ONOS 3rd party dependencies", |
| 4 | required_features = [], |
| 5 | included_bundles = [ |
Madan Jampani | 630e7ac | 2016-05-31 11:34:05 -0700 | [diff] [blame] | 6 | '//lib:atomix', |
Brian O'Connor | 807ed4a | 2016-04-29 17:10:44 -0700 | [diff] [blame] | 7 | '//lib:commons-lang', |
| 8 | '//lib:commons-lang3', |
Yuta HIGUCHI | 825401e | 2018-02-27 13:23:25 -0800 | [diff] [blame] | 9 | '//lib:commons-text', |
Brian O'Connor | 807ed4a | 2016-04-29 17:10:44 -0700 | [diff] [blame] | 10 | '//lib:commons-configuration', |
| 11 | '//lib:guava', |
| 12 | '//lib:netty', |
| 13 | '//lib:netty-common', |
| 14 | '//lib:netty-buffer', |
| 15 | '//lib:netty-transport', |
| 16 | '//lib:netty-handler', |
| 17 | '//lib:netty-codec', |
| 18 | '//lib:netty-transport-native-epoll', |
Jonathan Hart | 5dc9a4e | 2017-01-13 09:09:57 -0800 | [diff] [blame] | 19 | '//lib:netty-resolver', |
Brian O'Connor | 807ed4a | 2016-04-29 17:10:44 -0700 | [diff] [blame] | 20 | '//lib:commons-pool', |
| 21 | '//lib:commons-math3', |
| 22 | '//lib:joda-time', |
| 23 | '//lib:metrics-core', |
| 24 | '//lib:metrics-json', |
| 25 | '//lib:minimal-json', |
| 26 | '//lib:kryo', |
| 27 | '//lib:reflectasm', |
| 28 | '//lib:asm', |
| 29 | '//lib:minlog', |
| 30 | '//lib:objenesis', |
| 31 | '//lib:jackson-core', |
| 32 | '//lib:jackson-annotations', |
| 33 | '//lib:jackson-databind', |
Brian O'Connor | 807ed4a | 2016-04-29 17:10:44 -0700 | [diff] [blame] | 34 | '//lib:commons-collections', |
| 35 | '//lib:typesafe-config', |
| 36 | '//lib:concurrent-trees', |
| 37 | '//lib:commons-io', |
Brian O'Connor | 807ed4a | 2016-04-29 17:10:44 -0700 | [diff] [blame] | 38 | '//lib:jersey-client', |
| 39 | '//lib:mapdb', |
Holger Schulz | 092cbbf | 2017-08-31 17:52:30 +0200 | [diff] [blame] | 40 | '//lib:bcpkix-jdk15on', |
| 41 | '//lib:bcprov-jdk15on', |
Brian O'Connor | 807ed4a | 2016-04-29 17:10:44 -0700 | [diff] [blame] | 42 | ] |
| 43 | ) |
| 44 | |
| 45 | osgi_feature ( |
| 46 | name="onos-thirdparty-web", |
| 47 | title="ONOS 3rd party dependencies for web apps", |
| 48 | required_features = [ 'war', 'onos-thirdparty-base' ], |
| 49 | included_bundles = [ |
| 50 | '//lib:jersey-common', |
| 51 | '//lib:javax.annotation-api', |
| 52 | '//lib:javax.ws.rs-api', |
| 53 | '//lib:hk2-api', |
| 54 | '//lib:hk2-locator', |
| 55 | '//lib:hk2-osgi-resource-locator', |
| 56 | '//lib:javax.inject', |
Brian O'Connor | 807ed4a | 2016-04-29 17:10:44 -0700 | [diff] [blame] | 57 | '//lib:jersey-server', |
Jian Li | 5d505f24 | 2018-02-24 01:45:31 +0900 | [diff] [blame] | 58 | '//lib:jersey-hk2', |
Brian O'Connor | 807ed4a | 2016-04-29 17:10:44 -0700 | [diff] [blame] | 59 | '//lib:aopalliance-repackaged', |
| 60 | '//lib:hk2-utils', |
| 61 | '//lib:validation-api', |
| 62 | '//lib:javassist', |
| 63 | '//lib:jersey-container-servlet', |
| 64 | '//lib:jersey-container-servlet-core', |
| 65 | '//lib:jersey-media-multipart', |
| 66 | '//lib:mimepull', |
| 67 | ] |
| 68 | ) |
| 69 | |
| 70 | osgi_feature ( |
| 71 | name = 'onos-api', |
| 72 | title = 'ONOS services and model API', |
| 73 | required_features = ['scr', 'onos-thirdparty-base'], |
| 74 | included_bundles =[ |
| 75 | '//utils/misc:onlab-misc', |
| 76 | '//utils/osgi:onlab-osgi', |
| 77 | '//core/api:onos-api', |
| 78 | '//incubator/api:onos-incubator-api', |
| 79 | ] |
| 80 | ) |
| 81 | |
| 82 | osgi_feature ( |
| 83 | name='onos-core', |
| 84 | title='ONOS core components', |
| 85 | required_features = ['onos-api'], |
| 86 | included_bundles = [ |
| 87 | '//core/net:onos-core-net', |
| 88 | '//core/common:onos-core-common', |
| 89 | '//core/store/dist:onos-core-dist', |
| 90 | '//core/store/primitives:onos-core-primitives', |
| 91 | '//core/store/persistence:onos-core-persistence', |
| 92 | '//core/store/serializers:onos-core-serializers', |
| 93 | ] |
| 94 | ) |
| 95 | |
| 96 | osgi_feature ( |
| 97 | name='onos-incubator', |
| 98 | title='ONOS core incubator components', |
| 99 | required_features = ['onos-core'], |
| 100 | included_bundles = [ |
| 101 | '//incubator/net:onos-incubator-net', |
Brian O'Connor | 807ed4a | 2016-04-29 17:10:44 -0700 | [diff] [blame] | 102 | '//incubator/store:onos-incubator-store', |
| 103 | '//incubator/rpc:onos-incubator-rpc', |
| 104 | ] |
| 105 | ) |
| 106 | |
| 107 | osgi_feature ( |
| 108 | name="onos-rest", |
| 109 | title="ONOS REST API components", |
| 110 | required_features = ['onos-api', 'onos-thirdparty-web'], |
| 111 | included_bundles = [ |
| 112 | '//utils/rest:onlab-rest', |
| 113 | '//web/api:onos-rest', |
| 114 | ] |
| 115 | ) |
| 116 | |
| 117 | osgi_feature ( |
| 118 | name = 'onos-gui', |
| 119 | title = 'ONOS GUI console components', |
| 120 | required_features = ['onos-api', 'onos-thirdparty-web'], |
| 121 | included_bundles = [ |
| 122 | '//lib:jetty-websocket', |
| 123 | '//utils/rest:onlab-rest', |
| 124 | '//web/gui:onos-gui', |
| 125 | ] |
| 126 | ) |
| 127 | |
| 128 | osgi_feature ( |
| 129 | name = 'onos-cli', |
| 130 | title="ONOS admin command console components", |
| 131 | required_features = ['onos-api'], |
| 132 | included_bundles = [ |
| 133 | '//cli:onos-cli', |
Brian O'Connor | 807ed4a | 2016-04-29 17:10:44 -0700 | [diff] [blame] | 134 | ] |
| 135 | ) |
| 136 | |
Heedo Kang | 611a065 | 2017-09-05 12:26:30 +0900 | [diff] [blame] | 137 | osgi_feature ( |
| 138 | name = 'onos-security', |
| 139 | title="Security-Mode ONOS", |
| 140 | required_features = ['onos-api'], |
| 141 | included_bundles = [ |
| 142 | '//lib:org.apache.felix.framework.security', |
| 143 | '//core/security:onos-security', |
| 144 | ] |
| 145 | ) |