Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[ice-dev] ICE SWTBot Tests Dependencies

For future reference, since figuring this out took us a while, if you are writing an SWTBot test for ICE and open a full Eclipse instance to test, your test bundle's pom.xml file needs to have 


					<dependencies>
						<dependency>
							<type>p2-installable-unit</type>
							<artifactId>org.eclipse.sdk.feature.group</artifactId>
						</dependency>
					</dependencies>​


inside the Tycho plugin configuration node. 


Back to the top