blob: ebde4fc89a7a8c2d6cde0f3f97afea0115b77798 [file] [log] [blame]
slowrdb071b22017-07-07 11:10:25 -07001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:org.apache.karaf.shell.console',
4 '//cli:onos-cli',
5 '//apps/routing-api:onos-apps-routing-api',
6 '//apps/routing/common:onos-apps-routing-common',
7 '//lib:okhttp',
8 '//lib:okio',
9 ':commons-net',
10 ':io.socket-client',
11 ':json',
12 ':engine.io-client'
13 ]
14
15BUNDLES = [
16 '//apps/artemis:onos-apps-artemis',
17 '//apps/routing-api:onos-apps-routing-api',
18 '//apps/routing/common:onos-apps-routing-common',
19]
20
21EXCLUDED_BUNDLES = [
22 '//lib:okhttp',
23 '//lib:okio',
24 ':commons-net',
25 ':io.socket-client',
26 ':json',
27 ':engine.io-client'
28]
29
30osgi_jar (
31 deps = COMPILE_DEPS,
32)
33
34onos_app (
35 app_name = 'org.onosproject.artemis',
36 title = 'Artemis',
37 category = 'Monitoring',
38 url = 'http://onosproject.org',
39 description = 'Artemis',
40 included_bundles = BUNDLES,
41 excluded_bundles = EXCLUDED_BUNDLES,
42 required_apps = [ 'org.onosproject.sdnip' ],
43)
44
45remote_jar (
46 name = 'commons-net',
47 out = 'commons-net-3.5.jar',
48 url = 'mvn:commons-net:commons-net:jar:3.5',
49 sha1 = '342fc284019f590e1308056990fdb24a08f06318',
50 maven_coords = 'commons-net:commons-net:3.5',
51 visibility = [ 'PUBLIC' ],
52)
53
54remote_jar (
55 name = 'io.socket-client',
56 out = 'socket.io-client-0.8.3.jar',
57 url = 'mvn:io.socket:socket.io-client:jar:0.8.3',
58 sha1 = 'b30500232ff0668a47c9f91f02e6935457a52fb5',
59 maven_coords = 'io.socket:socket.io-client:jar:NON-OSGI:0.8.3',
60 visibility = [ 'PUBLIC' ],
61)
62
63remote_jar (
64 name = 'json',
65 out = 'json-20090211.jar',
66 url = 'mvn:org.json:json:jar:20090211',
67 sha1 = 'c183aa3a2a6250293808bba12262c8920ce5a51c',
68 maven_coords = 'org.json:json:jar:NON-OSGI:20090211',
69 visibility = [ 'PUBLIC' ],
70)
71
72remote_jar (
73 name = 'engine.io-client',
74 out = 'engine.io-client-0.8.3.jar',
75 url = 'mvn:io.socket:engine.io-client:jar:0.8.3',
76 sha1 = '854b49396e1e9f9bb0ab025062ddb49c4ed65ca1',
77 maven_coords = 'io.socket:engine.io-client:jar:NON-OSGI:0.8.3',
78 visibility = [ 'PUBLIC' ],
79)