Removed bogus pom.xml.orig file that was merged by accident.
Change-Id: I15f548c6ee58500209dd4e876bb7a01c37ec6720
Showing
1 changed file
with
0 additions
and
104 deletions
apps/sdnip/pom.xml.orig
deleted
100644 → 0
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | -<!-- | ||
| 3 | - ~ Copyright 2014 Open Networking Laboratory | ||
| 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.onlab.onos</groupId> | ||
| 24 | - <artifactId>onos-apps</artifactId> | ||
| 25 | - <version>1.0.0-SNAPSHOT</version> | ||
| 26 | - <relativePath>../pom.xml</relativePath> | ||
| 27 | - </parent> | ||
| 28 | - | ||
| 29 | - <artifactId>onos-app-sdnip</artifactId> | ||
| 30 | - <packaging>bundle</packaging> | ||
| 31 | - | ||
| 32 | - <description>SDN-IP peering application</description> | ||
| 33 | - | ||
| 34 | - <dependencies> | ||
| 35 | - <dependency> | ||
| 36 | - <groupId>com.fasterxml.jackson.core</groupId> | ||
| 37 | - <artifactId>jackson-databind</artifactId> | ||
| 38 | - </dependency> | ||
| 39 | - <dependency> | ||
| 40 | - <groupId>com.fasterxml.jackson.core</groupId> | ||
| 41 | - <artifactId>jackson-annotations</artifactId> | ||
| 42 | - <version>2.4.2</version> | ||
| 43 | - <scope>provided</scope> | ||
| 44 | - </dependency> | ||
| 45 | - | ||
| 46 | - <dependency> | ||
| 47 | - <groupId>com.google.guava</groupId> | ||
| 48 | - <artifactId>guava</artifactId> | ||
| 49 | - </dependency> | ||
| 50 | - | ||
| 51 | - <dependency> | ||
| 52 | - <groupId>org.apache.commons</groupId> | ||
| 53 | - <artifactId>commons-collections4</artifactId> | ||
| 54 | - <version>4.0</version> | ||
| 55 | - </dependency> | ||
| 56 | - | ||
| 57 | - <dependency> | ||
| 58 | - <groupId>org.onlab.onos</groupId> | ||
| 59 | - <artifactId>onlab-thirdparty</artifactId> | ||
| 60 | - </dependency> | ||
| 61 | - | ||
| 62 | - <dependency> | ||
| 63 | - <groupId>org.onlab.onos</groupId> | ||
| 64 | - <artifactId>onlab-misc</artifactId> | ||
| 65 | - </dependency> | ||
| 66 | - | ||
| 67 | - <dependency> | ||
| 68 | - <groupId>org.onlab.onos</groupId> | ||
| 69 | - <artifactId>onlab-junit</artifactId> | ||
| 70 | - <scope>test</scope> | ||
| 71 | - </dependency> | ||
| 72 | - | ||
| 73 | - <dependency> | ||
| 74 | - <groupId>org.onlab.onos</groupId> | ||
| 75 | - <artifactId>onos-api</artifactId> | ||
| 76 | - <version>${project.version}</version> | ||
| 77 | - <scope>test</scope> | ||
| 78 | - <classifier>tests</classifier> | ||
| 79 | - </dependency> | ||
| 80 | - | ||
| 81 | - <dependency> | ||
| 82 | - <groupId>org.onlab.onos</groupId> | ||
| 83 | - <artifactId>onos-cli</artifactId> | ||
| 84 | - <version>${project.version}</version> | ||
| 85 | - </dependency> | ||
| 86 | - | ||
| 87 | - <dependency> | ||
| 88 | - <groupId>org.apache.karaf.shell</groupId> | ||
| 89 | - <artifactId>org.apache.karaf.shell.console</artifactId> | ||
| 90 | - </dependency> | ||
| 91 | - | ||
| 92 | - <dependency> | ||
| 93 | - <groupId>org.osgi</groupId> | ||
| 94 | - <artifactId>org.osgi.core</artifactId> | ||
| 95 | - </dependency> | ||
| 96 | - | ||
| 97 | - <dependency> | ||
| 98 | - <groupId>org.easymock</groupId> | ||
| 99 | - <artifactId>easymock</artifactId> | ||
| 100 | - <scope>test</scope> | ||
| 101 | - </dependency> | ||
| 102 | - </dependencies> | ||
| 103 | - | ||
| 104 | -</project> |
-
Please register or login to post a comment