pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright 2022-2024 Steinar Bang -->
  3. <!-- -->
  4. <!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
  5. <!-- you may not use this file except in compliance with the License. -->
  6. <!-- You may obtain a copy of the License at -->
  7. <!-- http://www.apache.org/licenses/LICENSE-2.0 -->
  8. <!-- Unless required by applicable law or agreed to in writing, -->
  9. <!-- software distributed under the License is distributed on an "AS IS", -->
  10. <!-- BASIS WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -->
  11. <!-- or implied. -->
  12. <!-- See the License for the specific language governing permissions and -->
  13. <!-- limitations under the License. -->
  14. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xml:space="preserve">
  15. <modelVersion>4.0.0</modelVersion>
  16. <parent>
  17. <groupId>no.priv.bang.karaf</groupId>
  18. <artifactId>liquibase-karaf-feature</artifactId>
  19. <version>4.31.1-SNAPSHOT</version>
  20. </parent>
  21. <artifactId>liquibase-bom</artifactId>
  22. <packaging>pom</packaging>
  23. <name>liquibase karaf feature BOM</name>
  24. <description>A Bill Of Materials pom setting the versions of the liquibase-core feature and the liquibase-core jar.</description>
  25. <url>https://github.com/steinarb/liquibase-karaf-feature</url>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>no.priv.bang.karaf</groupId>
  30. <artifactId>liquibase-core-karaf</artifactId>
  31. <version>${project.version}</version>
  32. <type>xml</type>
  33. <classifier>features</classifier>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.liquibase</groupId>
  37. <artifactId>liquibase-core</artifactId>
  38. <version>${liquibase.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>no.priv.bang.karaf</groupId>
  42. <artifactId>karaf.liquibase.runner</artifactId>
  43. <version>${project.version}</version>
  44. <type>xml</type>
  45. <classifier>features</classifier>
  46. </dependency>
  47. <dependency>
  48. <groupId>no.priv.bang.karaf</groupId>
  49. <artifactId>karaf.liquibase.runner</artifactId>
  50. <version>${project.version}</version>
  51. </dependency>
  52. </dependencies>
  53. </dependencyManagement>
  54. </project>