samuel
Committed by Gerrit Code Review

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

Change-Id: I7ce14e3b83a6fa54a6cdb55f1f486aa51038ec01
......@@ -37,5 +37,10 @@
<artifactId>onos-core-serializers</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.onosproject</groupId>
<artifactId>onos-app-vtnrsc</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
......
......@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.app.vtn;
package org.onosproject.vtn;
import org.onosproject.net.Device;
import org.onosproject.net.Host;
......
This diff is collapsed. Click to expand it.
......@@ -17,4 +17,4 @@
/**
* VTN application that applies configuration and flows to the device.
*/
package org.onosproject.app.vtn;
package org.onosproject.vtn.impl;
......
/*
* Copyright 2015 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* VTN application that applies configuration and flows to the device.
*/
package org.onosproject.vtn;
......@@ -17,7 +17,6 @@
<properties>
<onos.app.name>org.onosproject.vtnrsc</onos.app.name>
<web.context>/onos/vtn</web.context>
</properties>
<dependencies>
<dependency>
......@@ -52,7 +51,6 @@
<extensions>true</extensions>
<configuration>
<instructions>
<_wab>src/main/webapp/</_wab>
<Bundle-SymbolicName>
${project.groupId}.${project.artifactId}
</Bundle-SymbolicName>
......@@ -76,7 +74,6 @@
org.onlab.util.*,
org.jboss.netty.util.*
</Import-Package>
<Web-ContextPath>${web.context}</Web-ContextPath>
</instructions>
</configuration>
</plugin>
......