blob: 2a695d2d42958a386f6224fba07b287edd179048 [file] [log] [blame]
chengfan8ea6a562016-11-26 16:37:02 +08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ /*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07004 ~ * Copyright 2016-present Open Networking Foundation
chengfan8ea6a562016-11-26 16:37:02 +08005 ~ *
6 ~ * Licensed under the Apache License, Version 2.0 (the "License");
7 ~ * you may not use this file except in compliance with the License.
8 ~ * You may obtain a copy of the License at
9 ~ *
10 ~ * http://www.apache.org/licenses/LICENSE-2.0
11 ~ *
12 ~ * Unless required by applicable law or agreed to in writing, software
13 ~ * distributed under the License is distributed on an "AS IS" BASIS,
14 ~ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 ~ * See the License for the specific language governing permissions and
16 ~ * limitations under the License.
17 ~ */
18 -->
19
20<project xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <parent>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070024 <artifactId>onos-apps-tenbi</artifactId>
chengfan8ea6a562016-11-26 16:37:02 +080025 <groupId>org.onosproject</groupId>
ONOS Jenkins User3594c242018-08-14 22:13:02 +000026 <version>1.14.0-rc2</version>
chengfan8ea6a562016-11-26 16:37:02 +080027 </parent>
28 <modelVersion>4.0.0</modelVersion>
29
Yuta HIGUCHI78472272018-05-03 17:08:16 -070030 <artifactId>onos-apps-tenbi-tunnel</artifactId>
chengfan8ea6a562016-11-26 16:37:02 +080031 <packaging>bundle</packaging>
32 <description>IETF TE Tunnel NBI</description>
33
34 <dependencies>
35 <dependency>
36 <groupId>org.onosproject</groupId>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070037 <artifactId>onos-apps-tenbi-yangmodel</artifactId>
chengfan8ea6a562016-11-26 16:37:02 +080038 <version>${project.version}</version>
39 </dependency>
40 <dependency>
41 <groupId>org.onosproject</groupId>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070042 <artifactId>onos-apps-tenbi-utils</artifactId>
chengfan8ea6a562016-11-26 16:37:02 +080043 <version>${project.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>org.onosproject</groupId>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070047 <artifactId>onos-apps-yms-api</artifactId>
chengfan8ea6a562016-11-26 16:37:02 +080048 <version>${project.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-incubator-api</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.onosproject</groupId>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070057 <artifactId>onos-apps-tetunnel-api</artifactId>
chengfan8ea6a562016-11-26 16:37:02 +080058 <version>${project.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>org.onosproject</groupId>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070062 <artifactId>onos-apps-tetopology-api</artifactId>
chengfan8ea6a562016-11-26 16:37:02 +080063 <version>${project.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>org.easymock</groupId>
67 <artifactId>easymock</artifactId>
68 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onlab-junit</artifactId>
73 <scope>test</scope>
74 </dependency>
75 </dependencies>
76 <build>
77 <plugins>
78 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-bundle-plugin</artifactId>
81 <version>3.2.0</version>
82 <extensions>true</extensions>
83 <configuration>
84 <instructions>
85 <Private-Package>
86 org.onosproject.yang.gen.*,
87 org.onosproject.teyang.*,
88 <!--org.onosproject.tetopology.management.api.*,-->
89 </Private-Package>
90 </instructions>
91 </configuration>
92 </plugin>
Yuta HIGUCHI488a94c2018-01-26 17:24:09 -080093
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-compiler-plugin</artifactId>
97 <configuration>
98 <compilerArgs>
99 <arg>-XepDisableAllChecks</arg>
100 <arg>-Xep:BetaApi:OFF</arg>
101 </compilerArgs>
102 </configuration>
103 <executions>
104 <execution>
105 <phase>compile</phase>
106 <goals>
107 <goal>compile</goal>
108 </goals>
109 <configuration>
110 <compilerArgs>
111 <arg>-XepDisableAllChecks</arg>
112 <arg>-Xep:BetaApi:OFF</arg>
113 </compilerArgs>
114 </configuration>
115 </execution>
116 </executions>
117 </plugin>
118
chengfan8ea6a562016-11-26 16:37:02 +0800119 </plugins>
120 </build>
121
122</project>