We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb8c013 commit c1b8820Copy full SHA for c1b8820
tools/dep/ubuntu_init.sh
@@ -63,6 +63,15 @@ if [ "Y$OPT_JAVA" == "Yyes" ];then
63
tar xf jdt-language-server-0.35.0-201903142358.tar.gz && rm jdt-language-server*.tar.gz
64
fi
65
cd $OLD_DIR
66
+ if which mwn >/dev/null;then
67
+ # install maven
68
+ cd /opt && \
69
+ wget http://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/3.6.1/binaries/apache-maven-3.6.1-bin.tar.gz && \
70
+ tar xf apache-maven-3.6.1-bin.tar.gz && \
71
+ export PATH=/opt/apache-maven-3.6.1/bin:$PATH && \
72
+ echo "export PATH=\"/opt/apache-maven-3.6.1:$PATH\"" >> "$HOME/.cus_zshrc"
73
+ cd $OLD_DIR
74
+ fi
75
76
77
# install ripgrep
0 commit comments