Some useful commands related to Maven that are often needed. Skipping all the test mvn compile -DskipTests Running particular tests mvn compile -Dtest=[Test class names separated by comma] Executing a Java program mvn exec:java -Dexec.mainClass=fully.qualified.class.name
Useful Commands
Useful Linux Commands
This post is a live post and shall contain some useful commands that come in handy in daily work. Rather than keeping it on Google drive, post is more useful. Getting top 10 files using most disk space $ du -a /usr/local | sort -n -r | head -n 10 This command returns top 10 […]