Are there other default maven archetype properties -
i'm creating maven archetype has bunch of custom properties. ex: <requiredproperties> <requiredproperty key="db-name"> <defaultvalue>some db-name</defaultvalue> </requiredproperty> <requiredproperty key="station-name"> <defaultvalue>localhost</defaultvalue> </requiredproperty> ... </requiredproperties> when new project generated based on archetype maven knows default variables groupid, artifactid, version. maven knows others trivial variables env.user, user, host, path, basedir or others? are? how can them? thanks. i realise old question, came across question earlier , voted it. wondering same, have come solution / workaround enabling access these properties. i created own maven plugin aptly named property-setter-maven-plugin sets system and, importantly, execution properties. configuration of plugin allows number of properties , values specified (and since de...