# JAVAAA
This repository is a minimal plain-Java (javac) scaffold created to demonstrate how to build
and run a project without Maven or Gradle.
Build and run:
```bash
# compile
bash build.sh
# run
bash run.sh
# run with arguments
bash run.sh hello worldFiles added by the scaffold:
src/com/example/App.java— samplemainprogrambuild.sh— compiles.javafiles into theout/directoryrun.sh— runs the sampleAppclass.gitignore— ignoresout/pom.xml— optional Maven POM that uses the existingsrc/layout
See the scripts for details.
Optional: build with Maven
# compile with maven
mvn -B package
# run the produced classes (or use `bash run.sh`)
java -cp target/classes com.example.App# JAVAAA