Charles Chan | 1fdf489 | 2020-09-04 14:38:06 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2015-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/xsd/maven-4.0.0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>segmentrouting</artifactId> |
Jenkins | 625f7fa | 2020-09-10 10:19:26 +0000 | [diff] [blame] | 25 | <version>3.0.1-SNAPSHOT</version> |
Charles Chan | 1fdf489 | 2020-09-04 14:38:06 -0700 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>segmentrouting-impl</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | <url>http://trellisfabric.org</url> |
| 32 | <description>Trellis control implementation</description> |
| 33 | |
| 34 | <dependencies> |
| 35 | <!-- ONOS core --> |
| 36 | <dependency> |
| 37 | <groupId>org.onosproject</groupId> |
| 38 | <artifactId>onos-api</artifactId> |
| 39 | <version>${onos.version}</version> |
| 40 | <scope>provided</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.onosproject</groupId> |
| 44 | <artifactId>onos-core-net</artifactId> |
| 45 | <version>${onos.version}</version> |
| 46 | <scope>provided</scope> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.onosproject</groupId> |
| 50 | <artifactId>onos-core-serializers</artifactId> |
| 51 | <version>${onos.version}</version> |
| 52 | <scope>provided</scope> |
| 53 | </dependency> |
| 54 | |
| 55 | <!-- Other Trellis apps --> |
| 56 | <dependency> |
| 57 | <groupId>org.onosproject</groupId> |
| 58 | <artifactId>segmentrouting-api</artifactId> |
| 59 | <version>${project.version}</version> |
| 60 | <scope>provided</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.onosproject</groupId> |
| 64 | <artifactId>onos-apps-portloadbalancer</artifactId> |
| 65 | <version>${onos.version}</version> |
| 66 | <scope>provided</scope> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.onosproject</groupId> |
| 70 | <artifactId>onos-apps-route-service-api</artifactId> |
| 71 | <version>${onos.version}</version> |
| 72 | <scope>provided</scope> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.onosproject</groupId> |
| 76 | <artifactId>onos-apps-mcast-api</artifactId> |
| 77 | <version>${onos.version}</version> |
| 78 | <scope>provided</scope> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>org.onosproject</groupId> |
| 82 | <artifactId>onos-apps-mcast-cli</artifactId> |
| 83 | <version>${onos.version}</version> |
| 84 | <scope>provided</scope> |
| 85 | </dependency> |
| 86 | |
| 87 | <!-- Tests --> |
| 88 | <dependency> |
| 89 | <groupId>org.onosproject</groupId> |
| 90 | <artifactId>onos-api</artifactId> |
| 91 | <version>${onos.version}</version> |
| 92 | <classifier>tests</classifier> |
| 93 | <scope>test</scope> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>org.onosproject</groupId> |
| 97 | <artifactId>onos-core-common</artifactId> |
| 98 | <version>${onos.version}</version> |
| 99 | <classifier>tests</classifier> |
| 100 | <scope>test</scope> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>org.onosproject</groupId> |
| 104 | <artifactId>segmentrouting-api</artifactId> |
| 105 | <version>${project.version}</version> |
| 106 | <classifier>tests</classifier> |
| 107 | <scope>test</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>org.onosproject</groupId> |
| 111 | <artifactId>onos-apps-route-service-api</artifactId> |
| 112 | <version>${onos.version}</version> |
| 113 | <classifier>tests</classifier> |
| 114 | <scope>test</scope> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.onosproject</groupId> |
| 118 | <artifactId>onlab-junit</artifactId> |
| 119 | <version>${onos.version}</version> |
| 120 | <scope>test</scope> |
| 121 | </dependency> |
| 122 | |
| 123 | <!-- CLI --> |
| 124 | <dependency> |
| 125 | <groupId>org.apache.karaf.shell</groupId> |
| 126 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 127 | <scope>provided</scope> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.apache.karaf.shell</groupId> |
| 131 | <artifactId>org.apache.karaf.shell.core</artifactId> |
| 132 | <scope>provided</scope> |
| 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>org.onosproject</groupId> |
| 136 | <artifactId>onos-cli</artifactId> |
| 137 | <version>${onos.version}</version> |
| 138 | <scope>provided</scope> |
| 139 | </dependency> |
| 140 | </dependencies> |
| 141 | |
| 142 | <build> |
| 143 | <plugins> |
| 144 | <plugin> |
| 145 | <groupId>org.onosproject</groupId> |
| 146 | <artifactId>onos-maven-plugin</artifactId> |
| 147 | </plugin> |
| 148 | <plugin> |
| 149 | <groupId>org.apache.felix</groupId> |
| 150 | <artifactId>maven-bundle-plugin</artifactId> |
| 151 | <extensions>true</extensions> |
| 152 | <configuration> |
| 153 | <instructions> |
| 154 | <Karaf-Commands>org.onosproject.segmentrouting.cli</Karaf-Commands> |
| 155 | </instructions> |
| 156 | </configuration> |
| 157 | </plugin> |
| 158 | </plugins> |
| 159 | </build> |
| 160 | </project> |