2025-08-22 14:32:07 -04:00
|
|
|
### define 2 modules that setup in vscode with natural default configuration
|
|
|
|
|
from modules
|
|
|
|
|
### Run and Debug Java
|
|
|
|
|
|
|
|
|
|
cd to: out
|
|
|
|
|
|
|
|
|
|
: java [mainClass] [jar]
|
|
|
|
|
|
2025-08-27 22:05:24 +00:00
|
|
|
java TestReservations ./*.jar
|
2025-08-22 14:32:07 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
### create jar archive:
|
|
|
|
|
|
|
|
|
|
cd to: out
|
|
|
|
|
|
2025-08-27 22:05:24 +00:00
|
|
|
jar --create --verbose --file *.jar --manifest ..\META-INF\MANIFEST.MF *
|
2025-08-22 14:32:07 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
### compile - build:
|
|
|
|
|
|
2025-08-27 22:05:24 +00:00
|
|
|
1. cd: src/lodge.reservationsystem
|
2025-08-22 14:32:07 -04:00
|
|
|
|
|
|
|
|
2. javac -g -d ../../out *
|