blob: b3fbc77439153eb6236fe3dfef95b7695eda01f7 [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>
Ray Milkey312d9872018-08-20 16:09:54 -070025 <version>1.15.0-SNAPSHOT</version>
psneha3adf3652018-06-25 10:08:35 -040026 </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>
psneha3adf3652018-06-25 10:08:35 -0400100 <artifactId>onos-rest</artifactId>
101 <version>${onos.version}</version>
102 <scope>provided</scope>
103 </dependency>
104
105 <dependency>
106 <groupId>org.glassfish.jersey.containers</groupId>
107 <artifactId>jersey-container-servlet</artifactId>
108 <version>2.25.1</version>
109 <scope>provided</scope>
110 </dependency>
111
112 <dependency>
113 <groupId>org.onosproject</groupId>
114 <artifactId>onlab-rest</artifactId>
115 <version>${onos.version}</version>
116 <scope>provided</scope>
117 </dependency>
118 <dependency>
119 <groupId>org.onosproject</groupId>
120 <artifactId>onos-cli</artifactId>
121 <version>${onos.version}</version>
122 <scope>provided</scope>
123 </dependency>
124 <dependency>
125 <groupId>org.apache.karaf.shell</groupId>
126 <artifactId>org.apache.karaf.shell.console</artifactId>
127 <version>3.0.8</version>
128 <scope>provided</scope>
129 </dependency>
130 </dependencies>
131
132 <build>
133 <plugins>
134 <plugin>
135 <groupId>org.apache.felix</groupId>
136 <artifactId>maven-bundle-plugin</artifactId>
137 <version>3.0.1</version>
138 <extensions>true</extensions>
139 <configuration>
140 <instructions>
141 <_wab>src/main/webapp/</_wab>
142 <Include-Resource>WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
143 {maven-resources}
144 </Include-Resource>
145 <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
146 <Import-Package>*,org.glassfish.jersey.servlet</Import-Package>
147 <Web-ContextPath>${web.context}</Web-ContextPath>
148 </instructions>
149 </configuration>
150 </plugin>
psneha3adf3652018-06-25 10:08:35 -0400151 </plugins>
152 </build>
153
154</project>