blob: fe7cf0007371cf855bb68cf1ad74f959d6ebc677 [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
29 <artifactId>onos-archetypes</artifactId>
Brian O'Connor33503902015-06-01 17:08:05 -070030 <version>1.2.0-SNAPSHOT</version>
Thomas Vachuska7399e482014-12-01 21:27:42 -080031 <packaging>pom</packaging>
32
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080033 <description>ONOS archetypes project</description>
Thomas Vachuska7399e482014-12-01 21:27:42 -080034
35 <modules>
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080036 <module>api</module>
Thomas Vachuska7399e482014-12-01 21:27:42 -080037 <module>bundle</module>
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080038 <module>cli</module>
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070039 <module>ui</module>
Thomas Vachuska7399e482014-12-01 21:27:42 -080040 </modules>
41
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080042 <build>
43 <extensions>
44 <extension>
45 <groupId>org.apache.maven.archetype</groupId>
46 <artifactId>archetype-packaging</artifactId>
47 <version>2.2</version>
48 </extension>
49 </extensions>
50
51 <pluginManagement>
52 <plugins>
53 <plugin>
54 <artifactId>maven-archetype-plugin</artifactId>
55 <version>2.2</version>
56 </plugin>
57 </plugins>
58 </pluginManagement>
59 </build>
60
Thomas Vachuska7399e482014-12-01 21:27:42 -080061</project>