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