Lee Yongjae | 7c27bb4 | 2017-11-17 12:00:45 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Lee Yongjae | 6dc7e4f | 2017-12-06 16:17:51 +0900 | [diff] [blame] | 3 | ~ Copyright 2017-present Open Networking Foundation |
Lee Yongjae | 7c27bb4 | 2017-11-17 12:00:45 +0900 | [diff] [blame] | 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="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-apps</artifactId> |
ONOS Jenkins User | 03e5521 | 2018-08-14 22:13:58 +0000 | [diff] [blame] | 25 | <version>1.14.0-SNAPSHOT</version> |
Lee Yongjae | 7c27bb4 | 2017-11-17 12:00:45 +0900 | [diff] [blame] | 26 | </parent> |
| 27 | |
Yuta HIGUCHI | 7847227 | 2018-05-03 17:08:16 -0700 | [diff] [blame] | 28 | <artifactId>onos-apps-simplefabric</artifactId> |
Lee Yongjae | 7c27bb4 | 2017-11-17 12:00:45 +0900 | [diff] [blame] | 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <description>Simple Fabric Application for Leaf-Spine L2/L3 Network</description> |
| 32 | |
| 33 | <properties> |
| 34 | <onos.app.name>org.onosproject.simplefabric</onos.app.name> |
| 35 | <onos.app.category>Traffic Steering</onos.app.category> |
| 36 | <onos.app.title>Simple Fabric App</onos.app.title> |
| 37 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 38 | |
| 39 | <web.context>/onos/v1/simplefabric</web.context> |
| 40 | <api.version>1.0.0</api.version> |
Yuta HIGUCHI | 448e684 | 2017-12-06 10:44:23 -0800 | [diff] [blame] | 41 | <api.title>Simple Fabric Application</api.title> |
Lee Yongjae | 7c27bb4 | 2017-11-17 12:00:45 +0900 | [diff] [blame] | 42 | <api.description>APIs for interacting with the Simple Fabric application.</api.description> |
| 43 | <api.package>org.onosproject.simplefabric</api.package> |
| 44 | </properties> |
| 45 | |
| 46 | <dependencies> |
| 47 | |
| 48 | <dependency> |
Yuta HIGUCHI | 47960ef | 2018-04-13 17:41:10 -0700 | [diff] [blame] | 49 | <groupId>com.googlecode.concurrent-trees</groupId> |
| 50 | <artifactId>concurrent-trees</artifactId> |
| 51 | </dependency> |
| 52 | |
| 53 | <dependency> |
Lee Yongjae | 7c27bb4 | 2017-11-17 12:00:45 +0900 | [diff] [blame] | 54 | <groupId>com.google.guava</groupId> |
| 55 | <artifactId>guava</artifactId> |
| 56 | </dependency> |
| 57 | |
| 58 | <dependency> |
| 59 | <groupId>org.onosproject</groupId> |
| 60 | <artifactId>onlab-misc</artifactId> |
| 61 | </dependency> |
| 62 | |
| 63 | <dependency> |
| 64 | <groupId>org.onosproject</groupId> |
| 65 | <artifactId>onlab-junit</artifactId> |
| 66 | <scope>test</scope> |
| 67 | </dependency> |
| 68 | |
| 69 | <dependency> |
| 70 | <groupId>org.onosproject</groupId> |
| 71 | <artifactId>onos-api</artifactId> |
| 72 | </dependency> |
| 73 | |
| 74 | <dependency> |
| 75 | <groupId>org.onosproject</groupId> |
| 76 | <artifactId>onos-cli</artifactId> |
| 77 | <version>${project.version}</version> |
| 78 | </dependency> |
| 79 | |
| 80 | <dependency> |
| 81 | <groupId>org.onosproject</groupId> |
| 82 | <artifactId>onos-core-serializers</artifactId> |
| 83 | <version>${project.version}</version> |
| 84 | </dependency> |
| 85 | |
| 86 | <dependency> |
| 87 | <groupId>org.onosproject</groupId> |
Lee Yongjae | 7c27bb4 | 2017-11-17 12:00:45 +0900 | [diff] [blame] | 88 | <artifactId>onos-rest</artifactId> |
| 89 | <version>${project.version}</version> |
| 90 | </dependency> |
| 91 | |
| 92 | <dependency> |
| 93 | <groupId>org.apache.felix</groupId> |
| 94 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 95 | </dependency> |
| 96 | |
| 97 | <dependency> |
| 98 | <groupId>org.apache.karaf.shell</groupId> |
| 99 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 100 | </dependency> |
| 101 | |
| 102 | <dependency> |
| 103 | <groupId>org.osgi</groupId> |
| 104 | <artifactId>org.osgi.core</artifactId> |
| 105 | </dependency> |
| 106 | |
| 107 | <dependency> |
| 108 | <groupId>org.easymock</groupId> |
| 109 | <artifactId>easymock</artifactId> |
| 110 | <scope>test</scope> |
| 111 | </dependency> |
| 112 | |
| 113 | </dependencies> |
| 114 | |
| 115 | |
| 116 | <build> |
| 117 | <plugins> |
| 118 | <plugin> |
| 119 | <groupId>org.apache.felix</groupId> |
| 120 | <artifactId>maven-bundle-plugin</artifactId> |
| 121 | <extensions>true</extensions> |
Lee Yongjae | 7c27bb4 | 2017-11-17 12:00:45 +0900 | [diff] [blame] | 122 | </plugin> |
| 123 | |
| 124 | <plugin> |
| 125 | <groupId>org.apache.felix</groupId> |
| 126 | <artifactId>maven-scr-plugin</artifactId> |
| 127 | </plugin> |
| 128 | |
| 129 | <plugin> |
| 130 | <groupId>org.onosproject</groupId> |
| 131 | <artifactId>onos-maven-plugin</artifactId> |
| 132 | </plugin> |
| 133 | </plugins> |
| 134 | </build> |
| 135 | |
| 136 | </project> |