pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright 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.authservice</groupId>
  17. <artifactId>authservice-parent</artifactId>
  18. <version>2.0.5-SNAPSHOT</version>
  19. </parent>
  20. <artifactId>authservice-bom</artifactId>
  21. <name>Authentication webapp Bill of Materials</name>
  22. <dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>no.priv.bang.authservice</groupId>
  26. <artifactId>authservice.definitions</artifactId>
  27. <version>2.0.5-SNAPSHOT</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>no.priv.bang.authservice</groupId>
  31. <artifactId>authservice.definitions</artifactId>
  32. <version>2.0.5-SNAPSHOT</version>
  33. <type>xml</type>
  34. <classifier>features</classifier>
  35. </dependency>
  36. <dependency>
  37. <groupId>no.priv.bang.authservice</groupId>
  38. <artifactId>authservice.db.liquibase</artifactId>
  39. <version>2.0.5-SNAPSHOT</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>no.priv.bang.authservice</groupId>
  43. <artifactId>authservice.db.liquibase</artifactId>
  44. <version>2.0.5-SNAPSHOT</version>
  45. <type>xml</type>
  46. <classifier>features</classifier>
  47. </dependency>
  48. <dependency>
  49. <groupId>no.priv.bang.authservice</groupId>
  50. <artifactId>authservice.users</artifactId>
  51. <version>2.0.5-SNAPSHOT</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>no.priv.bang.authservice</groupId>
  55. <artifactId>authservice.web.security.dbrealm</artifactId>
  56. <version>2.0.5-SNAPSHOT</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>no.priv.bang.authservice</groupId>
  60. <artifactId>authservice.web.security.memorysession</artifactId>
  61. <version>2.0.5-SNAPSHOT</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>no.priv.bang.authservice</groupId>
  65. <artifactId>karaf</artifactId>
  66. <version>2.0.5-SNAPSHOT</version>
  67. <type>xml</type>
  68. <classifier>features</classifier>
  69. </dependency>
  70. </dependencies>
  71. </dependencyManagement>
  72. </project>