I have a Java project without compilation. The entry point is the main method in maui.main.MauiModelBuilder , which passes some parameters on the command line.
The code author offers this suggestion for compiling it:
java -cp "lib/*:src" maui.main.MauiModelBuilder -l data/automatic_tagging/train/ -m test -v none
What is the meaning of "lib/*:src" in this case? I have never seen such a syntax.
source share