Wendy, thank you very much! Actually, with my current version of the war
plugin and your suggestion, the install and deploy phases perform exactly
what I want them to... I don't need a workaround anymore.
I looked at the results of the install and deploy phases and the artifact is
named with the correct classifier in both cases (after
installation/deployment). Perhaps the maintainers fixed the deploy plugin.
Just for reference, I'm using the latest snapshot of maven-war-plugin.
> > I'd like to either specify something in a build profile in my POM
> > (preferred) or something in on the command line (also acceptable) that
> will
> > cause my artifacts to be named
> >
> > ${artifact}-${version}-${suffix1}.war
> > ${artifact}-${version}-${suffix2}.war
>
> [snip]
>
> <plugin>
> <artifactId>maven-war-plugin</artifactId>
> <version>2.0.2</version>
> <configuration>
> <classifier>thesuffix</classifier>
> </configuration>
> </plugin>
>
> You could go ahead and add it to the pom, then continue using your
> deploy:deploy-file workaround [...]