blob: d377ec61fa5b95bb56d2a4ba5d4c19d707848d38 [file] [log] [blame]
Carmelo Cascone97efefb2019-12-05 16:40:45 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2019 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/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-dependencies</artifactId>
25 <version>2.2.1-b3</version>
26 </parent>
27
28 <groupId>org.opencord</groupId>
29 <artifactId>fabric-tofino</artifactId>
30 <version>2.2.1-SNAPSHOT</version>
31 <packaging>bundle</packaging>
32
33 <description>Pipeconf to use Trellis with Tofino-based targets</description>
34 <url>http://www.opencord.org</url>
35
36 <properties>
37 <onos.app.name>org.opencord.fabric-tofino</onos.app.name>
38 <onos.app.title>Tofino-enabled Fabric Pipeconf</onos.app.title>
39 <onos.app.origin>http://www.opencord.org</onos.app.origin>
40 <onos.app.category>Pipeline</onos.app.category>
41 <onos.app.url>http://www.opencord.org</onos.app.url>
42 <onos.app.readme>
43 Provides pipeconfs based on fabric.p4 to use Trellis with Barefoot
44 Tofino-based switches.
45 </onos.app.readme>
46 <onos.app.requires>
47 org.onosproject.pipelines.fabric
48 </onos.app.requires>
49 </properties>
50
51 <dependencies>
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-api</artifactId>
55 <version>${onos.version}</version>
56 <scope>provided</scope>
57 </dependency>
58
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onlab-osgi</artifactId>
62 <version>${onos.version}</version>
63 <scope>provided</scope>
64 </dependency>
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-pipelines-fabric-api</artifactId>
69 <version>${onos.version}</version>
70 <scope>provided</scope>
71 </dependency>
72 </dependencies>
73
74 <build>
75 <plugins>
76 <plugin>
77 <groupId>org.onosproject</groupId>
78 <artifactId>onos-maven-plugin</artifactId>
79 </plugin>
80 </plugins>
81 </build>
82
83</project>