me hungry!
  • migrate to herdin.github.io
  • DEV TOOLS
    • IDE
      • VSCode
        • spring-boot maven config
  • Spring
    • default
      • IoC
      • resource
      • validation
      • data bind
      • SpringEL
      • DispatcherServlet
    • debug
      • mariadb connection time out - connection pool
  • Database
    • MariaDB
      • command history
  • LINUX
    • CentOS
      • install java
      • install, setting maven
      • install, setting vault
      • upgrade docker to docker-ce
  • WINDOW
    • Road to window docker
  • Arduino
    • default
    • SENSORS
      • dust sensor
        • GP2Y1010AU0F
      • humidity&temperature
        • DHT11
      • lcd
        • SKU DFR0009 - shield
    • debug
Powered by GitBook
On this page

Was this helpful?

  1. LINUX
  2. CentOS

install, setting maven

debian GNU Linux

#install java first

#download maven
wget http://mirror.navercorp.com/apache/maven/maven-3/3.6.0/binaries/apache-maven-3.6.0-bin.tar.gz
#uncompress maven
tar -xvzf apache-maven-3.6.0-bin.tar.gz
#move maven to appopriate directory
mkdir /tools
mv ./apache-maven-3.6.0 /tools
#make symbolic link
ln -s /tools/apache-maven-3.6.0 /tools/maven
#set path
vim ~/.bashrc
+add+
export MAVEN_HOME=/tools/maven
export PATH=${MAVEN_HOME}/bin:${PATH}
+add+
source .bashrc
#check installed maven
mvn -version
Previousinstall javaNextinstall, setting vault

Last updated 6 years ago

Was this helpful?