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>
12 <groupId>io.lighty.core</groupId>
13 <artifactId>lighty-app-parent</artifactId>
14 <version>16.0.0</version>
18 <groupId>io.lighty.controllers</groupId>
19 <artifactId>tpce</artifactId>
20 <version>6.0.0-SNAPSHOT</version>
21 <packaging>jar</packaging>
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>6.0.0-SNAPSHOT</transportpce.version>
31 <!-- for parsing command line arguments -->
33 <groupId>commons-cli</groupId>
34 <artifactId>commons-cli</artifactId>
35 <version>1.4</version>
37 <!-- TPCE Models - BEGIN -->
39 <groupId>org.opendaylight.transportpce</groupId>
40 <artifactId>transportpce-api</artifactId>
41 <version>${transportpce.version}</version>
44 <groupId>org.opendaylight.transportpce</groupId>
45 <artifactId>transportpce-networkmodel</artifactId>
46 <version>${transportpce.version}</version>
48 <!-- TPCE Models - END -->
49 <!-- TPCE bundles - BEGIN -->
51 <groupId>org.opendaylight.transportpce</groupId>
52 <artifactId>transportpce-pce</artifactId>
53 <version>${transportpce.version}</version>
56 <groupId>org.opendaylight.transportpce</groupId>
57 <artifactId>transportpce-olm</artifactId>
58 <version>${transportpce.version}</version>
61 <groupId>org.opendaylight.transportpce</groupId>
62 <artifactId>transportpce-servicehandler</artifactId>
63 <version>${transportpce.version}</version>
66 <groupId>org.opendaylight.transportpce</groupId>
67 <artifactId>transportpce-tapi</artifactId>
68 <version>${transportpce.version}</version>
71 <groupId>org.opendaylight.transportpce</groupId>
72 <artifactId>transportpce-nbinotifications</artifactId>
73 <version>${transportpce.version}</version>
75 <!-- TPCE bundles - END -->
77 <groupId>io.lighty.modules</groupId>
78 <artifactId>lighty-netconf-sb</artifactId>
81 <groupId>io.lighty.modules</groupId>
82 <artifactId>lighty-restconf-nb-community</artifactId>
85 <groupId>junit</groupId>
86 <artifactId>junit</artifactId>
90 <groupId>net.jcip</groupId>
91 <artifactId>jcip-annotations</artifactId>
92 <version>1.0</version>
93 <optional>true</optional>
96 <groupId>com.github.spotbugs</groupId>
97 <artifactId>spotbugs-annotations</artifactId>
98 <optional>true</optional>
101 <groupId>org.eclipse.jetty</groupId>
102 <artifactId>jetty-client</artifactId>
108 <finalName>tpce</finalName>
111 <artifactId>maven-jar-plugin</artifactId>
115 <addClasspath>true</addClasspath>
116 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
117 <addDefaultSpecificationEntries>True</addDefaultSpecificationEntries>
123 <artifactId>maven-checkstyle-plugin</artifactId>
125 <configLocation>odl_checks.xml</configLocation>
126 <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
127 <!-- <sourceDirectories> are needed so that checkstyle
128 ignores the generated sources directory -->
130 <directory>${project.build.sourceDirectory}</directory>
132 <includeResources>true</includeResources>
133 <includeTestSourceDirectory>true</includeTestSourceDirectory>
134 <includeTestResources>true</includeTestResources>
135 <includes>**\/*.java</includes>
137 **/protobuff/messages/**,
138 **/thrift/gen/*.java,
141 <consoleOutput>true</consoleOutput>
146 <phase>validate</phase>