Bug 451331 - tycho-document-bundle-plugin adds javaDocOptions at the wrong time
Summary: tycho-document-bundle-plugin adds javaDocOptions at the wrong time
Status: RESOLVED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: Tycho (show other bugs)
Version: unspecified   Edit
Hardware: All All
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Jan Sievers CLA
QA Contact:
URL:
Whiteboard:
Keywords: contributed
Depends on:
Blocks:
 
Reported: 2014-11-13 07:44 EST by Thomas Schindl CLA
Modified: 2021-04-28 16:51 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Thomas Schindl CLA 2014-11-13 07:44:59 EST
==================
			<plugin>
				<groupId>org.eclipse.tycho.extras</groupId>
				<artifactId>tycho-document-bundle-plugin</artifactId>
				<version>${tycho-version}</version>
				<configuration>
					<javadocOptions>
						<additionalArguments>
							<additionalArgument>-tag generated:X:""</additionalArgument>
						</additionalArguments>
					</javadocOptions>
				</configuration>
				<executions>
					<execution>
						<id>javadoc</id>
						<phase>generate-resources</phase>
						<goals>
							<goal>javadoc</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
=========================

leads

-sourcepath '....'
-classpath '....'
at.bestsolution.framework.grid
at.bestsolution.framework.grid.func
at.bestsolution.framework.grid.model.grid
at.bestsolution.framework.grid.model.grid.impl
at.bestsolution.framework.grid.model.grid.util
-tag generated:X:""


which is obvisouly wrong because it should be

-sourcepath '....'
-classpath '....'
-tag generated:X:""
at.bestsolution.framework.grid
at.bestsolution.framework.grid.func
at.bestsolution.framework.grid.model.grid
at.bestsolution.framework.grid.model.grid.impl
at.bestsolution.framework.grid.model.grid.util
Comment 1 Thomas Schindl CLA 2014-11-13 07:53:51 EST
pushed s possible fix https://git.eclipse.org/r/36397