I see in the video he has the file in a folder named 'lib' so I put it there.
I added this to my pom.xml file:
In the Maven panel on the right it's listed as a dependency.
But when I use the class ObjModelImporter in my code it says "Cannot resolve symbol 'ObjModelImporter'".
He doesn't have any import statement for it.
I found
these instructions.
I tried step 1 by typing this command in the terminal:
mvn install:install-file -Dfile="D:\My Documents\Programming\Java\LoadBuilder\lib\jimObjModelImporterJ
FX.jar" -DgroupId=com.interactivemesh -DartifactId=jimObjModelImporterJFX -Dversion=1.0 -Dpackaging=jar
but I got a build error:
[ERROR] Unknown lifecycle phase ".interactivemesh". You must specify a valid lifecycle phase or a goal in the format <plugin-prefix>:<goal> or <plugin-
group-id>:<plugin-artifact-id>[:<plugin-version>]:<goal>. Available lifecycle phases are: pre-clean, clean, post-clean, validate, initialize, generate-
sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-r
esources, process-test-resources, test-compile, process-test-classes,
test, prepare-package, package, pre-integration-test, integration-test, post-inte
gration-test, verify, install, deploy, pre-site, site, post-site, site-deploy. ->
Not sure what to do.