blob: acded36f8fddcbcaefc3e275263daf6e3819858a [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 -->
22<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24
Carmelo Cascone87b893e2019-11-12 10:34:05 -080025 <parent>
26 <groupId>org.onosproject</groupId>
27 <artifactId>onos-dependencies</artifactId>
28 <version>${onosVersion}</version>
29 </parent>
30
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080031 <groupId>${groupId}</groupId>
32 <artifactId>${artifactId}</artifactId>
33 <version>${version}</version>
34 <packaging>bundle</packaging>
35
36 <description>ONOS OSGi API bundle archetype</description>
37 <url>http://onosproject.org</url>
38
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080039 <dependencies>
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-api</artifactId>
43 <version>${onos.version}</version>
Carmelo Cascone87b893e2019-11-12 10:34:05 -080044 <scope>provided</scope>
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080045 </dependency>
46 </dependencies>
47
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080048</project>