Skip to content

Tag: command-line

Compiling a java project from linux command line

I am having trouble understanding how to actually use the command line to run a big java project ( by big I mean with multiple files and folder). Imagine I have a project containing : All my life people have done the makefile for me. I just code the java src with vim and compile and run with make. Now

Gradle build – add module path

My question: How do I set a module path for gradle build? I’ve become comfortable working with Java modules from the command line. I do a frequent exercise in Powershell which results in these source files. appMod/module-info appMod/appPack.Entry greetMod/module-info greetMod/greetPack.Hello Since the a…

How to run TestNG from command line

How exactly do I run a .java TestNG project from a command line? I have read through the TestNG documentation, and tried the following to no avail: … with the following testng.xml file in my project: The error I get is this: Obviously, I am not referencing TestNG correctly in my command line. Does anyon…