blob: 18d70f3672749877501167a97d7c15525e3ff2ba [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<?xml version="1.0" encoding="UTF-8"?>
7<!--
8 ~ Copyright ${year} Open Networking Foundation
9 ~
10 ~ Licensed under the Apache License, Version 2.0 (the "License");
11 ~ you may not use this file except in compliance with the License.
12 ~ You may obtain a copy of the License at
13 ~
14 ~ http://www.apache.org/licenses/LICENSE-2.0
15 ~
16 ~ Unless required by applicable law or agreed to in writing, software
17 ~ distributed under the License is distributed on an "AS IS" BASIS,
18 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 ~ See the License for the specific language governing permissions and
20 ~ limitations under the License.
21 -->
22<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">
23 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
26 <groupId>${groupId}</groupId>
27 <artifactId>${artifactId}</artifactId>
28 <version>${version}</version>
29 <relativePath>../</relativePath>
30 </parent>
31
32 <artifactId>${artifactId}-app</artifactId>
33 <packaging>bundle</packaging>
34
35 <properties>
Sean Condon27f06da2019-05-25 17:02:14 +010036 <onos.app.name>${package}.${artifactId}</onos.app.name>
Sean Condon13f42b72019-05-31 16:17:52 +010037 <onos.app.title>${appNameTitle} App</onos.app.title>
Sean Condona36f65c2019-05-20 08:21:41 +010038 <onos.app.origin>Foo, Inc.</onos.app.origin>
39 <onos.app.category>UI</onos.app.category>
40 <onos.app.url>http://onosproject.org</onos.app.url>
41 <onos.app.readme>ONOS OSGi GUI2 Custom-View bundle archetype.</onos.app.readme>
42 </properties>
43
44 <dependencies>
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-api</artifactId>
48 <version>${onos.version}</version>
Carmelo Cascone87b893e2019-11-12 10:34:05 -080049 <scope>provided</scope>
Sean Condona36f65c2019-05-20 08:21:41 +010050 </dependency>
51
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onlab-osgi</artifactId>
55 <version>${onos.version}</version>
Carmelo Cascone87b893e2019-11-12 10:34:05 -080056 <scope>provided</scope>
Sean Condona36f65c2019-05-20 08:21:41 +010057 </dependency>
58
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onos-api</artifactId>
62 <version>${onos.version}</version>
63 <scope>test</scope>
64 <classifier>tests</classifier>
65 </dependency>
Sean Condona36f65c2019-05-20 08:21:41 +010066 </dependencies>
67
68 <build>
69 <plugins>
70 <plugin>
Sean Condona36f65c2019-05-20 08:21:41 +010071 <groupId>org.onosproject</groupId>
72 <artifactId>onos-maven-plugin</artifactId>
Sean Condona36f65c2019-05-20 08:21:41 +010073 </plugin>
74 </plugins>
75 </build>
76
77</project>