vertx-auth-4.3.7.pom 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0"?>
  2. <!--
  3. ~ Copyright (c) 2011-2014 The original author or authors
  4. ~
  5. ~ All rights reserved. This program and the accompanying materials
  6. ~ are made available under the terms of the Eclipse Public License v1.0
  7. ~ and Apache License v2.0 which accompanies this distribution.
  8. ~
  9. ~ The Eclipse Public License is available at
  10. ~ http://www.eclipse.org/legal/epl-v10.html
  11. ~
  12. ~ The Apache License v2.0 is available at
  13. ~ http://www.opensource.org/licenses/apache2.0.php
  14. ~
  15. ~ You may elect to redistribute this code under either of these licenses.
  16. --><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">
  17. <modelVersion>4.0.0</modelVersion>
  18. <packaging>pom</packaging>
  19. <modules>
  20. <module>vertx-auth-common</module>
  21. <module>vertx-auth-shiro</module>
  22. <module>vertx-auth-jdbc</module>
  23. <module>vertx-auth-mongo</module>
  24. <module>vertx-auth-jwt</module>
  25. <module>vertx-auth-ldap</module>
  26. <module>vertx-auth-oauth2</module>
  27. <module>vertx-auth-htdigest</module>
  28. <module>vertx-auth-htpasswd</module>
  29. <module>vertx-auth-webauthn</module>
  30. <module>vertx-auth-properties</module>
  31. <module>vertx-auth-sql-client</module>
  32. <module>vertx-auth-otp</module>
  33. </modules>
  34. <parent>
  35. <groupId>io.vertx</groupId>
  36. <artifactId>vertx-ext-parent</artifactId>
  37. <version>38</version>
  38. </parent>
  39. <artifactId>vertx-auth</artifactId>
  40. <version>4.3.7</version>
  41. <name>Vert.x Auth</name>
  42. <properties>
  43. <stack.version>4.3.7</stack.version>
  44. <doc.skip>true</doc.skip>
  45. <jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest>
  46. </properties>
  47. <dependencyManagement>
  48. <dependencies>
  49. <dependency>
  50. <groupId>io.vertx</groupId>
  51. <artifactId>vertx-dependencies</artifactId>
  52. <version>${stack.version}</version>
  53. <type>pom</type>
  54. <scope>import</scope>
  55. </dependency>
  56. </dependencies>
  57. </dependencyManagement>
  58. <dependencies>
  59. <dependency>
  60. <groupId>io.vertx</groupId>
  61. <artifactId>vertx-core</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.vertx</groupId>
  65. <artifactId>vertx-codegen</artifactId>
  66. <scope>provided</scope>
  67. <optional>true</optional>
  68. </dependency>
  69. <dependency>
  70. <groupId>io.vertx</groupId>
  71. <artifactId>vertx-docgen</artifactId>
  72. <scope>provided</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>junit</groupId>
  76. <artifactId>junit</artifactId>
  77. <scope>test</scope>
  78. <version>4.13.2</version>
  79. </dependency>
  80. </dependencies>
  81. </project>