Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. <dependency>
  2. <groupId>jimObjModelImporterJFX</groupId>
  3. <artifactId>jimObjModelImporterJFX</artifactId>
  4. <scope>system</scope>
  5. <version>1.0</version>
  6. <systemPath>${path}</systemPath>
  7. </dependency>
  8.  
  9. <plugin>
  10. <groupId>org.apache.maven.plugins</groupId>
  11. <artifactId>maven-assembly-plugin</artifactId>
  12. <version>2.4</version>
  13. <configuration>
  14. <descriptorRefs>
  15. <descriptorRef>jar-with-dependencies</descriptorRef>
  16. </descriptorRefs>
  17. <archive>
  18. <manifest>
  19. <mainClass>myMainClass</mainClass>
  20. </manifest>
  21. </archive>
  22. </configuration>
  23. <executions>
  24. <execution>
  25. <id>make-assembly</id>
  26. <phase>package</phase>
  27. <goals>
  28. <goal>single</goal>
  29. </goals>
  30. </execution>
  31. </executions>
  32. </plugin>
  33.  
  34. Caused by: java.lang.ClassNotFoundException: com.interactivemesh.jfx.importer.ImportException
  35. at java.net.URLClassLoader.findClass(Unknown Source)
  36. at java.lang.ClassLoader.loadClass(Unknown Source)
  37. at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
  38. at java.lang.ClassLoader.loadClass(Unknown Source)
  39. ... 22 more
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement