Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions stack-depchain/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@
<groupId>io.vertx</groupId>
<artifactId>vertx-auth-webauthn</artifactId>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-auth-webauthn4j</artifactId>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-auth-sql-client</artifactId>
Expand Down
17 changes: 17 additions & 0 deletions stack-docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,20 @@
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-auth-webauthn4j</artifactId>
<version>${vertx.docs.version}</version>
<classifier>docs</classifier>
<type>zip</type>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-auth-webauthn4j</artifactId>
<version>${vertx.docs.version}</version>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-auth-otp</artifactId>
Expand Down Expand Up @@ -1732,6 +1746,9 @@
<copy todir="${project.build.directory}/docs/vertx-auth-webauthn/">
<fileset dir="${project.build.directory}/work/vertx-auth-webauthn-docs-zip"/>
</copy>
<copy todir="${project.build.directory}/docs/vertx-auth-webauthn4j/">
<fileset dir="${project.build.directory}/work/vertx-auth-webauthn4j-docs-zip"/>
</copy>
<copy todir="${project.build.directory}/docs/vertx-auth-otp/">
<fileset dir="${project.build.directory}/work/vertx-auth-otp-docs-zip"/>
</copy>
Expand Down
6 changes: 6 additions & 0 deletions stack-manager/src/main/descriptor/vertx-stack-full.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@
"version": "\${vertx.version}",
"included": true
},
{
"groupId": "io.vertx",
"artifactId": "vertx-auth-webauthn4j",
"version": "\${vertx.version}",
"included": true
},
{
"groupId": "io.vertx",
"artifactId": "vertx-auth-otp",
Expand Down