jira-importer commented on issue #704: URL: https://github.com/apache/maven-javadoc-plugin/issues/704#issuecomment-2957347168
**[Ida de Groot](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=idadegroot)** commented Same issue using: ``` mvn -version Apache Maven 3.1.0 (893ca28a1da9d5f51ac03827af98bb730128f9f2; 2013-06-28 04:15:32+0200) Maven home: D:\maven\apache-maven-3.1.0 Java version: 1.7.0_21, vendor: Oracle Corporation Java home: C:\Progra~1\Java\jdk1.7.0_21\jre Default locale: en_US, platform encoding: Cp1252 OS name: "windows 7", version: "6.1", arch: "amd64", family: "windows" ``` mvn release:perform would not work until we found out we did not manage the version of the javadoc plugin. Adding javadoc plugin with version 2.9.1 to the pluginManagement section made the release:perform work again: ``` <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> </plugin> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
