Several VersionCatalogs in the same 'version-catalog' project

Is it possible to define several VersionCatalogs in the same build.gradle file that will publish different catalogs as toml files?

Example of a single VersionCatalog:

catalog {
	versionCatalog {
			plugin("spring-boot", "org.springframework.boot").version('2.7.9')
			library("spring-starter-web", "org.springframework.boot", "spring-boot-starter-web").withoutVersion()
	}
}

I think if you want to publish multiple version catalogs, you need one project per published catalog.

i would like to avoid that :sweat_smile: