Hello, Setting up a dev enviornment, I get `Detect...
# troubleshooting
s
Hello, Setting up a dev enviornment, I get
Detected Maven Version: 3.9.8 is not in the allowed range [3.8.6,3.8.6].
Running
mvn clean install
on any project fails in this way and i must
-Denforcer.skip=true
Does anyone know the risk involved with the constraint? or the risk involved with skipping the enforcer?
d
v3.8.6
is the current version Flink uses for builds/releases/CI etc. Other versions might work, but they are not tested. Can you not use
v3.8.6
? I am a big fan of https://sdkman.io/. You can use it like this
Copy code
sdk install maven 3.8.6
sdk use maven 3.8.6
βž• 1
s
lol I'm slowiy spinning back up on java dev. I forgot about sdkman. TY
πŸ‘ 1