blob: 6aa5e582a1398d67173b47a96b7b59e24a92ea19 [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 -->
Carmelo Casconeb3b06912019-11-18 15:56:51 -080029<project xmlns="http://maven.apache.org/POM/4.0.0"
30 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
31 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Sean Condona36f65c2019-05-20 08:21:41 +010032 <modelVersion>4.0.0</modelVersion>
33
Carmelo Cascone87b893e2019-11-12 10:34:05 -080034 <parent>
35 <groupId>org.onosproject</groupId>
36 <artifactId>onos-dependencies</artifactId>
37 <version>${onosVersion}</version>
38 </parent>
39
Sean Condona36f65c2019-05-20 08:21:41 +010040 <groupId>${groupId}</groupId>
41 <artifactId>${artifactId}</artifactId>
42 <version>${version}</version>
43 <packaging>pom</packaging>
44
45 <description>ONOS OSGi GUI2 Custom-View bundle archetype</description>
46 <url>http://onosproject.org</url>
47
Sean Condona36f65c2019-05-20 08:21:41 +010048 <modules>
49 <module>app</module>
50 <module>web/${artifactId}-gui</module>
51 </modules>
52
Carmelo Casconeb3b06912019-11-18 15:56:51 -080053 <build>
54 <plugins>
55 <plugin>
56 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-checkstyle-plugin</artifactId>
58 <!-- Uncomment to disable checkstyle validation
59 <configuration>
60 <skip>true</skip>
61 </configuration>
62 -->
63 </plugin>
64 </plugins>
65 </build>
66
Sean Condona36f65c2019-05-20 08:21:41 +010067</project>