blob: 3d99e6c722df3945947bb296fb7354426c71da24 [file] [log] [blame]
Thomas Vachuska7399e482014-12-01 21:27:42 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2014 Open Networking Laboratory
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
Brian O'Connorabafb502014-12-02 22:26:20 -080023 <groupId>org.onosproject</groupId>
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080024 <artifactId>onos-base</artifactId>
25 <version>1</version>
26 <relativePath>../../build/pom.xml</relativePath>
Thomas Vachuska7399e482014-12-01 21:27:42 -080027 </parent>
28
Brian O'Connor33a2b752015-06-05 20:12:45 -070029 <groupId>org.onosproject</groupId>
Thomas Vachuska7399e482014-12-01 21:27:42 -080030 <artifactId>onos-archetypes</artifactId>
Brian O'Connorf967ad62015-09-18 15:19:54 -070031 <version>1.4.0-SNAPSHOT</version>
Thomas Vachuska7399e482014-12-01 21:27:42 -080032 <packaging>pom</packaging>
33
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080034 <description>ONOS archetypes project</description>
Thomas Vachuska7399e482014-12-01 21:27:42 -080035
36 <modules>
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080037 <module>api</module>
Thomas Vachuska7399e482014-12-01 21:27:42 -080038 <module>bundle</module>
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080039 <module>cli</module>
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070040 <module>ui</module>
Simon Hunt84f4c2a2015-09-23 17:52:45 -070041 <module>uitab</module>
Thomas Vachuska7399e482014-12-01 21:27:42 -080042 </modules>
43
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080044 <build>
45 <extensions>
46 <extension>
47 <groupId>org.apache.maven.archetype</groupId>
48 <artifactId>archetype-packaging</artifactId>
49 <version>2.2</version>
50 </extension>
51 </extensions>
52
53 <pluginManagement>
54 <plugins>
55 <plugin>
56 <artifactId>maven-archetype-plugin</artifactId>
57 <version>2.2</version>
58 </plugin>
59 </plugins>
60 </pluginManagement>
61 </build>
62
Thomas Vachuska7399e482014-12-01 21:27:42 -080063</project>