pom.xml 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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.3.2-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. </dependency>
  28. <dependency>
  29. <groupId>no.priv.bang.authservice</groupId>
  30. <artifactId>authservice.definitions</artifactId>
  31. <type>xml</type>
  32. <classifier>features</classifier>
  33. </dependency>
  34. <dependency>
  35. <groupId>no.priv.bang.authservice</groupId>
  36. <artifactId>authservice.db.liquibase</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>no.priv.bang.authservice</groupId>
  40. <artifactId>authservice.db.liquibase</artifactId>
  41. <type>xml</type>
  42. <classifier>features</classifier>
  43. </dependency>
  44. <dependency>
  45. <groupId>no.priv.bang.authservice</groupId>
  46. <artifactId>authservice.db.liquibase.test</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>no.priv.bang.authservice</groupId>
  50. <artifactId>authservice.users</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>no.priv.bang.authservice</groupId>
  54. <artifactId>authservice.web.security.dbrealm</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>no.priv.bang.authservice</groupId>
  58. <artifactId>authservice.web.security.memorysession</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>no.priv.bang.authservice</groupId>
  62. <artifactId>authservice.web.security.shirofilter</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>no.priv.bang.authservice</groupId>
  66. <artifactId>authservice.web.security.shirofilter</artifactId>
  67. <type>xml</type>
  68. <classifier>features</classifier>
  69. </dependency>
  70. <dependency>
  71. <groupId>no.priv.bang.authservice</groupId>
  72. <artifactId>karaf</artifactId>
  73. <version>2.3.2-SNAPSHOT</version>
  74. <type>xml</type>
  75. <classifier>features</classifier>
  76. </dependency>
  77. </dependencies>
  78. </dependencyManagement>
  79. </project>