-
Hi, (Sorry if I am not using the right names, I just discovered some of the concepts a few minutes ago.) I was investigating a problem where our project was building fine on our CI platform, but we had strange compilation errors on our developer boxes. I say strange because the compiler was complaining that some types could not be resolved, while they were there in dependencies. I was suspecting some cache issue around target platform resolution, because of the fact it was working fine on CI, and we have the same version of JDK/Maven on CI and local. I tried removing I ended up incrementing the I found in this post that:
So here is my question: where is the p2 profile used by Tycho cached? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I'm not aware of any profile usage of Tycho, as you said, all data is stored inside |
Beta Was this translation helpful? Give feedback.
I'm not aware of any profile usage of Tycho, as you said, all data is stored inside
~.m2/repository
and/ortarget
directories. Have you usedclean
goal? Also ejc has a problem with parallel execution so probably using-T1
can help as well.