Daily Archives: October 26, 2016

Linux:CentOS install gradle

Ensure that this packages are installed: yum install bzip2 yum install unzip yum install wget Use this shell to install gradle. Copy this content in a file /tmp/gradle.sh cat > /tmp/gradle.sh #!/bin/bash # installs to /opt/gradle #... Read More | Share it now!

Fatal error compiling: invalid target release: 1.7

Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.2:compile (default-compile) on project api: Fatal error compiling: invalid target release: 1.7 -> 根据错误提示invalid target release:... Read More | Share it now!

Downloading Apache Maven 3.3.9

https://maven.apache.org/download.cgi wget http://mirror.cogentco.com/pub/apache/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz tar xzvf apache-maven-3.3.9-bin.tar.gz mvn clean install // Skip all unittests -DskipTests ... Read More | Share it now!