blob: 3bb5fdd84e2efa69302a3060b5ec488ebcb42097 [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) )
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -07006<?xml version="1.0" encoding="UTF-8"?>
7<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07008 ~ Copyright ${year} Open Networking Foundation
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -07009 ~
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 Vachuskaa2ae4222015-04-29 18:42:09 -070031 <groupId>${groupId}</groupId>
32 <artifactId>${artifactId}</artifactId>
33 <version>${version}</version>
34 <packaging>bundle</packaging>
35
Simon Hunt84f4c2a2015-09-23 17:52:45 -070036 <description>ONOS OSGi UI Custom-View bundle archetype</description>
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070037 <url>http://onosproject.org</url>
38
39 <properties>
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070040 <!-- Uncomment to generate ONOS app from this module.
41 <onos.app.name>org.foo.app</onos.app.name>
Simon Huntafae2f72016-03-04 21:18:23 -080042 <onos.app.title>Foo App</onos.app.title>
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070043 <onos.app.origin>Foo, Inc.</onos.app.origin>
Jian Lied627a52016-01-19 14:29:18 -080044 <onos.app.category>UI</onos.app.category>
45 <onos.app.url>http://onosproject.org</onos.app.url>
46 <onos.app.readme>ONOS OSGi UI Custom-View bundle archetype.</onos.app.readme>
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070047 -->
48 </properties>
49
50 <dependencies>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-api</artifactId>
54 <version>${onos.version}</version>
Carmelo Cascone87b893e2019-11-12 10:34:05 -080055 <scope>provided</scope>
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070056 </dependency>
57
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onlab-osgi</artifactId>
61 <version>${onos.version}</version>
Carmelo Cascone87b893e2019-11-12 10:34:05 -080062 <scope>provided</scope>
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070063 </dependency>
64
65 <dependency>
66 <groupId>org.onosproject</groupId>
67 <artifactId>onos-api</artifactId>
68 <version>${onos.version}</version>
69 <scope>test</scope>
70 <classifier>tests</classifier>
71 </dependency>
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070072 </dependencies>
73
74 <build>
75 <plugins>
76 <plugin>
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070077 <groupId>org.onosproject</groupId>
78 <artifactId>onos-maven-plugin</artifactId>
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070079 </plugin>
80 </plugins>
81 </build>
82
83</project>