Lighty support in Magnesium
[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         <!-- TPCE Models - END -->
64
65         <!-- TPCE bundles - BEGIN -->
66         <dependency>
67             <groupId>org.opendaylight.transportpce</groupId>
68             <artifactId>transportpce-pce</artifactId>
69             <version>${transportpce.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.transportpce</groupId>
73             <artifactId>transportpce-olm</artifactId>
74             <version>${transportpce.version}</version>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.transportpce</groupId>
78             <artifactId>transportpce-servicehandler</artifactId>
79             <version>${transportpce.version}</version>
80         </dependency>
81         <!-- TPCE bundles - END -->
82
83         <dependency>
84             <groupId>io.lighty.modules</groupId>
85             <artifactId>lighty-netconf-sb</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>io.lighty.modules</groupId>
89             <artifactId>lighty-restconf-nb-community</artifactId>
90         </dependency>
91
92     </dependencies>
93     <build>
94         <finalName>tpce</finalName>
95     </build>
96 </project>