Yuta HIGUCHI | 2e4a6d4 | 2017-08-25 10:51:40 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2017 Open Networking Foundation |
| 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 18 | <modelVersion>4.0.0</modelVersion> |
| 19 | |
| 20 | <parent> |
| 21 | <artifactId>onos-drivers-general</artifactId> |
| 22 | <groupId>org.onosproject</groupId> |
ONOS Jenkins User | 45d340c | 2018-01-09 01:56:13 +0000 | [diff] [blame] | 23 | <version>1.13.0-SNAPSHOT</version> |
Yuta HIGUCHI | 2e4a6d4 | 2017-08-25 10:51:40 -0700 | [diff] [blame] | 24 | </parent> |
| 25 | |
| 26 | <artifactId>onos-drivers-microsemi</artifactId> |
| 27 | <packaging>bundle</packaging> |
| 28 | |
| 29 | <description>Microsemi Drivers</description> |
| 30 | <url>http://onosproject.org</url> |
| 31 | |
| 32 | <properties> |
| 33 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 34 | <onos.version>${project.version}</onos.version> |
| 35 | <onos.app.requires> |
| 36 | org.onosproject.yang, |
| 37 | org.onosproject.netconf, |
| 38 | org.onosproject.models.microsemi |
| 39 | </onos.app.requires> |
| 40 | <onos.app.category>Drivers</onos.app.category> |
| 41 | <onos.app.title>Microsemi Drivers</onos.app.title> |
| 42 | </properties> |
| 43 | |
| 44 | <dependencies> |
| 45 | |
| 46 | <dependency> |
| 47 | <groupId>org.onosproject</groupId> |
| 48 | <artifactId>onos-api</artifactId> |
| 49 | </dependency> |
| 50 | |
| 51 | <dependency> |
| 52 | <groupId>org.onosproject</groupId> |
Sean Condon | 0e89bda | 2017-03-21 14:23:19 +0000 | [diff] [blame] | 53 | <artifactId>onos-incubator-api</artifactId> |
| 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
| 57 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | 2e4a6d4 | 2017-08-25 10:51:40 -0700 | [diff] [blame] | 58 | <artifactId>onos-yang-model</artifactId> |
| 59 | </dependency> |
| 60 | |
| 61 | <dependency> |
| 62 | <groupId>org.onosproject</groupId> |
| 63 | <artifactId>onos-yang-runtime</artifactId> |
| 64 | </dependency> |
| 65 | |
| 66 | <dependency> |
| 67 | <groupId>org.onosproject</groupId> |
| 68 | <artifactId>onos-drivers-utilities</artifactId> |
| 69 | <version>${project.version}</version> |
| 70 | </dependency> |
| 71 | |
| 72 | <dependency> |
| 73 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | 923a778 | 2017-09-05 13:04:47 -0700 | [diff] [blame] | 74 | <artifactId>onos-protocols-netconf-api</artifactId> |
Yuta HIGUCHI | 2e4a6d4 | 2017-08-25 10:51:40 -0700 | [diff] [blame] | 75 | <version>${project.version}</version> |
| 76 | </dependency> |
| 77 | |
| 78 | <dependency> |
| 79 | <groupId>org.onosproject</groupId> |
| 80 | <artifactId>onos-drivers-netconf</artifactId> |
| 81 | <version>${project.version}</version> |
| 82 | <scope>test</scope> |
| 83 | <classifier>tests</classifier> |
| 84 | </dependency> |
| 85 | |
| 86 | <dependency> |
| 87 | <groupId>org.onosproject</groupId> |
| 88 | <artifactId>onos-models-microsemi</artifactId> |
| 89 | <version>${project.version}</version> |
| 90 | <type>bundle</type> |
| 91 | </dependency> |
| 92 | |
| 93 | <dependency> |
| 94 | <groupId>org.slf4j</groupId> |
| 95 | <artifactId>slf4j-api</artifactId> |
| 96 | <scope>provided</scope> |
| 97 | </dependency> |
| 98 | |
| 99 | <dependency> |
| 100 | <groupId>org.onosproject</groupId> |
| 101 | <artifactId>onos-cli</artifactId> |
| 102 | <version>${onos.version}</version> |
| 103 | </dependency> |
| 104 | |
| 105 | <dependency> |
| 106 | <groupId>org.apache.karaf.shell</groupId> |
| 107 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 108 | <scope>provided</scope> |
| 109 | </dependency> |
| 110 | |
| 111 | <dependency> |
| 112 | <groupId>org.onosproject</groupId> |
| 113 | <artifactId>onlab-osgi</artifactId> |
| 114 | </dependency> |
| 115 | |
| 116 | <dependency> |
| 117 | <groupId>org.apache.felix</groupId> |
| 118 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 119 | <scope>provided</scope> |
| 120 | </dependency> |
| 121 | |
| 122 | <dependency> |
| 123 | <groupId>org.osgi</groupId> |
| 124 | <artifactId>org.osgi.compendium</artifactId> |
| 125 | <scope>provided</scope> |
| 126 | </dependency> |
| 127 | |
| 128 | <dependency> |
| 129 | <groupId>junit</groupId> |
| 130 | <artifactId>junit</artifactId> |
| 131 | <scope>test</scope> |
| 132 | </dependency> |
| 133 | |
| 134 | <dependency> |
| 135 | <groupId>org.onosproject</groupId> |
| 136 | <artifactId>onos-api</artifactId> |
| 137 | <scope>test</scope> |
| 138 | <classifier>tests</classifier> |
| 139 | </dependency> |
| 140 | |
Sean Condon | 0e89bda | 2017-03-21 14:23:19 +0000 | [diff] [blame] | 141 | <dependency> |
| 142 | <groupId>org.onosproject</groupId> |
| 143 | <artifactId>onos-incubator-net</artifactId> |
| 144 | <scope>test</scope> |
| 145 | </dependency> |
| 146 | |
Yuta HIGUCHI | 2e4a6d4 | 2017-08-25 10:51:40 -0700 | [diff] [blame] | 147 | </dependencies> |
| 148 | |
| 149 | <build> |
| 150 | <pluginManagement> |
| 151 | <plugins> |
| 152 | |
| 153 | <plugin> |
| 154 | <groupId>org.apache.karaf.tooling</groupId> |
| 155 | <artifactId>karaf-maven-plugin</artifactId> |
| 156 | <version>3.0.5</version> |
| 157 | <extensions>true</extensions> |
| 158 | </plugin> |
| 159 | |
| 160 | </plugins> |
| 161 | </pluginManagement> |
| 162 | |
| 163 | <plugins> |
| 164 | <plugin> |
| 165 | <groupId>org.apache.felix</groupId> |
| 166 | <artifactId>maven-bundle-plugin</artifactId> |
| 167 | <extensions>true</extensions> |
| 168 | </plugin> |
| 169 | |
| 170 | <plugin> |
| 171 | <groupId>org.apache.maven.plugins</groupId> |
| 172 | <artifactId>maven-compiler-plugin</artifactId> |
| 173 | </plugin> |
| 174 | |
| 175 | <plugin> |
| 176 | <groupId>org.apache.felix</groupId> |
| 177 | <artifactId>maven-scr-plugin</artifactId> |
| 178 | <executions> |
| 179 | <execution> |
| 180 | <id>generate-scr-srcdescriptor</id> |
| 181 | <goals> |
| 182 | <goal>scr</goal> |
| 183 | </goals> |
| 184 | </execution> |
| 185 | </executions> |
| 186 | <configuration> |
| 187 | <supportedProjectTypes> |
| 188 | <supportedProjectType>bundle</supportedProjectType> |
| 189 | <supportedProjectType>war</supportedProjectType> |
| 190 | </supportedProjectTypes> |
| 191 | </configuration> |
| 192 | </plugin> |
| 193 | |
| 194 | <plugin> |
| 195 | <groupId>org.onosproject</groupId> |
| 196 | <artifactId>onos-maven-plugin</artifactId> |
| 197 | <executions> |
| 198 | <execution> |
| 199 | <id>cfg</id> |
| 200 | <phase>generate-resources</phase> |
| 201 | <goals> |
| 202 | <goal>cfg</goal> |
| 203 | </goals> |
| 204 | </execution> |
| 205 | <execution> |
| 206 | <id>swagger</id> |
| 207 | <phase>generate-sources</phase> |
| 208 | <goals> |
| 209 | <goal>swagger</goal> |
| 210 | </goals> |
| 211 | </execution> |
| 212 | <execution> |
| 213 | <id>app</id> |
| 214 | <phase>package</phase> |
| 215 | <goals> |
| 216 | <goal>app</goal> |
| 217 | </goals> |
| 218 | </execution> |
| 219 | </executions> |
| 220 | </plugin> |
| 221 | |
| 222 | </plugins> |
| 223 | </build> |
| 224 | |
| 225 | </project> |