Advertisement
Guest User

Untitled

a guest
Aug 30th, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.92 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- vi: set et smarttab sw=4 tabstop=4: -->
  3. <!--
  4. This program and the accompanying materials are made available under the
  5. terms of the Eclipse Public License v1.0 which accompanies this distribution,
  6. and is available at http://www.eclipse.org/legal/epl-v10.html
  7. -->
  8. <features name="odl-packetcable-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.2.0"
  9. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  10. xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.2.0 http://karaf.apache.org/xmlns/features/v1.2.0">
  11. <!--
  12. Please read the features guidelines:
  13. https://wiki.opendaylight.org/view/Runtime:Karaf_Features_Guidelines#Feature_Best_Practices
  14. -->
  15. <!--
  16. Add repo entries for the repositories of features you refer to in this feature file but do not define here.
  17. <repository>mvn:org.opendaylight.openflowplugin/features-openflowplugin/0.0.3-SNAPSHOT/xml/features</repository>
  18. <repository>mvn:org.opendaylight.controller/features-adsal/${feature.adsal.version}/xml/features</repository>
  19. <repository>mvn:org.opendaylight.controller/features-adsal-compatibility/1.4.2-SNAPSHOT/xml/features</repository>
  20. -->
  21. <repository>mvn:org.opendaylight.openflowplugin/features-openflowplugin/0.0.3-SNAPSHOT/xml/features</repository>
  22. <repository>mvn:org.opendaylight.yangtools/features-yangtools/0.6.2-SNAPSHOT/xml/features</repository>
  23. <repository>mvn:org.opendaylight.controller/features-mdsal/1.1-SNAPSHOT/xml/features</repository>
  24.  
  25. <feature name='odl-packetcable-all' version='${project.version}' description='OpenDaylight :: packetcable :: All'>
  26. <feature version='${project.version}'>odl-packetcable-consumer</feature>
  27. <feature version='${project.version}'>odl-packetcable-provider</feature>
  28. <feature version='${project.version}'>odl-packetcable-model</feature>
  29. </feature>
  30. <!--
  31. Define your features. It is useful to list then in order of dependency. So if A depends on B, list A first.
  32. It's also nice to list inside a feature, first the features it needs, then the bundles it needs, then the configfiles.
  33. <feature version='0.0.3-SNAPSHOT'>odl-openflowplugin-flow-services</feature>
  34. <bundle>mvn:com.google.common.collect/collect/14.0</bundle>
  35. -->
  36. <!--feature version='0.0.3-SNAPSHOT'>odl-openflowplugin-flow-services</feature-->
  37. <!--- * Basic MD-SAL Consumer -->
  38. <feature name='odl-packetcable-consumer' version='${project.version}' description='OpenDaylight :: packetcable :: Consumer '>
  39. <feature version='1.1-SNAPSHOT'>odl-mdsal-broker</feature>
  40. <feature version='${project.version}'>odl-packetcable-model</feature>
  41. <feature version='${project.version}'>odl-packetcable-provider</feature>
  42. <bundle>mvn:org.opendaylight.controller.packetcable/packetcable-consumer/${project.version}</bundle>
  43. </feature>
  44.  
  45. <!--- * Basic MD-SAL Model feature -->
  46. <feature name='odl-packetcable-model' version='${project.version}' description='OpenDaylight :: packetcable :: Model'>
  47. <feature version='0.6.2-SNAPSHOT'>odl-yangtools-binding</feature>
  48. <feature version='0.6.2-SNAPSHOT'>odl-yangtools-models</feature>
  49. <feature version='0.0.3-SNAPSHOT'>odl-openflowplugin-flow-services</feature>
  50. <bundle>mvn:org.opendaylight.controller.packetcable/packetcable-model/${project.version}</bundle>
  51. </feature>
  52.  
  53. <!--- * Basic MD-SAL Provider that uses openflowplugin-flow-services (which brings along odl-mdsal-broker) -->
  54. <feature name='odl-packetcable-provider' version='${project.version}' description='OpenDaylight :: packetcable :: Provider'>
  55. <bundle>mvn:org.opendaylight.controller.packetcable/packetcable-provider/${project.version}</bundle>
  56. </feature>
  57.  
  58. </features>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement