samuel
Committed by Gerrit Code Review

[2160]the implementation of vtn app and modify vtnrsc/pom.xml

Change-Id: I7ce14e3b83a6fa54a6cdb55f1f486aa51038ec01
...@@ -37,5 +37,10 @@ ...@@ -37,5 +37,10 @@
37 <artifactId>onos-core-serializers</artifactId> 37 <artifactId>onos-core-serializers</artifactId>
38 <version>${project.version}</version> 38 <version>${project.version}</version>
39 </dependency> 39 </dependency>
40 + <dependency>
41 + <groupId>org.onosproject</groupId>
42 + <artifactId>onos-app-vtnrsc</artifactId>
43 + <version>${project.version}</version>
44 + </dependency>
40 </dependencies> 45 </dependencies>
41 </project> 46 </project>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 * See the License for the specific language governing permissions and 13 * See the License for the specific language governing permissions and
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 -package org.onosproject.app.vtn; 16 +package org.onosproject.vtn;
17 17
18 import org.onosproject.net.Device; 18 import org.onosproject.net.Device;
19 import org.onosproject.net.Host; 19 import org.onosproject.net.Host;
......
This diff is collapsed. Click to expand it.
...@@ -17,4 +17,4 @@ ...@@ -17,4 +17,4 @@
17 /** 17 /**
18 * VTN application that applies configuration and flows to the device. 18 * VTN application that applies configuration and flows to the device.
19 */ 19 */
20 -package org.onosproject.app.vtn; 20 +package org.onosproject.vtn.impl;
......
1 +/*
2 + * Copyright 2015 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 + * VTN application that applies configuration and flows to the device.
19 + */
20 +package org.onosproject.vtn;
...@@ -17,7 +17,6 @@ ...@@ -17,7 +17,6 @@
17 17
18 <properties> 18 <properties>
19 <onos.app.name>org.onosproject.vtnrsc</onos.app.name> 19 <onos.app.name>org.onosproject.vtnrsc</onos.app.name>
20 - <web.context>/onos/vtn</web.context>
21 </properties> 20 </properties>
22 <dependencies> 21 <dependencies>
23 <dependency> 22 <dependency>
...@@ -52,7 +51,6 @@ ...@@ -52,7 +51,6 @@
52 <extensions>true</extensions> 51 <extensions>true</extensions>
53 <configuration> 52 <configuration>
54 <instructions> 53 <instructions>
55 - <_wab>src/main/webapp/</_wab>
56 <Bundle-SymbolicName> 54 <Bundle-SymbolicName>
57 ${project.groupId}.${project.artifactId} 55 ${project.groupId}.${project.artifactId}
58 </Bundle-SymbolicName> 56 </Bundle-SymbolicName>
...@@ -76,7 +74,6 @@ ...@@ -76,7 +74,6 @@
76 org.onlab.util.*, 74 org.onlab.util.*,
77 org.jboss.netty.util.* 75 org.jboss.netty.util.*
78 </Import-Package> 76 </Import-Package>
79 - <Web-ContextPath>${web.context}</Web-ContextPath>
80 </instructions> 77 </instructions>
81 </configuration> 78 </configuration>
82 </plugin> 79 </plugin>
......