blob: ef369559663fec5fa40e83efbe107b58c5c3b044 [file] [log] [blame]
Lee Yongjae7c27bb42017-11-17 12:00:45 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017-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="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>
25 <version>1.12.0-SNAPSHOT</version>
26 <relativePath>../../onos</relativePath>
27 </parent>
28
29 <artifactId>onos-app-simplefabric</artifactId>
30 <packaging>bundle</packaging>
31
32 <description>Simple Fabric Application for Leaf-Spine L2/L3 Network</description>
33
34 <properties>
35 <onos.app.name>org.onosproject.simplefabric</onos.app.name>
36 <onos.app.category>Traffic Steering</onos.app.category>
37 <onos.app.title>Simple Fabric App</onos.app.title>
38 <onos.app.url>http://onosproject.org</onos.app.url>
39
40 <web.context>/onos/v1/simplefabric</web.context>
41 <api.version>1.0.0</api.version>
42 <api.title>Simple Fabric Application REST API</api.title>
43 <api.description>APIs for interacting with the Simple Fabric application.</api.description>
44 <api.package>org.onosproject.simplefabric</api.package>
45 </properties>
46
47 <dependencies>
48
49 <dependency>
50 <groupId>com.google.guava</groupId>
51 <artifactId>guava</artifactId>
52 </dependency>
53
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onlab-misc</artifactId>
57 </dependency>
58
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onlab-junit</artifactId>
62 <scope>test</scope>
63 </dependency>
64
65 <dependency>
66 <groupId>org.onosproject</groupId>
67 <artifactId>onos-api</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onos-cli</artifactId>
73 <version>${project.version}</version>
74 </dependency>
75
76 <dependency>
77 <groupId>org.onosproject</groupId>
78 <artifactId>onos-core-serializers</artifactId>
79 <version>${project.version}</version>
80 </dependency>
81
82 <dependency>
83 <groupId>org.onosproject</groupId>
84 <artifactId>onos-core-net</artifactId>
85 <version>${project.version}</version>
86 </dependency>
87
88 <dependency>
89 <groupId>org.onosproject</groupId>
90 <artifactId>onos-rest</artifactId>
91 <version>${project.version}</version>
92 </dependency>
93
94 <dependency>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>org.apache.felix.scr.annotations</artifactId>
97 </dependency>
98
99 <dependency>
100 <groupId>org.apache.karaf.shell</groupId>
101 <artifactId>org.apache.karaf.shell.console</artifactId>
102 </dependency>
103
104 <dependency>
105 <groupId>org.osgi</groupId>
106 <artifactId>org.osgi.core</artifactId>
107 </dependency>
108
109 <dependency>
110 <groupId>org.easymock</groupId>
111 <artifactId>easymock</artifactId>
112 <scope>test</scope>
113 </dependency>
114
115 </dependencies>
116
117
118 <build>
119 <plugins>
120 <plugin>
121 <groupId>org.apache.felix</groupId>
122 <artifactId>maven-bundle-plugin</artifactId>
123 <extensions>true</extensions>
124 <configuration>
125 <instructions>
126 <_wab>src/main/webapp/</_wab>
127 <Include-Resource>
128 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
129 {maven-resources}
130 </Include-Resource>
131 <Bundle-SymbolicName>
132 ${project.groupId}.${project.artifactId}
133 </Bundle-SymbolicName>
134 <Import-Package>
135 *,org.glassfish.jersey.servlet
136 </Import-Package>
137 <Web-ContextPath>${web.context}</Web-ContextPath>
138 </instructions>
139 </configuration>
140 </plugin>
141
142 <plugin>
143 <groupId>org.apache.felix</groupId>
144 <artifactId>maven-scr-plugin</artifactId>
145 </plugin>
146
147 <plugin>
148 <groupId>org.onosproject</groupId>
149 <artifactId>onos-maven-plugin</artifactId>
150 </plugin>
151 </plugins>
152 </build>
153
154</project>