blob: 9c72c5deeadb11c374208804fc95a55800bfa1c3 [file] [log] [blame]
psneha3adf3652018-06-25 10:08:35 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017 Open Networking Foundation
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/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
Ray Milkey333e30b2018-07-09 13:37:49 -070021
psneha3adf3652018-06-25 10:08:35 -040022 <parent>
psneha3adf3652018-06-25 10:08:35 -040023 <groupId>org.onosproject</groupId>
Ray Milkey333e30b2018-07-09 13:37:49 -070024 <artifactId>onos-apps-t3</artifactId>
psneha3adf3652018-06-25 10:08:35 -040025 <version>1.14.0-SNAPSHOT</version>
26 </parent>
27
psneha3adf3652018-06-25 10:08:35 -040028 <artifactId>onos-apps-t3-web</artifactId>
psneha3adf3652018-06-25 10:08:35 -040029 <packaging>bundle</packaging>
30
31 <description>T3 REST API</description>
32 <url>http://onosproject.org</url>
33
34 <properties>
35 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36 <onos.version>1.14.0-SNAPSHOT</onos.version>
Ray Milkey333e30b2018-07-09 13:37:49 -070037 <onos.app.name>org.onosproject.t3</onos.app.name>
38 <onos.app.title>Trellis Troubleshooting Toolkit</onos.app.title>
39 <onos.app.category>Utilities</onos.app.category>
40 <onos.app.url>http://onosproject.org</onos.app.url>
41 <onos.app.readme>T3 APP and API support to determine the paths of packets</onos.app.readme>
psneha3adf3652018-06-25 10:08:35 -040042 </properties>
43
44 <dependencies>
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-api</artifactId>
48 <version>${onos.version}</version>
49 </dependency>
50
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-apps-t3-app</artifactId>
54 <version>${onos.version}</version>
55 </dependency>
56
57 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onlab-osgi</artifactId>
60 <version>${onos.version}</version>
61 </dependency>
62
63
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onlab-misc</artifactId>
67 <version>${onos.version}</version>
68 </dependency>
69
70 <dependency>
71 <groupId>junit</groupId>
72 <artifactId>junit</artifactId>
73 <version>4.12</version>
74 <scope>test</scope>
75 </dependency>
76
77 <dependency>
78 <groupId>org.onosproject</groupId>
79 <artifactId>onos-api</artifactId>
80 <version>${onos.version}</version>
81 <scope>test</scope>
82 <classifier>tests</classifier>
83 </dependency>
84
85 <dependency>
86 <groupId>org.apache.felix</groupId>
87 <artifactId>org.apache.felix.scr.annotations</artifactId>
88 <version>1.9.12</version>
89 <scope>provided</scope>
90 </dependency>
91 <dependency>
92 <groupId>javax.ws.rs</groupId>
93 <artifactId>javax.ws.rs-api</artifactId>
94 <version>2.1</version>
95 <scope>provided</scope>
96 </dependency>
97
98 <dependency>
99 <groupId>org.onosproject</groupId>
100 <artifactId>onos-api</artifactId>
101 <version>${onos.version}</version>
102 <classifier>tests</classifier>
103 <scope>test</scope>
104 </dependency>
105
106 <dependency>
107 <groupId>org.onosproject</groupId>
108 <artifactId>onos-rest</artifactId>
109 <version>${onos.version}</version>
110 <scope>provided</scope>
111 </dependency>
112
113 <dependency>
114 <groupId>org.glassfish.jersey.containers</groupId>
115 <artifactId>jersey-container-servlet</artifactId>
116 <version>2.25.1</version>
117 <scope>provided</scope>
118 </dependency>
119
120 <dependency>
121 <groupId>org.onosproject</groupId>
122 <artifactId>onlab-rest</artifactId>
123 <version>${onos.version}</version>
124 <scope>provided</scope>
125 </dependency>
126 <dependency>
127 <groupId>org.onosproject</groupId>
128 <artifactId>onos-cli</artifactId>
129 <version>${onos.version}</version>
130 <scope>provided</scope>
131 </dependency>
132 <dependency>
133 <groupId>org.apache.karaf.shell</groupId>
134 <artifactId>org.apache.karaf.shell.console</artifactId>
135 <version>3.0.8</version>
136 <scope>provided</scope>
137 </dependency>
138 </dependencies>
139
140 <build>
141 <plugins>
142 <plugin>
143 <groupId>org.apache.felix</groupId>
144 <artifactId>maven-bundle-plugin</artifactId>
145 <version>3.0.1</version>
146 <extensions>true</extensions>
147 <configuration>
148 <instructions>
149 <_wab>src/main/webapp/</_wab>
150 <Include-Resource>WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
151 {maven-resources}
152 </Include-Resource>
153 <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
154 <Import-Package>*,org.glassfish.jersey.servlet</Import-Package>
155 <Web-ContextPath>${web.context}</Web-ContextPath>
156 </instructions>
157 </configuration>
158 </plugin>
psneha3adf3652018-06-25 10:08:35 -0400159 </plugins>
160 </build>
161
162</project>