-
Getting below Error building project locally JDK Version - OpenJDK Runtime Environment Temurin-24.0.2+12 (build 24.0.2+12) [ERROR] Failed to execute goal on project trino-server: Could not resolve dependencies for project io.trino:trino-server:provisio:477-SNAPSHOT |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
Why this is closed without resolution |
Beta Was this translation helpful? Give feedback.
-
Build system works fine (we execute it hundreds of times a day). If it doesn't work for you - it's an issue with your local environment (wrong ~/.m2/settings.xml or not using ./mvnw wrapper). |
Beta Was this translation helpful? Give feedback.
-
I'm facing a similar issue. It looks like artifacts are not published in a maven central repository. ![]() |
Beta Was this translation helpful? Give feedback.
-
@Alexxz these artifacts are no longer published (deliberately). What's your use case? This is also different story then building project locally from the command line. Please do not mix two different issues on the single thread. |
Beta Was this translation helpful? Give feedback.
@wendigo Thank you! Now I got it.
First of all I had to run
install
on whole project to get packages installed on my systemAnd later on I can use
./mvnw test -pl :trino-vertica
to test my plugin.Thanks for your assistance and patience!