Thomas Vachuska | 7399e48 | 2014-12-01 21:27:42 -0800 | [diff] [blame] | 1 | <?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'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 23 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | fc7f22d | 2014-12-04 11:07:01 -0800 | [diff] [blame] | 24 | <artifactId>onos-base</artifactId> |
| 25 | <version>1</version> |
| 26 | <relativePath>../../build/pom.xml</relativePath> |
Thomas Vachuska | 7399e48 | 2014-12-01 21:27:42 -0800 | [diff] [blame] | 27 | </parent> |
| 28 | |
Brian O'Connor | 33a2b75 | 2015-06-05 20:12:45 -0700 | [diff] [blame] | 29 | <groupId>org.onosproject</groupId> |
Thomas Vachuska | 7399e48 | 2014-12-01 21:27:42 -0800 | [diff] [blame] | 30 | <artifactId>onos-archetypes</artifactId> |
Brian O'Connor | 905ea22 | 2015-12-04 23:59:23 -0800 | [diff] [blame] | 31 | <version>1.4.0-SNAPSHOT</version> |
Thomas Vachuska | 7399e48 | 2014-12-01 21:27:42 -0800 | [diff] [blame] | 32 | <packaging>pom</packaging> |
| 33 | |
Thomas Vachuska | fc7f22d | 2014-12-04 11:07:01 -0800 | [diff] [blame] | 34 | <description>ONOS archetypes project</description> |
Thomas Vachuska | 7399e48 | 2014-12-01 21:27:42 -0800 | [diff] [blame] | 35 | |
| 36 | <modules> |
Thomas Vachuska | fc7f22d | 2014-12-04 11:07:01 -0800 | [diff] [blame] | 37 | <module>api</module> |
Thomas Vachuska | 7399e48 | 2014-12-01 21:27:42 -0800 | [diff] [blame] | 38 | <module>bundle</module> |
Thomas Vachuska | fc7f22d | 2014-12-04 11:07:01 -0800 | [diff] [blame] | 39 | <module>cli</module> |
Thomas Vachuska | 36be65f | 2015-12-08 12:36:15 -0800 | [diff] [blame] | 40 | <module>rest</module> |
Thomas Vachuska | a2ae422 | 2015-04-29 18:42:09 -0700 | [diff] [blame] | 41 | <module>ui</module> |
Simon Hunt | 84f4c2a | 2015-09-23 17:52:45 -0700 | [diff] [blame] | 42 | <module>uitab</module> |
Simon Hunt | 1ee0985 | 2015-09-29 12:28:14 -0700 | [diff] [blame] | 43 | <module>uitopo</module> |
Thomas Vachuska | 7399e48 | 2014-12-01 21:27:42 -0800 | [diff] [blame] | 44 | </modules> |
| 45 | |
Thomas Vachuska | fc7f22d | 2014-12-04 11:07:01 -0800 | [diff] [blame] | 46 | <build> |
| 47 | <extensions> |
| 48 | <extension> |
| 49 | <groupId>org.apache.maven.archetype</groupId> |
| 50 | <artifactId>archetype-packaging</artifactId> |
| 51 | <version>2.2</version> |
| 52 | </extension> |
| 53 | </extensions> |
| 54 | |
| 55 | <pluginManagement> |
| 56 | <plugins> |
| 57 | <plugin> |
| 58 | <artifactId>maven-archetype-plugin</artifactId> |
| 59 | <version>2.2</version> |
| 60 | </plugin> |
| 61 | </plugins> |
| 62 | </pluginManagement> |
| 63 | </build> |
| 64 | |
Thomas Vachuska | 7399e48 | 2014-12-01 21:27:42 -0800 | [diff] [blame] | 65 | </project> |