tycho icon indicating copy to clipboard operation
tycho copied to clipboard

Tycho project repository (tycho)

Results 295 tycho issues
Sort by recently updated
recently updated
newest added

Now we have https://github.com/eclipse/tycho/pull/468 we can extend the `-fae` option of maven even more. If `-fae` is given, we should simply not fail the resolution and just go on...

P2ResolverImpl contains a loop to resolve for different TargetEnvironment in ``` org.eclipse.tycho.p2.resolver.P2ResolverImpl.resolveTargetDependencies(TargetPlatform, ReactorProject) for (TargetEnvironment environment : environments) { if (isMatchingEnv(metadata, environment, logger::debug)) { results.put(environment, resolveDependencies(Collections. emptySet(), project, new ProjectorResolutionStrategy(logger),...

performance

Currently the tycho-p2-repository-plugin:assemble-repository assemble each environment (win/linux/mac...) after each other. We should provide a way to parallelize this as this is a lengthy operation. One problem might be that currently...

performance

Resolving a large target definition is currently a big part of the overall build time. We should improve that by: 1. resolve environments in parallel 2. resolve individual target locations...

performance

Wikitext is published to Maven Central using project GPG key as shown [here](https://ci.eclipse.org/docs/job/mylyn-wikitext-release). Tycho should do the same so artifacts are signed with the project key instead of developer key...

Currently a `mvn compile` fails (see integration test ResolverTests.testMixedReactor()) as the artifact is not their of course and one needs to execute `mvn package` to make this work. We should...

Maven 3.8.x will no longer receive any updates and we should therefore move on to maven 3.9.x

Currently requires more work to allow real resolution of P2 Updatesited See https://github.com/eclipse/tycho/issues/1140 See https://github.com/eclipse/tycho/issues/590

Maven has the concept of embedding the pom in `META-INF/maven/groupId/artifactId/pom.(xml/properties)` this has the advantage, that one is able to recover the POM information from the archive without the need to...

Currently `dependency:tree` only list a almost flat tree as all transitive dependencies are currently added by Tycho. Instead, only direct dependencies should be added as well as proper model must...