Advertisement
Guest User

pom.xml

a guest
Sep 6th, 2017
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.46 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.  
  6.     <parent>
  7.         <groupId>org.opendaylight.odlparent</groupId>
  8.         <artifactId>karaf4-parent</artifactId>
  9.         <version>2.0.4</version>
  10.         <relativePath></relativePath>
  11.     </parent>
  12.  
  13.     <groupId>edu.laval.sdn</groupId>
  14.     <artifactId>distribution-karaf</artifactId>
  15.     <version>0.0.1-SNAPSHOT</version>
  16.     <packaging>pom</packaging>
  17.     <prerequisites>
  18.         <maven>3.0</maven>
  19.     </prerequisites>
  20.  
  21.     <properties>
  22.         <karaf.localFeature>ulaval-networkstatemanager</karaf.localFeature>
  23.     </properties>
  24.  
  25.     <dependencies>
  26.         <dependency>
  27.             <groupId>org.apache.karaf.features</groupId>
  28.             <artifactId>framework</artifactId>
  29.             <version>${karaf.version}</version>
  30.             <type>kar</type>
  31.         </dependency>
  32.         <dependency>
  33.             <groupId>edu.ulaval.sdn</groupId>
  34.             <artifactId>features4-ulaval</artifactId>
  35.             <version>${project.version}</version>
  36.             <classifier>features</classifier>
  37.             <type>xml</type>
  38.             <scope>runtime</scope>
  39.         </dependency>
  40.     </dependencies>
  41.  
  42.     <build>
  43.         <plugins>
  44.             <plugin>
  45.                 <groupId>org.apache.maven.plugins</groupId>
  46.                 <artifactId>maven-deploy-plugin</artifactId>
  47.                 <configuration>
  48.                     <skip>true</skip>
  49.                 </configuration>
  50.             </plugin>
  51.         </plugins>
  52.     </build>
  53.  
  54. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement