Manikandan K
Committed by Gerrit Code Review

ONOS-4092, ONOS-4093: ISIS CLI commands

Change-Id: Idcdfa0f61c3a9dfcbb771e77bf6ca108c18c6c8d
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<!--
3 + ~ Copyright 2016-present Open Networking Laboratory
4 + ~
5 + ~ Licensed under the Apache License, Version 2.0 (the "License");
6 + ~ you may not use this file except in compliance with the License.
7 + ~ 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, software
12 + ~ distributed under the License is distributed on an "AS IS" BASIS,
13 + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 + ~ See the License for the specific language governing permissions and
15 + ~ limitations under the License.
16 + -->
17 +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 + xmlns="http://maven.apache.org/POM/4.0.0"
19 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 + <modelVersion>4.0.0</modelVersion>
21 +
22 + <parent>
23 + <groupId>org.onosproject</groupId>
24 + <artifactId>onos-isis-providers</artifactId>
25 + <version>1.6.0-SNAPSHOT</version>
26 + <relativePath>../pom.xml</relativePath>
27 + </parent>
28 +
29 + <artifactId>onos-isis-provider-cli</artifactId>
30 + <packaging>bundle</packaging>
31 +
32 + <description>ISIS cli implementation</description>
33 +
34 + <dependencies>
35 +
36 + <dependency>
37 + <groupId>org.onosproject</groupId>
38 + <artifactId>onos-cli</artifactId>
39 + <version>${project.version}</version>
40 + </dependency>
41 +
42 + <dependency>
43 + <groupId>org.onosproject</groupId>
44 + <artifactId>onos-isis-api</artifactId>
45 + <version>${project.version}</version>
46 + </dependency>
47 +
48 + <dependency>
49 + <groupId>org.onosproject</groupId>
50 + <artifactId>onos-isis-isisio</artifactId>
51 + <version>${project.version}</version>
52 + </dependency>
53 +
54 + <dependency>
55 + <groupId>org.osgi</groupId>
56 + <artifactId>org.osgi.compendium</artifactId>
57 + </dependency>
58 +
59 + <dependency>
60 + <groupId>org.apache.karaf.shell</groupId>
61 + <artifactId>org.apache.karaf.shell.console</artifactId>
62 + </dependency>
63 +
64 + <dependency>
65 + <groupId>org.apache.felix</groupId>
66 + <artifactId>org.apache.felix.scr.annotations</artifactId>
67 + <scope>provided</scope>
68 + </dependency>
69 + </dependencies>
70 +
71 +</project>
...\ No newline at end of file ...\ No newline at end of file
1 +/*
2 + * Copyright 2016-present Open Networking Laboratory
3 + *
4 + * Licensed under the Apache License, Version 2.0 (the "License");
5 + * you may not use this file except in compliance with the License.
6 + * You may obtain a copy of the License at
7 + *
8 + * http://www.apache.org/licenses/LICENSE-2.0
9 + *
10 + * Unless required by applicable law or agreed to in writing, software
11 + * distributed under the License is distributed on an "AS IS" BASIS,
12 + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 + * See the License for the specific language governing permissions and
14 + * limitations under the License.
15 + */
16 +
17 +/**
18 + * ISIS cli implementation.
19 + */
20 +package org.onosproject.isis.cli;
1 +<!--
2 + ~ Copyright 2016-present Open Networking Laboratory
3 + ~
4 + ~ Licensed under the Apache License, Version 2.0 (the "License");
5 + ~ you may not use this file except in compliance with the License.
6 + ~ You may obtain a copy of the License at
7 + ~
8 + ~ http://www.apache.org/licenses/LICENSE-2.0
9 + ~
10 + ~ Unless required by applicable law or agreed to in writing, software
11 + ~ distributed under the License is distributed on an "AS IS" BASIS,
12 + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 + ~ See the License for the specific language governing permissions and
14 + ~ limitations under the License.
15 + -->
16 +<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
17 +
18 + <command-bundle xmlns="http://karaf.apache.org/xmlns/shell/v1.1.0">
19 + <command>
20 + <action class="org.onosproject.isis.cli.ApplicationIsisCommand"/>
21 + </command>
22 + </command-bundle>
23 +
24 +</blueprint>
...\ No newline at end of file ...\ No newline at end of file
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
35 <module>device</module> 35 <module>device</module>
36 <module>app</module> 36 <module>app</module>
37 <module>cfg</module> 37 <module>cfg</module>
38 + <module>cli</module>
38 </modules> 39 </modules>
39 40
40 <dependencies> 41 <dependencies>
...@@ -50,4 +51,4 @@ ...@@ -50,4 +51,4 @@
50 <scope>test</scope> 51 <scope>test</scope>
51 </dependency> 52 </dependency>
52 </dependencies> 53 </dependencies>
53 -</project>
...\ No newline at end of file ...\ No newline at end of file
54 +</project>
......