Hey, Im writing a custom plugin that has file resources under:
src/main/resource/com/some/path/file.text
During tests I can load the file by using:
def apply() {
URL url =
ClassLoader.getSystemResource('com/kenshoo/liquibase/LiquibaseApi.java')
}
However when applying the plugin in an actual project im getting null value
Any idea on how to solve this?
Thanks
Ronen
