Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 3554ccb | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Laboratory |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 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 | |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
alshabib | 6d52745 | 2016-06-01 18:00:47 -0700 | [diff] [blame] | 24 | <artifactId>onos</artifactId> |
alshabib | cc4b768 | 2016-06-02 21:53:02 -0700 | [diff] [blame^] | 25 | <version>1.6.0-rc1</version> |
alshabib | 6d52745 | 2016-06-01 18:00:47 -0700 | [diff] [blame] | 26 | <relativePath></relativePath> |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 27 | </parent> |
| 28 | |
alshabib | 6d52745 | 2016-06-01 18:00:47 -0700 | [diff] [blame] | 29 | <groupId>org.opencord</groupId> |
| 30 | <artifactId>aaa</artifactId> |
| 31 | <version>1.0-SNAPSHOT</version> |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 32 | <packaging>bundle</packaging> |
| 33 | |
alshabib | cc4b768 | 2016-06-02 21:53:02 -0700 | [diff] [blame^] | 34 | <!--FIXME remove this one the released bits are out--> |
| 35 | <repositories> |
| 36 | <repository> |
| 37 | <id>oss-staging</id> |
| 38 | <name>OSS Staging</name> |
| 39 | <url>https://oss.sonatype.org/content/groups/staging</url> |
| 40 | </repository> |
| 41 | </repositories> |
| 42 | |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 43 | <description>ONOS authentication application</description> |
| 44 | |
alshabib | 6d52745 | 2016-06-01 18:00:47 -0700 | [diff] [blame] | 45 | <properties> |
| 46 | <onos.app.name>org.opencord.aaa</onos.app.name> |
alshabib | cc4b768 | 2016-06-02 21:53:02 -0700 | [diff] [blame^] | 47 | <onos.version>1.6.0-rc1</onos.version> |
alshabib | 6d52745 | 2016-06-01 18:00:47 -0700 | [diff] [blame] | 48 | <onos.app.title>AAA App</onos.app.title> |
| 49 | <onos.app.category>Traffic Steering</onos.app.category> |
| 50 | <onos.app.url>http://opencord.org</onos.app.url> |
| 51 | <onos.app.readme>IGMP implementation.</onos.app.readme> |
| 52 | <onos.app.requires>org.opencord.config</onos.app.requires> |
| 53 | </properties> |
| 54 | |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 55 | <dependencies> |
| 56 | <dependency> |
| 57 | <groupId>org.osgi</groupId> |
| 58 | <artifactId>org.osgi.compendium</artifactId> |
| 59 | </dependency> |
| 60 | |
| 61 | <dependency> |
| 62 | <groupId>org.onosproject</groupId> |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 63 | <artifactId>onos-api</artifactId> |
alshabib | 6d52745 | 2016-06-01 18:00:47 -0700 | [diff] [blame] | 64 | <version>${onos.version}</version> |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 65 | </dependency> |
| 66 | |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 67 | <dependency> |
| 68 | <groupId>org.onosproject</groupId> |
Ray Milkey | ea36645 | 2015-09-30 10:56:43 -0700 | [diff] [blame] | 69 | <artifactId>onlab-junit</artifactId> |
| 70 | <scope>test</scope> |
| 71 | </dependency> |
| 72 | |
| 73 | <dependency> |
| 74 | <groupId>org.onosproject</groupId> |
| 75 | <artifactId>onlab-osgi</artifactId> |
alshabib | 6d52745 | 2016-06-01 18:00:47 -0700 | [diff] [blame] | 76 | <version>${onos.version}</version> |
Ray Milkey | ea36645 | 2015-09-30 10:56:43 -0700 | [diff] [blame] | 77 | </dependency> |
| 78 | |
| 79 | <dependency> |
| 80 | <groupId>org.onosproject</groupId> |
| 81 | <artifactId>onos-api</artifactId> |
alshabib | 6d52745 | 2016-06-01 18:00:47 -0700 | [diff] [blame] | 82 | <version>${onos.version}</version> |
Ray Milkey | ea36645 | 2015-09-30 10:56:43 -0700 | [diff] [blame] | 83 | <classifier>tests</classifier> |
| 84 | <scope>test</scope> |
| 85 | </dependency> |
Qianqian Hu | 61a6a40 | 2016-02-16 15:18:05 +0800 | [diff] [blame] | 86 | |
| 87 | <dependency> |
| 88 | <groupId>org.onosproject</groupId> |
| 89 | <artifactId>onos-cli</artifactId> |
alshabib | 6d52745 | 2016-06-01 18:00:47 -0700 | [diff] [blame] | 90 | <version>${onos.version}</version> |
Qianqian Hu | 61a6a40 | 2016-02-16 15:18:05 +0800 | [diff] [blame] | 91 | </dependency> |
| 92 | |
| 93 | <dependency> |
| 94 | <groupId>org.apache.karaf.shell</groupId> |
| 95 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 96 | </dependency> |
alshabib | 6d52745 | 2016-06-01 18:00:47 -0700 | [diff] [blame] | 97 | |
| 98 | <dependency> |
| 99 | <groupId>org.apache.felix</groupId> |
| 100 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 101 | <scope>provided</scope> |
| 102 | </dependency> |
| 103 | |
| 104 | <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies --> |
| 105 | <dependency> |
| 106 | <groupId>org.onosproject</groupId> |
| 107 | <artifactId>onos-incubator-api</artifactId> |
| 108 | <version>${onos.version}</version> |
| 109 | </dependency> |
| 110 | |
| 111 | <dependency> |
| 112 | <groupId>org.onosproject</groupId> |
| 113 | <artifactId>onos-core-common</artifactId> |
| 114 | <version>${onos.version}</version> |
| 115 | </dependency> |
| 116 | |
| 117 | <dependency> |
| 118 | <groupId>org.onosproject</groupId> |
| 119 | <artifactId>onlab-misc</artifactId> |
| 120 | <version>${onos.version}</version> |
| 121 | </dependency> |
| 122 | |
| 123 | <dependency> |
| 124 | <groupId>org.onosproject</groupId> |
| 125 | <artifactId>onlab-junit</artifactId> |
| 126 | <version>${onos.version}</version> |
| 127 | </dependency> |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 128 | </dependencies> |
| 129 | |
| 130 | |
Ray Milkey | ea36645 | 2015-09-30 10:56:43 -0700 | [diff] [blame] | 131 | <build> |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 132 | <plugins> |
| 133 | <plugin> |
| 134 | <groupId>org.apache.felix</groupId> |
| 135 | <artifactId>maven-bundle-plugin</artifactId> |
| 136 | </plugin> |
| 137 | |
| 138 | <plugin> |
| 139 | <groupId>org.apache.felix</groupId> |
| 140 | <artifactId>maven-scr-plugin</artifactId> |
| 141 | </plugin> |
| 142 | <plugin> |
| 143 | <groupId>org.onosproject</groupId> |
| 144 | <artifactId>onos-maven-plugin</artifactId> |
| 145 | </plugin> |
| 146 | </plugins> |
| 147 | </build> |
| 148 | </project> |