|
| 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 | + |
| 18 | +<project xmlns="https://maven.apache.org/POM/4.0.0" |
| 19 | + xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" |
| 20 | + xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 21 | + <parent> |
| 22 | + <artifactId>vertx-auth-parent</artifactId> |
| 23 | + <groupId>io.vertx</groupId> |
| 24 | + <version>5.0.0-SNAPSHOT</version> |
| 25 | + </parent> |
| 26 | + <modelVersion>4.0.0</modelVersion> |
| 27 | + |
| 28 | + <artifactId>vertx-auth-webauthn4j</artifactId> |
| 29 | + |
| 30 | + <properties> |
| 31 | + <doc.skip>false</doc.skip> |
| 32 | + <webauthn4j.version>0.27.0.RELEASE</webauthn4j.version> |
| 33 | + </properties> |
| 34 | + |
| 35 | + |
| 36 | + <dependencies> |
| 37 | + <dependency> |
| 38 | + <groupId>io.vertx</groupId> |
| 39 | + <artifactId>vertx-auth-common</artifactId> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>com.webauthn4j</groupId> |
| 43 | + <artifactId>webauthn4j-core-async</artifactId> |
| 44 | + <version>${webauthn4j.version}</version> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>com.webauthn4j</groupId> |
| 48 | + <artifactId>webauthn4j-metadata-async</artifactId> |
| 49 | + <version>${webauthn4j.version}</version> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>com.webauthn4j</groupId> |
| 53 | + <artifactId>webauthn4j-test</artifactId> |
| 54 | + <scope>test</scope> |
| 55 | + <version>${webauthn4j.version}</version> |
| 56 | + <exclusions> |
| 57 | + <!--Causes double module import by different paths otherwise--> |
| 58 | + <exclusion> |
| 59 | + <groupId>org.springframework</groupId> |
| 60 | + <artifactId>spring-jcl</artifactId> |
| 61 | + </exclusion> |
| 62 | + </exclusions> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>io.vertx</groupId> |
| 66 | + <artifactId>vertx-unit</artifactId> |
| 67 | + <scope>test</scope> |
| 68 | + </dependency> |
| 69 | + </dependencies> |
| 70 | + |
| 71 | + <build> |
| 72 | + <plugins> |
| 73 | + <plugin> |
| 74 | + <groupId>org.codehaus.mojo</groupId> |
| 75 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 76 | + <executions> |
| 77 | + <execution> |
| 78 | + <goals> |
| 79 | + <goal>attach-artifact</goal> |
| 80 | + </goals> |
| 81 | + <configuration> |
| 82 | + <artifacts> |
| 83 | + <artifact> |
| 84 | + <file>${basedir}/src/main/js/vertx-auth-webauthn4j.js</file> |
| 85 | + <classifier>client</classifier> |
| 86 | + <type>js</type> |
| 87 | + </artifact> |
| 88 | + </artifacts> |
| 89 | + </configuration> |
| 90 | + </execution> |
| 91 | + </executions> |
| 92 | + </plugin> |
| 93 | + </plugins> |
| 94 | + </build> |
| 95 | + |
| 96 | + <profiles> |
| 97 | + <profile> |
| 98 | + <id>IT</id> |
| 99 | + <activation> |
| 100 | + <property> |
| 101 | + <name>env.CI</name> |
| 102 | + <value>true</value> |
| 103 | + </property> |
| 104 | + </activation> |
| 105 | + <build> |
| 106 | + <plugins> |
| 107 | + <plugin> |
| 108 | + <groupId>org.apache.maven.plugins</groupId> |
| 109 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 110 | + <version>3.0.0</version> |
| 111 | + <executions> |
| 112 | + <execution> |
| 113 | + <goals> |
| 114 | + <goal>integration-test</goal> |
| 115 | + <goal>verify</goal> |
| 116 | + </goals> |
| 117 | + <configuration> |
| 118 | + <useModulePath>false</useModulePath> |
| 119 | + </configuration> |
| 120 | + </execution> |
| 121 | + </executions> |
| 122 | + </plugin> |
| 123 | + </plugins> |
| 124 | + </build> |
| 125 | + </profile> |
| 126 | + </profiles> |
| 127 | + |
| 128 | +</project> |
0 commit comments