Sean Condon | a36f65c | 2019-05-20 08:21:41 +0100 | [diff] [blame] | 1 | #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 Condon | 13f42b7 | 2019-05-31 16:17:52 +0100 | [diff] [blame] | 9 | #set ($appNameTitle = $appNameCap + $appNameEnd) |
Sean Condon | 27f06da | 2019-05-25 17:02:14 +0100 | [diff] [blame] | 10 | #set ($appNameAllCaps = $artifactId.replace("-","_").toUpperCase()) |
Sean Condon | 13f42b7 | 2019-05-31 16:17:52 +0100 | [diff] [blame] | 11 | #set ($appNameAllLower = $artifactId.replace("-","").toLowerCase()) |
Sean Condon | 27f06da | 2019-05-25 17:02:14 +0100 | [diff] [blame] | 12 | #set( $symbol_h2 = '##' ) |
Sean Condon | a36f65c | 2019-05-20 08:21:41 +0100 | [diff] [blame] | 13 | <?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 User | ea6d323 | 2019-08-12 19:15:45 +0000 | [diff] [blame] | 42 | <onos.version>2.2.0-SNAPSHOT</onos.version> |
Sean Condon | a36f65c | 2019-05-20 08:21:41 +0100 | [diff] [blame] | 43 | </properties> |
| 44 | |
| 45 | <modules> |
| 46 | <module>app</module> |
| 47 | <module>web/${artifactId}-gui</module> |
| 48 | </modules> |
| 49 | |
| 50 | </project> |