blob: 4541d125274155830c78431d759969cd0573afeb [file] [log] [blame]
Ray Milkeye27bb902017-11-06 12:55:17 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017-present 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"
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>
24 <artifactId>onos</artifactId>
ONOS Jenkins User0e78e272017-12-12 03:27:00 +000025 <version>1.13.0-SNAPSHOT</version>
Ray Milkeye27bb902017-11-06 12:55:17 -080026 </parent>
27
28 <artifactId>onos-pipelines</artifactId>
29 <packaging>pom</packaging>
30
31 <description>ONOS Pipelines</description>
32
33 <modules>
34 <module>basic</module>
35 </modules>
36
37 <!--<properties>
38 <onos.app.name>org.onosproject.drivers</onos.app.name>
39 </properties>-->
40
41 <dependencies>
42 <dependency>
43 <groupId>org.osgi</groupId>
44 <artifactId>org.osgi.compendium</artifactId>
45 </dependency>
46
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-api</artifactId>
50 </dependency>
51
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-core-serializers</artifactId>
55 <version>${project.version}</version>
56 </dependency>
57 <dependency>
58 <groupId>org.easymock</groupId>
59 <artifactId>easymock</artifactId>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>org.apache.felix.scr.annotations</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>org.onosproject</groupId>
Ray Milkeye27bb902017-11-06 12:55:17 -080068 <artifactId>onos-drivers-default</artifactId>
69 <version>${project.version}</version>
70 </dependency>
71 <dependency>
72 <groupId>org.onosproject</groupId>
73 <artifactId>onos-protocols-p4runtime-api</artifactId>
74 <version>${project.version}</version>
75 </dependency>
76 <dependency>
77 <groupId>org.onosproject</groupId>
78 <artifactId>onos-api</artifactId>
79 <classifier>tests</classifier>
80 <scope>test</scope>
81 </dependency>
82 <dependency>
83 <groupId>org.onosproject</groupId>
84 <artifactId>onlab-junit</artifactId>
85 <scope>test</scope>
86 </dependency>
87 </dependencies>
88
89 <build>
90 <plugins>
91 <plugin>
92 <groupId>org.apache.felix</groupId>
93 <artifactId>maven-scr-plugin</artifactId>
94 </plugin>
95 <plugin>
96 <groupId>org.apache.felix</groupId>
97 <artifactId>maven-bundle-plugin</artifactId>
98 </plugin>
99 <plugin>
100 <groupId>org.onosproject</groupId>
101 <artifactId>onos-maven-plugin</artifactId>
102 </plugin>
103 </plugins>
104 </build>
105</project>