alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | af764bf | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Laboratory |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [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 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
alshabib | 772e158 | 2016-06-01 17:50:05 -0700 | [diff] [blame] | 24 | <artifactId>onos</artifactId> |
Charles Chan | 5847379 | 2016-06-26 22:37:17 -0700 | [diff] [blame] | 25 | <version>1.6.0</version> |
alshabib | 772e158 | 2016-06-01 17:50:05 -0700 | [diff] [blame] | 26 | <relativePath></relativePath> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 27 | </parent> |
| 28 | |
alshabib | 772e158 | 2016-06-01 17:50:05 -0700 | [diff] [blame] | 29 | <groupId>org.opencord</groupId> |
| 30 | <artifactId>mcast</artifactId> |
alshabib | 57d596c | 2016-07-09 12:35:53 +0200 | [diff] [blame^] | 31 | <version>1.0.0-rc1</version> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 32 | <packaging>bundle</packaging> |
| 33 | |
alshabib | 9ff8d92 | 2016-07-09 11:35:20 +0200 | [diff] [blame] | 34 | <!-- |
alshabib | 8afc701 | 2016-06-02 22:01:56 -0700 | [diff] [blame] | 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> |
alshabib | 9ff8d92 | 2016-07-09 11:35:20 +0200 | [diff] [blame] | 42 | --> |
alshabib | 8afc701 | 2016-06-02 22:01:56 -0700 | [diff] [blame] | 43 | |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 44 | <description>CORD Multicast application</description> |
| 45 | |
| 46 | <properties> |
alshabib | 191751a | 2016-06-01 17:55:26 -0700 | [diff] [blame] | 47 | <onos.app.name>org.opencord.mcast</onos.app.name> |
Charles Chan | 5847379 | 2016-06-26 22:37:17 -0700 | [diff] [blame] | 48 | <onos.version>1.6.0</onos.version> |
Jian Li | 0f1bd26 | 2016-03-08 09:18:53 -0800 | [diff] [blame] | 49 | <onos.app.category>Traffic Steering</onos.app.category> |
Jian Li | eddfb97 | 2016-03-07 21:26:48 -0800 | [diff] [blame] | 50 | <onos.app.title>CORD Multicast App</onos.app.title> |
Jian Li | 0f1bd26 | 2016-03-08 09:18:53 -0800 | [diff] [blame] | 51 | <onos.app.url>http://opencord.org</onos.app.url> |
alshabib | b9d5ccd | 2016-06-01 17:56:30 -0700 | [diff] [blame] | 52 | <onos.app.requires>org.opencord.config</onos.app.requires> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 53 | </properties> |
| 54 | |
| 55 | <dependencies> |
| 56 | <dependency> |
| 57 | <groupId>org.onosproject</groupId> |
| 58 | <artifactId>onos-cli</artifactId> |
alshabib | 772e158 | 2016-06-01 17:50:05 -0700 | [diff] [blame] | 59 | <version>${onos.version}</version> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 60 | </dependency> |
| 61 | <dependency> |
alshabib | 772e158 | 2016-06-01 17:50:05 -0700 | [diff] [blame] | 62 | <groupId>org.opencord</groupId> |
Jonathan Hart | dca5d68 | 2016-06-13 13:50:56 -0700 | [diff] [blame] | 63 | <artifactId>cord-config</artifactId> |
Jonathan Hart | c1761bd | 2016-05-06 15:23:23 -0700 | [diff] [blame] | 64 | <version>${project.version}</version> |
| 65 | </dependency> |
| 66 | <dependency> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 67 | <groupId>org.apache.karaf.shell</groupId> |
| 68 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>com.google.guava</groupId> |
| 72 | <artifactId>guava</artifactId> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.onosproject</groupId> |
| 76 | <artifactId>onlab-misc</artifactId> |
alshabib | 772e158 | 2016-06-01 17:50:05 -0700 | [diff] [blame] | 77 | <version>${onos.version}</version> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.apache.felix</groupId> |
| 81 | <artifactId>org.apache.felix.scr</artifactId> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.osgi</groupId> |
| 85 | <artifactId>org.osgi.compendium</artifactId> |
| 86 | <version>5.0.0</version> |
| 87 | </dependency> |
Jonathan Hart | 2827164 | 2016-02-10 16:13:54 -0800 | [diff] [blame] | 88 | <dependency> |
Jian Li | 46472d7 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 89 | <groupId>org.glassfish.jersey.core</groupId> |
Jonathan Hart | 2827164 | 2016-02-10 16:13:54 -0800 | [diff] [blame] | 90 | <artifactId>jersey-client</artifactId> |
Jian Li | 46472d7 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 91 | <version>2.22.2</version> |
Jonathan Hart | 2827164 | 2016-02-10 16:13:54 -0800 | [diff] [blame] | 92 | </dependency> |
alshabib | 09069c9 | 2016-02-21 14:49:51 -0800 | [diff] [blame] | 93 | <dependency> |
alshabib | 772e158 | 2016-06-01 17:50:05 -0700 | [diff] [blame] | 94 | <groupId>org.opencord</groupId> |
| 95 | <artifactId>olt-api</artifactId> |
alshabib | 09069c9 | 2016-02-21 14:49:51 -0800 | [diff] [blame] | 96 | <version>${project.version}</version> |
| 97 | </dependency> |
alshabib | 772e158 | 2016-06-01 17:50:05 -0700 | [diff] [blame] | 98 | |
| 99 | <dependency> |
| 100 | <groupId>org.apache.felix</groupId> |
| 101 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 102 | <scope>provided</scope> |
| 103 | </dependency> |
| 104 | |
| 105 | <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies --> |
| 106 | |
| 107 | <dependency> |
| 108 | <groupId>org.onosproject</groupId> |
| 109 | <artifactId>onlab-osgi</artifactId> |
| 110 | <version>${onos.version}</version> |
| 111 | </dependency> |
| 112 | |
| 113 | <dependency> |
| 114 | <groupId>org.onosproject</groupId> |
| 115 | <artifactId>onos-incubator-api</artifactId> |
| 116 | <version>${onos.version}</version> |
| 117 | </dependency> |
| 118 | |
| 119 | <dependency> |
| 120 | <groupId>org.onosproject</groupId> |
| 121 | <artifactId>onos-api</artifactId> |
| 122 | <version>${onos.version}</version> |
| 123 | </dependency> |
| 124 | |
| 125 | <dependency> |
| 126 | <groupId>org.onosproject</groupId> |
| 127 | <artifactId>onos-core-common</artifactId> |
| 128 | <version>${onos.version}</version> |
| 129 | </dependency> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 130 | </dependencies> |
alshabib | 772e158 | 2016-06-01 17:50:05 -0700 | [diff] [blame] | 131 | |
| 132 | <build> |
| 133 | <plugins> |
| 134 | <plugin> |
| 135 | <groupId>org.apache.felix</groupId> |
| 136 | <artifactId>maven-bundle-plugin</artifactId> |
| 137 | <version>3.0.1</version> |
| 138 | <extensions>true</extensions> |
| 139 | </plugin> |
| 140 | <plugin> |
| 141 | <groupId>org.apache.maven.plugins</groupId> |
| 142 | <artifactId>maven-compiler-plugin</artifactId> |
| 143 | <version>2.5.1</version> |
| 144 | <configuration> |
| 145 | <source>1.8</source> |
| 146 | <target>1.8</target> |
| 147 | </configuration> |
| 148 | </plugin> |
| 149 | <plugin> |
| 150 | <groupId>org.apache.felix</groupId> |
| 151 | <artifactId>maven-scr-plugin</artifactId> |
| 152 | <version>1.21.0</version> |
| 153 | <executions> |
| 154 | <execution> |
| 155 | <id>generate-scr-srcdescriptor</id> |
| 156 | <goals> |
| 157 | <goal>scr</goal> |
| 158 | </goals> |
| 159 | </execution> |
| 160 | </executions> |
| 161 | <configuration> |
| 162 | <supportedProjectTypes> |
| 163 | <supportedProjectType>bundle</supportedProjectType> |
| 164 | <supportedProjectType>war</supportedProjectType> |
| 165 | </supportedProjectTypes> |
| 166 | </configuration> |
| 167 | </plugin> |
| 168 | <plugin> |
| 169 | <groupId>org.onosproject</groupId> |
| 170 | <artifactId>onos-maven-plugin</artifactId> |
| 171 | <version>1.7</version> |
| 172 | <executions> |
| 173 | <execution> |
| 174 | <id>cfg</id> |
| 175 | <phase>generate-resources</phase> |
| 176 | <goals> |
| 177 | <goal>cfg</goal> |
| 178 | </goals> |
| 179 | </execution> |
| 180 | <execution> |
| 181 | <id>swagger</id> |
| 182 | <phase>generate-sources</phase> |
| 183 | <goals> |
| 184 | <goal>swagger</goal> |
| 185 | </goals> |
| 186 | </execution> |
| 187 | <execution> |
| 188 | <id>app</id> |
| 189 | <phase>package</phase> |
| 190 | <goals> |
| 191 | <goal>app</goal> |
| 192 | </goals> |
| 193 | </execution> |
| 194 | </executions> |
| 195 | </plugin> |
| 196 | </plugins> |
| 197 | </build> |
| 198 | |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 199 | </project> |