Does <include> support URLs?

The include tag (http://liquibase.org/manual/include) has a file attribute, but does it support obtaining a changelog from a URL instead of a local file path? 

We have a lot of library projects with database entities, and we’re experimenting with the best way for those projects to publish their LiquiBase changelogs for use in other projects.  One idea was to put the changelogs in an Ivy/Maven repository, but would need to support URLs for that to work.

It doesn’t currently.  It wouldn’t be hard to implement since how resources are resolved is abstracted away (*ResourceLoader classes).  But currently it does not support it.

Nathan