Advertisement
Guest User

pom.xml

a guest
Sep 6th, 2017
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.58 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright © 2017 Red Hat, Inc. and others. This program and the accompanying
  3.     materials are made available under the terms of the Eclipse Public License
  4.     v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html -->
  5. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  7.     <modelVersion>4.0.0</modelVersion>
  8.  
  9.     <parent>
  10.         <groupId>org.opendaylight.odlparent</groupId>
  11.         <artifactId>feature-repo-parent</artifactId>
  12.         <version>2.0.4</version>
  13.         <relativePath />
  14.     </parent>
  15.  
  16.     <groupId>edu.ulaval.sdn</groupId>
  17.     <artifactId>features4-ulaval</artifactId>
  18.     <version>0.0.1-SNAPSHOT</version>
  19.     <packaging>feature</packaging>
  20.  
  21.     <dependencies>
  22.         <!-- These are the feature bundles of the public ODL plugins I wish to import inside my ODL distribution. -->
  23.         <dependency>
  24.             <groupId>org.opendaylight.l2switch</groupId>
  25.             <artifactId>odl-l2switch-all</artifactId>
  26.             <version>0.6.0-SNAPSHOT</version>
  27.             <classifier>features</classifier>
  28.             <type>xml</type>
  29.         </dependency>
  30.         <dependency>
  31.             <groupId>org.opendaylight.l2switch</groupId>
  32.             <artifactId>odl-l2switch-switch-rest</artifactId>
  33.             <version>0.6.0-SNAPSHOT</version>
  34.             <classifier>features</classifier>
  35.             <type>xml</type>
  36.         </dependency>
  37.         <dependency>
  38.             <groupId>org.opendaylight.dluxapps</groupId>
  39.             <artifactId>features-dluxapps</artifactId>
  40.             <version>0.6.0-SNAPSHOT</version>
  41.             <classifier>features</classifier>
  42.             <type>xml</type>
  43.         </dependency>
  44.  
  45.         <!-- These are the feature bundles of my plugins -->
  46.         <dependency>
  47.             <groupId>${project.groupId}</groupId>
  48.             <artifactId>ulaval-networkstatemanager</artifactId>
  49.             <version>${project.version}</version>
  50.             <classifier>features</classifier>
  51.             <type>xml</type>
  52.         </dependency>
  53.         <dependency>
  54.             <groupId>${project.groupId}</groupId>
  55.             <artifactId>ulaval-openflowrulesinstaller</artifactId>
  56.             <version>${project.version}</version>
  57.             <classifier>features</classifier>
  58.             <type>xml</type>
  59.         </dependency>
  60.         <dependency>
  61.             <groupId>${project.groupId}</groupId>
  62.             <artifactId>ulaval-linearprogrammingloadbalancer</artifactId>
  63.             <version>${project.version}</version>
  64.             <classifier>features</classifier>
  65.             <type>xml</type>
  66.         </dependency>
  67.         <dependency>
  68.             <groupId>${project.groupId}</groupId>
  69.             <artifactId>ulaval-irrelevantflowrouter</artifactId>
  70.             <version>${project.version}</version>
  71.             <classifier>features</classifier>
  72.             <type>xml</type>
  73.         </dependency>
  74.         <dependency>
  75.             <groupId>${project.groupId}</groupId>
  76.             <artifactId>ulaval-ovsbandwidthpoller</artifactId>
  77.             <version>${project.version}</version>
  78.             <classifier>features</classifier>
  79.             <type>xml</type>
  80.         </dependency>
  81.         <dependency>
  82.             <groupId>${project.groupId}</groupId>
  83.             <artifactId>ulaval-networkservicemanager</artifactId>
  84.             <version>${project.version}</version>
  85.             <classifier>features</classifier>
  86.             <type>xml</type>
  87.         </dependency>
  88.         <dependency>
  89.             <groupId>${project.groupId}</groupId>
  90.             <artifactId>ulaval-networklinkmanager</artifactId>
  91.             <version>${project.version}</version>
  92.             <classifier>features</classifier>
  93.             <type>xml</type>
  94.         </dependency>
  95.         <dependency>
  96.             <groupId>${project.groupId}</groupId>
  97.             <artifactId>ulaval-hashloadbalancermanager</artifactId>
  98.             <version>${project.version}</version>
  99.             <classifier>features</classifier>
  100.             <type>xml</type>
  101.         </dependency>
  102.     </dependencies>
  103. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement