blob: c1465c7ac8e72a9f32d7bd615ce8c374300820fc [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
32 <groupId>${groupId}</groupId>
33 <artifactId>${artifactId}</artifactId>
34 <version>${version}</version>
35 <packaging>pom</packaging>
36
37 <description>ONOS OSGi GUI2 Custom-View bundle archetype</description>
38 <url>http://onosproject.org</url>
39
40 <properties>
41 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
ONOS Jenkins User4ea2dcf2019-07-29 18:14:35 +000042 <onos.version>2.2.0-SNAPSHOT</onos.version>
Sean Condona36f65c2019-05-20 08:21:41 +010043 </properties>
44
45 <modules>
46 <module>app</module>
47 <module>web/${artifactId}-gui</module>
48 </modules>
49
50</project>