blob: ba793930cc748f697d2662baeb7ae925387cc1bf [file] [log] [blame]
Jian Lic6c76dc2016-01-26 14:22:51 -08001#set( $dummy = "" )
2#set( $date = $dummy.getClass().forName("java.util.Date").newInstance() )
3#set( $format = $dummy.getClass().forName("java.text.SimpleDateFormat").newInstance() )
4#set( $pattern = $format.applyPattern("yyyy") )
5#set( $year = $format.format($date) )
HIGUCHI Yutae7bfaae2016-02-25 10:09:27 -08006<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -08007<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07008 ~ Copyright ${year} Open Networking Foundation
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -08009 ~
10 ~ Licensed under the Apache License, Version 2.0 (the "License");
11 ~ you may not use this file except in compliance with the License.
12 ~ You may obtain a copy of the License at
13 ~
14 ~ http://www.apache.org/licenses/LICENSE-2.0
15 ~
16 ~ Unless required by applicable law or agreed to in writing, software
17 ~ distributed under the License is distributed on an "AS IS" BASIS,
18 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 ~ See the License for the specific language governing permissions and
20 ~ limitations under the License.
21 -->
Carmelo Casconeb3b06912019-11-18 15:56:51 -080022<project xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080025 <modelVersion>4.0.0</modelVersion>
26
Carmelo Cascone87b893e2019-11-12 10:34:05 -080027 <parent>
28 <groupId>org.onosproject</groupId>
29 <artifactId>onos-dependencies</artifactId>
30 <version>${onosVersion}</version>
31 </parent>
32
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080033 <groupId>${groupId}</groupId>
34 <artifactId>${artifactId}</artifactId>
35 <version>${version}</version>
36 <packaging>bundle</packaging>
37
38 <description>ONOS OSGi API bundle archetype</description>
39 <url>http://onosproject.org</url>
40
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080041 <dependencies>
42 <dependency>
43 <groupId>org.onosproject</groupId>
44 <artifactId>onos-api</artifactId>
45 <version>${onos.version}</version>
Carmelo Cascone87b893e2019-11-12 10:34:05 -080046 <scope>provided</scope>
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080047 </dependency>
48 </dependencies>
49
Carmelo Casconeb3b06912019-11-18 15:56:51 -080050 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-checkstyle-plugin</artifactId>
55 <!-- Uncomment to disable checkstyle validation
56 <configuration>
57 <skip>true</skip>
58 </configuration>
59 -->
60 </plugin>
61 </plugins>
62 </build>
63
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080064</project>