Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Failing to build a master archive for an Eclipse plugin

> Basically, when doing a
>    mvn package
> in a dirctory called
>    justify.repo

This will neither work in a Maven project nor a Tycho project, because justify.repo will not know anything about the other modules.

You either need to build all modules at once (by starting the build in your aggregator project [1]), or first build all other modules with mvn clean install.

Regards
Tobias



[1] http://maven.apache.org/pom.html#Aggregation


Back to the top