f06c97d00de440882656d27f66357258a4b87061
[transportpce.git] / lighty / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   Copyright (c) 2018 Pantheon Technologies s.r.o. All Rights Reserved.
4
5   This program and the accompanying materials are made available under the
6   terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   and is available at https://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10     <modelVersion>4.0.0</modelVersion>
11
12     <parent>
13         <groupId>io.lighty.core</groupId>
14         <artifactId>lighty-app-parent</artifactId>
15         <version>12.0.0-SNAPSHOT</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>io.lighty.examples.controllers</groupId>
20     <artifactId>lighty-transportpce</artifactId>
21     <version>12.0.0-SNAPSHOT</version>
22     <packaging>jar</packaging>
23
24     <properties>
25         <application.main.class>io.lighty.controllers.tpce.Main</application.main.class>
26         <application.attach.zip>true</application.attach.zip>
27         <maven.deploy.skip>true</maven.deploy.skip>
28         <transportpce.version>2.0.0-SNAPSHOT</transportpce.version>
29     </properties>
30
31     <dependencies>
32
33         <!-- TPCE Models - BEGIN -->
34         <dependency>
35             <groupId>org.opendaylight.transportpce</groupId>
36             <artifactId>transportpce-api</artifactId>
37             <version>${transportpce.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.transportpce.ordmodels</groupId>
41             <artifactId>transportpce-ordmodels-common</artifactId>
42             <version>${transportpce.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.transportpce.ordmodels</groupId>
46             <artifactId>transportpce-ordmodels-device</artifactId>
47             <version>${transportpce.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.transportpce.ordmodels</groupId>
51             <artifactId>transportpce-ordmodels-network</artifactId>
52             <version>${transportpce.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.transportpce.ordmodels</groupId>
56             <artifactId>transportpce-ordmodels-service</artifactId>
57             <version>${transportpce.version}</version>
58         </dependency>
59         <!-- TPCE Models -   END -->
60
61         <!-- TPCE bundles - BEGIN -->
62         <dependency>
63             <groupId>org.opendaylight.transportpce</groupId>
64             <artifactId>transportpce-pce</artifactId>
65             <version>${transportpce.version}</version>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.transportpce</groupId>
69             <artifactId>transportpce-olm</artifactId>
70             <version>${transportpce.version}</version>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.transportpce</groupId>
74             <artifactId>transportpce-servicehandler</artifactId>
75             <version>${transportpce.version}</version>
76         </dependency>
77         <!-- TPCE bundles -   END -->
78
79         <dependency>
80             <groupId>io.lighty.modules</groupId>
81             <artifactId>lighty-netconf-sb</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>io.lighty.modules</groupId>
85             <artifactId>lighty-restconf-nb-community</artifactId>
86             <exclusions>
87                 <!-- FIXME: why is this exclusion needed? can we move it somewhere else? -->
88                 <exclusion>
89                     <groupId>javax.ws.rs</groupId>
90                     <artifactId>javax.ws.rs-api</artifactId>
91                 </exclusion>
92             </exclusions>
93         </dependency>
94
95         <dependency>
96             <groupId>io.lighty.resources</groupId>
97             <artifactId>singlenode-configuration</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>io.lighty.resources</groupId>
101             <artifactId>log4j-properties</artifactId>
102         </dependency>
103
104         <dependency>
105             <groupId>org.eclipse.jetty</groupId>
106             <artifactId>jetty-server</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>javax.servlet</groupId>
110             <artifactId>javax.servlet-api</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.eclipse.jetty</groupId>
114             <artifactId>jetty-webapp</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.eclipse.jetty</groupId>
118             <artifactId>jetty-servlets</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>org.glassfish.jersey.core</groupId>
122             <artifactId>jersey-server</artifactId>
123         </dependency>
124         <dependency>
125             <groupId>org.glassfish.jersey.containers</groupId>
126             <artifactId>jersey-container-jetty-http</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>org.glassfish.jersey.inject</groupId>
130             <artifactId>jersey-hk2</artifactId>
131         </dependency>
132         <dependency>
133             <groupId>javax.ws.rs</groupId>
134             <artifactId>javax.ws.rs-api</artifactId>
135         </dependency>
136
137         <dependency>
138             <groupId>org.eclipse.jetty</groupId>
139             <artifactId>jetty-client</artifactId>
140             <scope>test</scope>
141         </dependency>
142     </dependencies>
143 </project>