blob: 7775946d818323385dbcf19677cc669d41352c9e [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) )
Simon Hunt84f4c2a2015-09-23 17:52:45 -07006<?xml version="1.0" encoding="UTF-8"?>
7
8<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07009 ~ Copyright ${year} Open Networking Foundation
Simon Hunt84f4c2a2015-09-23 17:52:45 -070010 ~
11 ~ Licensed under the Apache License, Version 2.0 (the "License");
12 ~ you may not use this file except in compliance with the License.
13 ~ You may obtain a copy of the License at
14 ~
15 ~ http://www.apache.org/licenses/LICENSE-2.0
16 ~
17 ~ Unless required by applicable law or agreed to in writing, software
18 ~ distributed under the License is distributed on an "AS IS" BASIS,
19 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 ~ See the License for the specific language governing permissions and
21 ~ limitations under the License.
22 -->
23<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">
24 <modelVersion>4.0.0</modelVersion>
25
Carmelo Cascone87b893e2019-11-12 10:34:05 -080026 <parent>
27 <groupId>org.onosproject</groupId>
28 <artifactId>onos-dependencies</artifactId>
29 <version>${onosVersion}</version>
30 </parent>
31
Simon Hunt84f4c2a2015-09-23 17:52:45 -070032 <groupId>${groupId}</groupId>
33 <artifactId>${artifactId}</artifactId>
34 <version>${version}</version>
35 <packaging>bundle</packaging>
36
37 <description>ONOS OSGi UI Table-View bundle archetype</description>
38 <url>http://onosproject.org</url>
39
40 <properties>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070041 <!-- Uncomment to generate ONOS app from this module.
42 <onos.app.name>org.foo.app</onos.app.name>
Simon Huntafae2f72016-03-04 21:18:23 -080043 <onos.app.title>Foo App</onos.app.title>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070044 <onos.app.origin>Foo, Inc.</onos.app.origin>
Jian Lied627a52016-01-19 14:29:18 -080045 <onos.app.category>UI</onos.app.category>
46 <onos.app.url>http://onosproject.org</onos.app.url>
47 <onos.app.readme>ONOS OSGi UI Table-View bundle archetype.</onos.app.readme>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070048 -->
49 </properties>
50
51 <dependencies>
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-api</artifactId>
55 <version>${onos.version}</version>
Carmelo Cascone87b893e2019-11-12 10:34:05 -080056 <scope>provided</scope>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070057 </dependency>
58
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onlab-osgi</artifactId>
62 <version>${onos.version}</version>
Carmelo Cascone87b893e2019-11-12 10:34:05 -080063 <scope>provided</scope>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070064 </dependency>
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-api</artifactId>
69 <version>${onos.version}</version>
70 <scope>test</scope>
71 <classifier>tests</classifier>
72 </dependency>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070073 </dependencies>
74
75 <build>
76 <plugins>
77 <plugin>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070078 <groupId>org.onosproject</groupId>
79 <artifactId>onos-maven-plugin</artifactId>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070080 </plugin>
81 </plugins>
82 </build>
83
84</project>