I am aware that *.kts scripts can include a dependency like this:
#!/usr/bin/env kscript
@file:DependsOn("com.domain.project:name:1.0-SNAPSHOT")
I created a small library to process different text snippets and uploaded it on github.
Is it possible to use this library as a dependency within a kotlin script without going through mvnRepository or something similar?
something like this for example:
#!/usr/bin/env kscript
@file:DependsOn("com.github.username.project")