Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] please test staged tycho 0.14.0

Hi,

When I upgraded, Tycho wasn't able to resolve a dependency from an
eclipse-test-plugin package to org.junit 0.0.0, even though Eclipse
Orbit was available as a repository, and it contains several versions
of JUnit.  After messing around for a while, it turns out that I
needed to enable Maven updates by saying:

	<pluginRepositories>
		...
		<pluginRepository>
			<releases>
				<updatePolicy>always</updatePolicy>
			</releases>
			<id>central</id>
			<name>Maven Plugin Repository</name>
			<url>http://repo1.maven.org/maven2</url>
		</pluginRepository>
	</pluginRepositories>

After allowing Maven to update itself, Tycho was able to clean and
install the project.  I wonder if this has anything to do with the
other dependency issues people are having...

-Thomas


Back to the top