How to add a new library in webauthn-server-core? #282
-
Hi, I am trying to extend functionality of
Am I following the right steps to add a dependency? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi! I think that should work, assuming your You can run Gradle with the
For me, this includes one extremely long line that starts with:
and contains a |
Beta Was this translation helpful? Give feedback.
Hi! I think that should work, assuming your
libtest
project is a subdirectory of thewebauthn-server-core/
directory. Otherwise you'll have to use parent traversal (../../libtest/target/libtest.jar
) or an absolute path to yourlibtest
project directory.You can run Gradle with the
--debug
option to check if your JAR makes it onto the classpath. For example:For me, this includes one extremely long line that starts with:
and co…