File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,16 +38,10 @@ def checkMavenVersion():
3838 match = re .search (MAVEN_VERSION_REGEX , result_out )
3939
4040 if match == None :
41- print ("\n Version could not be retrieved with mvn -v command" )
42-
43- # might happen depending on installation path... instead of crashing immediately,
44- # we try to build, as it might be the correct version... if not, it will fail anyway
45- # TODO ideally, should rather use "mvn -v" to determine the version number...
46- # although it would be bit tricky to implement (so not super important)
41+ print ("\n Version could not be retrieved with mvn -v command as well" )
42+ # might happen depending on installation path... instead of crashing immediately,
4743 return True
4844
49- # exit(1)
50-
5145 mvn_txt = match .group ()
5246 mvn_version = mvn_txt .split ("." )
5347
You can’t perform that action at this time.
0 commit comments