You should probably file a JIRA against the changelog plugin AFAIK it should be looking up the passwords from settings.xml or prompting from the command line... storing passwords in the pom.xml is asking for trouble
Although perhaps those fields are designed to pick up from the system prooperties so you could invoke maven like so: mvn -Dusername=.... -Dpassword=.... changelog:... In which case the JIRA should be to document in the javadoc for those fields that they are there not for specification from the pom.xml, but to allow specification from the CLI -Stephen 2009/4/16 Morgovsky, Alexander (US - Glen Mills) <[email protected]>: > I got changelog to work, the scm plugin wasn't helping me, so I found out > that the maven plugin changelog itself had parameters for username and > password. > > I'm pasting it here so that others don't get affected by the same problem. > > <plugin> > <groupId>org.apache.maven.plugins</groupId> > <artifactId>maven-changelog-plugin</artifactId> > <version>2.0</version> > <configuration> > <username>xxx</username> > <password>xxx</password> > </configuration> > </plugin> > > > > This message (including any attachments) contains confidential information > intended for a specific individual and purpose, and is protected by law. If > you are not the intended recipient, you should delete this message. > > Any disclosure, copying, or distribution of this message, or the taking of > any action based on it, is strictly prohibited. [v.E.1] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
