Advertisement
Guest User

Untitled

a guest
Sep 4th, 2014
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. tom-kees-mbp:integration xsited$ git diff
  2. diff --git a/features/src/main/resources/features.xml b/features/src/main/resources/features.xml
  3. index d5f7ae1..dc0019f 100644
  4. --- a/features/src/main/resources/features.xml
  5. +++ b/features/src/main/resources/features.xml
  6. @@ -63,6 +63,7 @@
  7. <repository>mvn:org.opendaylight.ttp/features-ttp/${feature.ttp.version}/xml/features</repository>
  8. <repository>mvn:org.opendaylight.vtn/features-vtn-manager/${feature.vtn-manager.version}/xml/features</repository>
  9. <repository>mvn:org.opendaylight.bgpcep/features-bgp/${feature.bgp.version}/xml/features</repository>
  10. + <repository>mvn:org.opendaylight.packetcable/features-packetcable/${feature.packetcable.version}/xml/features</repository>
  11. <feature name='odl-integration-compatible-with-all' version='${project.version}'>
  12. <feature version='1.1-SNAPSHOT'>odl-mdsal-broker</feature>
  13. <feature version='1.1-SNAPSHOT'>odl-restconf</feature>
  14. @@ -77,6 +78,7 @@
  15. <feature version='${feature.bgp.version}'>odl-bgpcep-all</feature>
  16. <feature version='${feature.lispflowmapping.version}'>odl-lispflowmapping-all</feature>
  17. <feature version='${feature.ttp.version}'>odl-ttp-all</feature>
  18. + <feature version='${feature.packetcable.version}'>odl-packetcable-all</feature>
  19. </feature>
  20.  
  21. <!--
  22. diff --git a/pom.xml b/pom.xml
  23. index a10c6cc..e63cc56 100644
  24. --- a/pom.xml
  25. +++ b/pom.xml
  26. @@ -30,6 +30,7 @@
  27. <feature.ttp.version>0.0.1-SNAPSHOT</feature.ttp.version>
  28. <feature.vtn-manager.version>0.2.0-SNAPSHOT</feature.vtn-manager.version>
  29. <feature.bgp.version>0.3.1-SNAPSHOT</feature.bgp.version>
  30. + <feature.packetcable.version>1.1-SNAPSHOT</feature.packetcable.version>
  31. <karaf.branding.version>1.0.0-SNAPSHOT</karaf.branding.version>
  32. <karaf.version>3.0.1</karaf.version>
  33. <maven.surefire.version>2.16</maven.surefire.version>
  34. @@ -190,7 +191,13 @@
  35. <classifier>features</classifier>
  36. <type>xml</type>
  37. </dependency>
  38. -
  39. + <dependency>
  40. + <groupId>org.opendaylight.packetcable</groupId>
  41. + <artifactId>features-packetcable</artifactId>
  42. + <version>${feature.packetcable.version}</version>
  43. + <classifier>features</classifier>
  44. + <type>xml</type>
  45. + </dependency>
  46. <!-- test to validate features.xml -->
  47. <dependency>
  48. <groupId>org.opendaylight.yangtools</groupId>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement