blob: 9057bd1f5a5fd8f16831567805aa4605323bbf4e [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>
Carmelo Cascone33a6cc42020-02-21 14:20:29 -080025 <version>2.2.1</version>
Carmelo Cascone97efefb2019-12-05 16:40:45 -080026 </parent>
27
28 <groupId>org.opencord</groupId>
29 <artifactId>fabric-tofino</artifactId>
Jenkinsf3aa95c2020-01-29 01:30:45 +000030 <version>1.1.1-SNAPSHOT</version>
Carmelo Cascone97efefb2019-12-05 16:40:45 -080031 <packaging>bundle</packaging>
32
Carmelo Cascone21e72a22019-12-18 10:01:08 -080033 <description>
34 Pipeconf to use Trellis with Barefoot Tofino-based devices
35 </description>
Carmelo Cascone97efefb2019-12-05 16:40:45 -080036 <url>http://www.opencord.org</url>
37
38 <properties>
39 <onos.app.name>org.opencord.fabric-tofino</onos.app.name>
40 <onos.app.title>Tofino-enabled Fabric Pipeconf</onos.app.title>
41 <onos.app.origin>http://www.opencord.org</onos.app.origin>
42 <onos.app.category>Pipeline</onos.app.category>
43 <onos.app.url>http://www.opencord.org</onos.app.url>
44 <onos.app.readme>
45 Provides pipeconfs based on fabric.p4 to use Trellis with Barefoot
Carmelo Cascone21e72a22019-12-18 10:01:08 -080046 Tofino-based devices.
Carmelo Cascone97efefb2019-12-05 16:40:45 -080047 </onos.app.readme>
48 <onos.app.requires>
49 org.onosproject.pipelines.fabric
50 </onos.app.requires>
51 </properties>
52
53 <dependencies>
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onos-api</artifactId>
57 <version>${onos.version}</version>
58 <scope>provided</scope>
59 </dependency>
60
61 <dependency>
62 <groupId>org.onosproject</groupId>
63 <artifactId>onlab-osgi</artifactId>
64 <version>${onos.version}</version>
65 <scope>provided</scope>
66 </dependency>
67
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onos-pipelines-fabric-api</artifactId>
71 <version>${onos.version}</version>
72 <scope>provided</scope>
73 </dependency>
74 </dependencies>
75
76 <build>
77 <plugins>
78 <plugin>
79 <groupId>org.onosproject</groupId>
80 <artifactId>onos-maven-plugin</artifactId>
81 </plugin>
82 </plugins>
83 </build>
84
85</project>