Brian O'Connor | 32e7460 | 2015-03-17 21:30:27 -0700 | [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. |
Francesco Lucrezia | 472976a | 2016-05-26 21:24:01 +0200 | [diff] [blame] | 16 | --> |
| 17 | <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/maven-v4_0_0.xsd"> |
Brian O'Connor | 32e7460 | 2015-03-17 21:30:27 -0700 | [diff] [blame] | 18 | <modelVersion>4.0.0</modelVersion> |
| 19 | |
| 20 | <parent> |
| 21 | <groupId>org.onosproject</groupId> |
| 22 | <artifactId>onos</artifactId> |
Konstantinos Kanonakis | a002f02 | 2016-09-27 16:13:12 -0500 | [diff] [blame] | 23 | <version>1.8.0-SNAPSHOT</version> |
Brian O'Connor | 32e7460 | 2015-03-17 21:30:27 -0700 | [diff] [blame] | 24 | </parent> |
| 25 | |
| 26 | <artifactId>onos-app-samples</artifactId> |
Konstantinos Kanonakis | a002f02 | 2016-09-27 16:13:12 -0500 | [diff] [blame] | 27 | <version>1.8.0-SNAPSHOT</version> |
Brian O'Connor | 32e7460 | 2015-03-17 21:30:27 -0700 | [diff] [blame] | 28 | <packaging>pom</packaging> |
| 29 | |
| 30 | <description>ONOS sample applications</description> |
| 31 | |
| 32 | <modules> |
Brian O'Connor | 32e7460 | 2015-03-17 21:30:27 -0700 | [diff] [blame] | 33 | <module>calendar</module> |
Brian O'Connor | 32e7460 | 2015-03-17 21:30:27 -0700 | [diff] [blame] | 34 | <module>database-perf</module> |
Brian O'Connor | d087dd2 | 2015-05-21 12:15:29 -0700 | [diff] [blame] | 35 | <module>flowtest</module> |
Simon Hunt | ae3e884 | 2015-11-03 11:45:00 -0800 | [diff] [blame] | 36 | <module>ifwd</module> |
Dusan Pajin | ee28530 | 2015-09-20 18:43:20 +0200 | [diff] [blame] | 37 | <module>ipfix</module> |
Simon Hunt | ae3e884 | 2015-11-03 11:45:00 -0800 | [diff] [blame] | 38 | <module>oneping</module> |
Andreas Papazois | c2c4501 | 2016-01-20 14:26:11 +0200 | [diff] [blame] | 39 | <module>sdx-l3</module> |
Konstantinos Kanonakis | 35e9eb0 | 2016-06-06 16:38:53 -0500 | [diff] [blame] | 40 | <module>sdx-l2</module> |
Simon Hunt | ae3e884 | 2015-11-03 11:45:00 -0800 | [diff] [blame] | 41 | <module>tvue</module> |
| 42 | <module>uiref</module> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 43 | <module>ecord/co</module> |
Konstantinos Kanonakis | d9e0623 | 2016-03-02 16:14:31 -0600 | [diff] [blame] | 44 | <module>ecord/carrierethernet</module> |
Francesco Lucrezia | 472976a | 2016-05-26 21:24:01 +0200 | [diff] [blame] | 45 | <module>icona</module> |
HIGUCHI Yuta | 7c324b0 | 2016-04-07 11:08:59 -0700 | [diff] [blame] | 46 | </modules> |
Brian O'Connor | 32e7460 | 2015-03-17 21:30:27 -0700 | [diff] [blame] | 47 | |
| 48 | <properties> |
Konstantinos Kanonakis | a002f02 | 2016-09-27 16:13:12 -0500 | [diff] [blame] | 49 | <onos.version>1.8.0-SNAPSHOT</onos.version> |
Brian O'Connor | 32e7460 | 2015-03-17 21:30:27 -0700 | [diff] [blame] | 50 | </properties> |
| 51 | |
HIGUCHI Yuta | 7c324b0 | 2016-04-07 11:08:59 -0700 | [diff] [blame] | 52 | <!-- FIXME remove before release; |
| 53 | needed for resolving SNAPSHOT version of the following |
| 54 | - finding parent pom.xml |
| 55 | - checkstyle plugin depend on onos-build-conf |
| 56 | --> |
| 57 | <repositories> |
| 58 | <repository> |
| 59 | <id>snapshots</id> |
| 60 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 61 | <releases><enabled>false</enabled></releases> |
| 62 | </repository> |
| 63 | </repositories> |
| 64 | <pluginRepositories> |
| 65 | <pluginRepository> |
| 66 | <id>snapshots</id> |
| 67 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 68 | <releases><enabled>false</enabled></releases> |
| 69 | </pluginRepository> |
| 70 | </pluginRepositories> |
| 71 | |
Brian O'Connor | 32e7460 | 2015-03-17 21:30:27 -0700 | [diff] [blame] | 72 | <dependencies> |
| 73 | <dependency> |
| 74 | <groupId>org.onosproject</groupId> |
| 75 | <artifactId>onos-api</artifactId> |
| 76 | </dependency> |
| 77 | |
| 78 | <dependency> |
| 79 | <groupId>org.onosproject</groupId> |
| 80 | <artifactId>onlab-osgi</artifactId> |
| 81 | <version>${project.version}</version> |
| 82 | </dependency> |
| 83 | |
| 84 | <dependency> |
| 85 | <groupId>org.apache.felix</groupId> |
| 86 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 87 | </dependency> |
| 88 | </dependencies> |
| 89 | |
| 90 | <build> |
| 91 | <plugins> |
| 92 | <plugin> |
| 93 | <groupId>org.apache.felix</groupId> |
| 94 | <artifactId>maven-bundle-plugin</artifactId> |
| 95 | </plugin> |
Brian O'Connor | 32e7460 | 2015-03-17 21:30:27 -0700 | [diff] [blame] | 96 | <plugin> |
| 97 | <groupId>org.apache.felix</groupId> |
| 98 | <artifactId>maven-scr-plugin</artifactId> |
| 99 | </plugin> |
| 100 | <plugin> |
| 101 | <groupId>org.onosproject</groupId> |
| 102 | <artifactId>onos-maven-plugin</artifactId> |
Brian O'Connor | 32e7460 | 2015-03-17 21:30:27 -0700 | [diff] [blame] | 103 | </plugin> |
| 104 | </plugins> |
| 105 | </build> |
| 106 | </project> |