blob: 28281a9f738497a2b5efd7c87e9feeeb504e8d6e [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
25 <groupId>${groupId}</groupId>
26 <artifactId>${artifactId}</artifactId>
27 <version>${version}</version>
28 <packaging>bundle</packaging>
29
30 <description>ONOS OSGi API bundle archetype</description>
31 <url>http://onosproject.org</url>
32
33 <properties>
HIGUCHI Yuta9caa3a02016-01-09 23:17:54 -080034 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Ray Milkey64677e92017-08-01 10:48:08 -070035 <onos.version>1.11.0-SNAPSHOT</onos.version>
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080036 </properties>
37
38 <dependencies>
39 <dependency>
40 <groupId>org.onosproject</groupId>
41 <artifactId>onos-api</artifactId>
42 <version>${onos.version}</version>
43 </dependency>
44 </dependencies>
45
46 <build>
47 <plugins>
48 <plugin>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>maven-bundle-plugin</artifactId>
HIGUCHI Yuta9caa3a02016-01-09 23:17:54 -080051 <version>3.0.1</version>
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080052 <extensions>true</extensions>
53 </plugin>
Brian O'Connor0b351912014-12-11 14:40:31 -080054 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-compiler-plugin</artifactId>
57 <version>2.5.1</version>
58 <configuration>
59 <source>1.8</source>
60 <target>1.8</target>
61 </configuration>
62 </plugin>
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080063 </plugins>
64 </build>
65
66</project>