blob: 3551265900844352bb2e70b1c7b8e971f00ca0f0 [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 -->
Carmelo Casconebcc61712019-11-18 15:56:51 -080023<project xmlns="http://maven.apache.org/POM/4.0.0"
24 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Simon Hunt84f4c2a2015-09-23 17:52:45 -070026 <modelVersion>4.0.0</modelVersion>
27
Carmelo Cascone27b97122019-11-12 10:34:05 -080028 <parent>
29 <groupId>org.onosproject</groupId>
30 <artifactId>onos-dependencies</artifactId>
31 <version>${onosVersion}</version>
32 </parent>
33
Simon Hunt84f4c2a2015-09-23 17:52:45 -070034 <groupId>${groupId}</groupId>
35 <artifactId>${artifactId}</artifactId>
36 <version>${version}</version>
37 <packaging>bundle</packaging>
38
39 <description>ONOS OSGi UI Table-View bundle archetype</description>
40 <url>http://onosproject.org</url>
41
42 <properties>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070043 <!-- Uncomment to generate ONOS app from this module.
44 <onos.app.name>org.foo.app</onos.app.name>
Simon Huntafae2f72016-03-04 21:18:23 -080045 <onos.app.title>Foo App</onos.app.title>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070046 <onos.app.origin>Foo, Inc.</onos.app.origin>
Jian Lied627a52016-01-19 14:29:18 -080047 <onos.app.category>UI</onos.app.category>
48 <onos.app.url>http://onosproject.org</onos.app.url>
49 <onos.app.readme>ONOS OSGi UI Table-View bundle archetype.</onos.app.readme>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070050 -->
51 </properties>
52
53 <dependencies>
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onos-api</artifactId>
57 <version>${onos.version}</version>
Carmelo Cascone27b97122019-11-12 10:34:05 -080058 <scope>provided</scope>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070059 </dependency>
60
61 <dependency>
62 <groupId>org.onosproject</groupId>
63 <artifactId>onlab-osgi</artifactId>
64 <version>${onos.version}</version>
Carmelo Cascone27b97122019-11-12 10:34:05 -080065 <scope>provided</scope>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070066 </dependency>
67
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onos-api</artifactId>
71 <version>${onos.version}</version>
72 <scope>test</scope>
73 <classifier>tests</classifier>
74 </dependency>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070075 </dependencies>
76
77 <build>
78 <plugins>
79 <plugin>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070080 <groupId>org.onosproject</groupId>
81 <artifactId>onos-maven-plugin</artifactId>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070082 </plugin>
Carmelo Casconebcc61712019-11-18 15:56:51 -080083 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-checkstyle-plugin</artifactId>
86 <!-- Uncomment to disable checkstyle validation
87 <configuration>
88 <skip>true</skip>
89 </configuration>
90 -->
91 </plugin>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070092 </plugins>
93 </build>
94
95</project>