blob: 9e95daa30c7aa601fa9d38199e1667502035704c [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'Connor33503902015-06-01 17:08:05 -070031 <version>1.2.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>
Thomas Vachuska7399e482014-12-01 21:27:42 -080041 </modules>
42
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080043 <build>
44 <extensions>
45 <extension>
46 <groupId>org.apache.maven.archetype</groupId>
47 <artifactId>archetype-packaging</artifactId>
48 <version>2.2</version>
49 </extension>
50 </extensions>
51
52 <pluginManagement>
53 <plugins>
54 <plugin>
55 <artifactId>maven-archetype-plugin</artifactId>
56 <version>2.2</version>
57 </plugin>
58 </plugins>
59 </pluginManagement>
60 </build>
61
Thomas Vachuska7399e482014-12-01 21:27:42 -080062</project>