blob: 05da40ce107e3a3296aa0ee027ced820d2199b2e [file] [log] [blame]
Sean Condona36f65c2019-05-20 08:21:41 +01001#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) )
6#set ($artifactId = "${artifactId}")
7#set ($appNameCap = $artifactId.substring(0,1).toUpperCase())
8#set ($appNameEnd = $artifactId.substring(1).replace("-","").toLowerCase())
Sean Condon13f42b72019-05-31 16:17:52 +01009#set ($appNameTitle = $appNameCap + $appNameEnd)
Sean Condon27f06da2019-05-25 17:02:14 +010010#set ($appNameAllCaps = $artifactId.replace("-","_").toUpperCase())
Sean Condon13f42b72019-05-31 16:17:52 +010011#set ($appNameAllLower = $artifactId.replace("-","").toLowerCase())
Sean Condon27f06da2019-05-25 17:02:14 +010012#set( $symbol_h2 = '##' )
Sean Condona36f65c2019-05-20 08:21:41 +010013<?xml version="1.0" encoding="UTF-8"?>
14<!--
15 ~ Copyright ${year} Open Networking Foundation
16 ~
17 ~ Licensed under the Apache License, Version 2.0 (the "License");
18 ~ you may not use this file except in compliance with the License.
19 ~ You may obtain a copy of the License at
20 ~
21 ~ http://www.apache.org/licenses/LICENSE-2.0
22 ~
23 ~ Unless required by applicable law or agreed to in writing, software
24 ~ distributed under the License is distributed on an "AS IS" BASIS,
25 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
26 ~ See the License for the specific language governing permissions and
27 ~ limitations under the License.
28 -->
29<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">
30 <modelVersion>4.0.0</modelVersion>
31
Carmelo Cascone27b97122019-11-12 10:34:05 -080032 <parent>
33 <groupId>org.onosproject</groupId>
34 <artifactId>onos-dependencies</artifactId>
35 <version>${onosVersion}</version>
36 </parent>
37
Sean Condona36f65c2019-05-20 08:21:41 +010038 <groupId>${groupId}</groupId>
39 <artifactId>${artifactId}</artifactId>
40 <version>${version}</version>
41 <packaging>pom</packaging>
42
43 <description>ONOS OSGi GUI2 Custom-View bundle archetype</description>
44 <url>http://onosproject.org</url>
45
Sean Condona36f65c2019-05-20 08:21:41 +010046 <modules>
47 <module>app</module>
48 <module>web/${artifactId}-gui</module>
49 </modules>
50
51</project>