vertx-auth-common-4.3.7.pom 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2014 Red Hat, Inc.
  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. -->
  17. <project xmlns="http://maven.apache.org/POM/4.0.0"
  18. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  20. <parent>
  21. <artifactId>vertx-auth</artifactId>
  22. <groupId>io.vertx</groupId>
  23. <version>4.3.7</version>
  24. </parent>
  25. <modelVersion>4.0.0</modelVersion>
  26. <artifactId>vertx-auth-common</artifactId>
  27. <properties>
  28. <doc.skip>false</doc.skip>
  29. </properties>
  30. <dependencies>
  31. <dependency>
  32. <groupId>io.vertx</groupId>
  33. <artifactId>vertx-unit</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-failsafe-plugin</artifactId>
  42. <version>2.22.0</version>
  43. <executions>
  44. <execution>
  45. <id>legacy-base64-itest</id>
  46. <goals>
  47. <goal>integration-test</goal>
  48. <goal>verify</goal>
  49. </goals>
  50. <configuration>
  51. <includes>
  52. <include>io/vertx/ext/auth/it/JWKLegacyBase64Test.java</include>
  53. </includes>
  54. </configuration>
  55. </execution>
  56. </executions>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>