HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2017-present Open Networking Foundation |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -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" 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> |
Aaron Kruglikov | ae7e3b8 | 2017-05-03 14:13:53 -0700 | [diff] [blame] | 19 | <build> |
| 20 | <plugins> |
| 21 | <plugin> |
| 22 | <groupId>org.apache.maven.plugins</groupId> |
| 23 | <artifactId>maven-compiler-plugin</artifactId> |
| 24 | <configuration> |
| 25 | <source>1.8</source> |
| 26 | <target>1.8</target> |
| 27 | </configuration> |
| 28 | </plugin> |
| 29 | </plugins> |
| 30 | </build> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 31 | <parent> |
Aaron Kruglikov | 9f95f99 | 2017-06-23 14:15:25 +0900 | [diff] [blame] | 32 | <artifactId>onos-incubator-grpc-dependencies</artifactId> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 33 | <groupId>org.onosproject</groupId> |
Ray Milkey | aa279c0 | 2017-08-16 13:23:59 -0700 | [diff] [blame] | 34 | <version>1.12.0-SNAPSHOT</version> |
Aaron Kruglikov | 9f95f99 | 2017-06-23 14:15:25 +0900 | [diff] [blame] | 35 | <relativePath>../grpc-dependencies/pom.xml</relativePath> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 36 | </parent> |
| 37 | |
| 38 | <artifactId>onos-incubator-protobuf</artifactId> |
Aaron Kruglikov | 9f95f99 | 2017-06-23 14:15:25 +0900 | [diff] [blame] | 39 | <packaging>pom</packaging> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 40 | |
Aaron Kruglikov | 9f95f99 | 2017-06-23 14:15:25 +0900 | [diff] [blame] | 41 | <description>ONOS ProtoBuf and gRPC functionality root</description> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 42 | <url>http://onosproject.org</url> |
| 43 | |
| 44 | <properties> |
| 45 | <onos.app.name>org.onosproject.incubator.protobuf</onos.app.name> |
Yuta HIGUCHI | 9efba1e | 2016-07-09 11:07:13 -0700 | [diff] [blame] | 46 | <onos.app.title>ONOS Protocol Buffers models</onos.app.title> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 47 | </properties> |
| 48 | |
| 49 | <dependencies> |
| 50 | |
| 51 | <dependency> |
Yuta HIGUCHI | a0557a2 | 2017-01-11 16:22:53 -0800 | [diff] [blame] | 52 | <groupId>org.onosproject</groupId> |
| 53 | <artifactId>onos-api</artifactId> |
| 54 | <version>${project.version}</version> |
| 55 | </dependency> |
| 56 | |
| 57 | <dependency> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 58 | <groupId>com.google.protobuf</groupId> |
| 59 | <artifactId>protobuf-java</artifactId> |
| 60 | <version>${protobuf.version}</version> |
| 61 | </dependency> |
| 62 | |
| 63 | <dependency> |
| 64 | <groupId>org.apache.felix</groupId> |
| 65 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 66 | <scope>provided</scope> |
| 67 | </dependency> |
| 68 | |
Aaron Kruglikov | ae7e3b8 | 2017-05-03 14:13:53 -0700 | [diff] [blame] | 69 | <dependency> |
| 70 | <groupId>org.onosproject</groupId> |
| 71 | <artifactId>onos-incubator-api</artifactId> |
| 72 | <version>${project.version}</version> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.osgi</groupId> |
| 76 | <artifactId>org.osgi.compendium</artifactId> |
| 77 | <scope>compile</scope> |
| 78 | </dependency> |
| 79 | |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 80 | </dependencies> |
| 81 | |
Aaron Kruglikov | 9f95f99 | 2017-06-23 14:15:25 +0900 | [diff] [blame] | 82 | <modules> |
| 83 | <module>models</module> |
| 84 | <module>services</module> |
| 85 | </modules> |
HIGUCHI Yuta | 3fce242 | 2016-05-11 18:41:41 -0700 | [diff] [blame] | 86 | |
| 87 | </project> |