Created
May 7, 2019 12:06
-
-
Save Efimero/7cf3a4adc08aef08a2c92b6a80bf861a to your computer and use it in GitHub Desktop.
lein problems
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defproject test-3d "0.1.0-SNAPSHOT" | |
| :description "FIXME: write description" | |
| :url "http://example.com/FIXME" | |
| :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0" | |
| :url "https://www.eclipse.org/legal/epl-2.0/"} | |
| :dependencies [[org.clojure/clojure "1.10.0"] | |
| [org.lwjgl/lwjgl "3.2.2"] | |
| [org.lwjgl/lwjgl "3.2.2" :classifier "natives-linux"] | |
| [org.lwjgl/lwjgl-opengl "3.2.2"] | |
| [org.lwjgl/lwjgl-opengl "3.2.2" :classifier "natives-linux"] | |
| [org.lwjgl/lwjgl-glfw "3.2.2"] | |
| [org.lwjgl/lwjgl-glfw "3.2.2" :classifier "natives-linux"]] | |
| :main ^:skip-aot test-3d.core | |
| :target-path "target/%s" | |
| :profiles {:uberjar {:aot :all}}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| test-3d.core=> (import org.lwjgl) | |
| Execution error (ClassNotFoundException) at java.net.URLClassLoader/findClass (URLClassLoader.java:471). | |
| org.lwjgl | |
| test-3d.core=> (import org.lwjgl lwjgl) | |
| Execution error (ClassNotFoundException) at java.net.URLClassLoader/findClass (URLClassLoader.java:471). | |
| org.lwjgl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment