pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright 2017-2021 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" BASIS, -->
  10. <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
  11. <!-- See the License for the specific language governing permissions and limitations -->
  12. <!-- under the License. -->
  13. <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">
  14. <modelVersion>4.0.0</modelVersion>
  15. <parent>
  16. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  17. <artifactId>adapters-parent</artifactId>
  18. <version>1.3.0-SNAPSHOT</version>
  19. </parent>
  20. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  21. <artifactId>adapters</artifactId>
  22. <version>1.3.0-SNAPSHOT</version>
  23. <packaging>pom</packaging>
  24. <name>Adapters build</name>
  25. <modules>
  26. <module>service-mocks</module>
  27. <module>adapters.logservice</module>
  28. <module>adapters.jdbc</module>
  29. <module>adapters.tests</module>
  30. </modules>
  31. <dependencyManagement>
  32. <dependencies>
  33. <dependency>
  34. <groupId>no.priv.bang.pom</groupId>
  35. <artifactId>bang-bom</artifactId>
  36. <version>${bang-bom.version}</version>
  37. <type>pom</type>
  38. <scope>import</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.karaf</groupId>
  42. <artifactId>karaf-bom</artifactId>
  43. <version>${karaf.version}</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.junit</groupId>
  49. <artifactId>junit-bom</artifactId>
  50. <version>${junit.jupiter.version}</version>
  51. <type>pom</type>
  52. <scope>import</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.hamcrest</groupId>
  56. <artifactId>hamcrest-library</artifactId>
  57. <version>1.3</version>
  58. <scope>test</scope>
  59. </dependency>
  60. </dependencies>
  61. </dependencyManagement>
  62. </project>