Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Tycho pomDependencies=consider and transitive dependencies

Most likely version 3.8.100 is the best available match to whatever
dependency is specified in your project bundle manifest.

I vaguely remember Tycho did not respect dependency <exclusions> when
evaluating pomDependencies=consider.

--
Regards,
Igor

On 2014-07-30, 12:56, Christian Dietrich wrote:
Hi,

why does tycho when used with  pomDependencies=consider

prefer transitive pom dependendencies over artefacts in the target platform?

e.g. i can find the following in the log

[DEBUG] P2resolver.addMavenArtifact org.eclipse.jdt:debug:jar:3.8.100:compile
[DEBUG] P2Resolver: artifact org.eclipse.jdt:debug:3.8.100 at location C:\.maven-rep2\org\eclipse\jdt\debug\3.8.100\debug-3.8.100.jar resolves installable unit org.eclipse.jdt.debug/3.8.100.v20140522-1618

it does not seem to help to set the following exclusion

		</dependency>
		<dependency>
			<groupId>${project.groupId}</groupId>
			<artifactId>artefact with trans. dep. to jdt.debug</artifactId>
			<version>${project.version}</version>
			    <exclusions>
         <exclusion>
             <groupId>*</groupId>
             <artifactId>*</artifactId>
         </exclusion>
     </exclusions>

I Am Using maven 3.0.4
and tycho 0.21.0

Thanks
Christian
_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/tycho-user



Back to the top