Carmelo Cascone | 97efefb | 2019-12-05 16:40:45 -0800 | [diff] [blame] | 1 | <?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 Cascone | 33a6cc4 | 2020-02-21 14:20:29 -0800 | [diff] [blame] | 25 | <version>2.2.1</version> |
Carmelo Cascone | 97efefb | 2019-12-05 16:40:45 -0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <groupId>org.opencord</groupId> |
| 29 | <artifactId>fabric-tofino</artifactId> |
Jenkins | f3aa95c | 2020-01-29 01:30:45 +0000 | [diff] [blame] | 30 | <version>1.1.1-SNAPSHOT</version> |
Carmelo Cascone | 97efefb | 2019-12-05 16:40:45 -0800 | [diff] [blame] | 31 | <packaging>bundle</packaging> |
| 32 | |
Carmelo Cascone | 21e72a2 | 2019-12-18 10:01:08 -0800 | [diff] [blame] | 33 | <description> |
| 34 | Pipeconf to use Trellis with Barefoot Tofino-based devices |
| 35 | </description> |
Carmelo Cascone | 97efefb | 2019-12-05 16:40:45 -0800 | [diff] [blame] | 36 | <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 Cascone | 21e72a2 | 2019-12-18 10:01:08 -0800 | [diff] [blame] | 46 | Tofino-based devices. |
Carmelo Cascone | 97efefb | 2019-12-05 16:40:45 -0800 | [diff] [blame] | 47 | </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> |
Andrey Pozolotin | e1cf455 | 2020-08-24 14:53:22 +0200 | [diff] [blame] | 82 | |
| 83 | <!-- SpotBugs Static Analysis --> |
| 84 | <plugin> |
| 85 | <groupId>com.github.spotbugs</groupId> |
| 86 | <artifactId>spotbugs-maven-plugin</artifactId> |
| 87 | <version>4.0.4</version> |
| 88 | <configuration> |
| 89 | <effort>Max</effort> |
| 90 | <threshold>Low</threshold> |
| 91 | <failOnError>false</failOnError> |
| 92 | <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile> |
| 93 | <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile> |
| 94 | <plugins> |
| 95 | <plugin> |
| 96 | <groupId>com.h3xstream.findsecbugs</groupId> |
| 97 | <artifactId>findsecbugs-plugin</artifactId> |
| 98 | <version>1.10.1</version> |
| 99 | </plugin> |
| 100 | </plugins> |
| 101 | </configuration> |
| 102 | </plugin> |
Carmelo Cascone | 97efefb | 2019-12-05 16:40:45 -0800 | [diff] [blame] | 103 | </plugins> |
| 104 | </build> |
| 105 | |
| 106 | </project> |