Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] tycho-surefire-plugin dependencies ignored?

Using 0.14.1, I am trying to include a fragment need to logging setup.

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-surefire-plugin</artifactId>
	<version>${tycho-version}</version>
<configuration>
							<dependencies>
								<dependency>
									<type>eclipse-plugin</type>
									<artifactId>logging.fragment</artifactId>
									<groupId>ignored-by-p2-resolver</groupId>
									<version>2.0.1.qualifier</version>
								</dependency>
							</dependencies>


Back to the top