xml - Shared property -
i have few plugins maven use same list of elements.
it looks like:
<configuration> <sourcedirectory>/path/to/source</sourcedirectory> <outputdirectory>/path/to/output</outputdirectory> <basepackage>com.example</basepackage> <imports> <import>some/file/location</import> <import>another/file/location</import> <import>and/another/file</import> <import>and/another/file</import> <import>and/another/file</import> <import>and/another/file</import> <import>and/another/file</import> <import>and/another/file</import> <import>and/another/file</import> </imports> </configuration>
i want each configuration have different src/output , base package, share same list of imports.
is there way share xml properties across configurations?
Comments
Post a Comment