also I can't seem to find a way to do something li...
# scripting
c
also I can't seem to find a way to do something like:
Copy code
dependencies {
    import("...jsonSchema") from somewhere(...)
    import("SomePOJO") from jsonSchema(...)
}
where everything except for
jsonSchema
is immediately available, but that one function is imported from some script author-specified source (like maven artifact) specified in the first line. This means either adding dependencies during the processing or ignoring unknown symbols (so that multiple partial passes can be made), but I don't see a way to do either