T-API support in Lighty
[transportpce.git] / lighty / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2018 Pantheon Technologies s.r.o. All Rights Reserved.
3     This program and the accompanying materials are made available under the
4     terms of the Eclipse Public License v1.0 which accompanies this distribution,
5     and is available at https://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0"
7     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9     <modelVersion>4.0.0</modelVersion>
10
11     <parent>
12         <groupId>io.lighty.core</groupId>
13         <artifactId>lighty-app-parent</artifactId>
14         <version>12.1.0</version>
15         <relativePath />
16     </parent>
17
18     <groupId>io.lighty.controllers</groupId>
19     <artifactId>tpce</artifactId>
20     <version>2.0.0-SNAPSHOT</version>
21     <packaging>jar</packaging>
22
23     <properties>
24         <application.main.class>io.lighty.controllers.tpce.Main</application.main.class>
25         <application.attach.zip>true</application.attach.zip>
26         <maven.deploy.skip>true</maven.deploy.skip>
27         <transportpce.version>2.0.0-SNAPSHOT</transportpce.version>
28     </properties>
29
30     <dependencies>
31
32         <!-- TPCE Models - BEGIN -->
33         <dependency>
34             <groupId>org.opendaylight.transportpce</groupId>
35             <artifactId>transportpce-api</artifactId>
36             <version>${transportpce.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.transportpce.ordmodels</groupId>
40             <artifactId>transportpce-ordmodels-common</artifactId>
41             <version>${transportpce.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.transportpce.ordmodels</groupId>
45             <artifactId>transportpce-ordmodels-device</artifactId>
46             <version>${transportpce.version}</version>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.transportpce.ordmodels</groupId>
50             <artifactId>transportpce-ordmodels-network</artifactId>
51             <version>${transportpce.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.transportpce.ordmodels</groupId>
55             <artifactId>transportpce-ordmodels-service</artifactId>
56             <version>${transportpce.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.transportpce</groupId>
60             <artifactId>transportpce-networkmodel</artifactId>
61             <version>${transportpce.version}</version>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.transportpce</groupId>
65             <artifactId>transportpce-tapimodels</artifactId>
66             <version>${transportpce.version}</version>
67         </dependency>
68         <!-- TPCE Models - END -->
69
70         <!-- TPCE bundles - BEGIN -->
71         <dependency>
72             <groupId>org.opendaylight.transportpce</groupId>
73             <artifactId>transportpce-pce</artifactId>
74             <version>${transportpce.version}</version>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.transportpce</groupId>
78             <artifactId>transportpce-olm</artifactId>
79             <version>${transportpce.version}</version>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.transportpce</groupId>
83             <artifactId>transportpce-servicehandler</artifactId>
84             <version>${transportpce.version}</version>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.transportpce</groupId>
88             <artifactId>transportpce-tapi</artifactId>
89             <version>${transportpce.version}</version>
90         </dependency>
91         <!-- TPCE bundles - END -->
92
93         <dependency>
94             <groupId>io.lighty.modules</groupId>
95             <artifactId>lighty-netconf-sb</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>io.lighty.modules</groupId>
99             <artifactId>lighty-restconf-nb-community</artifactId>
100         </dependency>
101
102     </dependencies>
103     <build>
104         <finalName>tpce</finalName>
105     </build>
106 </project>