Not that I know of. But you could declare a standard maven property and use that for all plugin configuration where you want the same value.
/Anders On Tue, Aug 31, 2010 at 19:09, Will Hoover <[email protected]> wrote: > Is there a way that a configuration property of a plug-in used in a parent > POM be accessed in a child POM? For example, If you had some plug-in like > the example below in a parent POM of your project and you wanted to access > the configuration property "escapeString" can you do it in your POM (i.e. > ${project.XXX.escapeString} )? > > > > <project> > > ... > > <build> > > <plugins> > > <plugin> > > <groupId>org.apache.maven.plugins</groupId> > > <artifactId>maven-resources-plugin</artifactId> > > <version>2.4.3</version> > > <configuration> > > ... > > <escapeString>\</escapeString> > > ... > > </configuration> > > </plugin> > > </plugins> > > ... > > </build> > > ... > > </project> > > > > > > > > > >
