Dean Schulze

- Total activity 68
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 24
-
Created Intellij not recognizing when new dependencies are added to build.gradle.kts
AnsweredI've checked out a Kotlin project from VCS. I've added the kotlintest dependencies to the build.gradle.kts file, but Intellij does not recognize the new dependencies. I've executed the reload fro... -
Created How to set LD_LIBRARY_PATH to debug a cgo program
AnsweredTo run the binary from the command line I set this export LD_LIBRARY_PATH=/home/dean/src/liqid.slurm.integration/liqid.conf.file.parser/c/cmake-build-debug When running the debugger I've tried sett... -
Created How can I clean up the compiler-file*.d files from the compilation database?
AnsweredI created a compilation database for a large C project. So far it's been working well, but my directories are filling up with compiler-file*.d files. Is there a way to clean them up? -
Created CLion can't find .h files in /usr/include/mysql
AnsweredI've created a new CMake project from legacy code. The code compiles with make from the command line. CLion can't compile because it can't find mysql.h, which is in /usr/include/myql. I've added... -
Created How do I get javadoc for JDK 11 and Spring Boot 2 to display in Intellij?
AnsweredCtrl+q doesn't show the javadoc for either JDK or for Spring Boot. I have turned on automatic down through maven (Settings -> Build, Execution, Deployment ->Build Tools -> Maven -> Importing) but ... -
Created Intellij can't import Spring Boot project
AnsweredI checked out a SpringBoot project. It builds and runs from the command line with maven. When I import it into IntelliJ as a maven project it complains that it can't find the SpringBoot classes. ... -
Created Arrow keys on number pad not working on Ubuntu 18.04
AnsweredI just recently started using Ubuntu 18.04.2 with the gnome 3 desktop after using Ubuntu 16.04 with Unity for 2 years. The arrow keys on the number pad don't work for IntelliJ. They were working o... -
Created Intellij golang build can't find dependencies in the same directory
When I do a build on the file with the main method Intellij can't find a file in the same package and same directory that contains a struct definition. The editor can find the struct definition be... -
Created How can I compare my local file to the latest version in the git remote repository?
AnsweredThe latest version of a file in the remote repository creates a huge merge conflict. I rolled back my local copy from the command line with git merge --abort. Does IntelliJ have a way of comparing... -
Created How do I get IntelliJ to generate a new method ?
AnsweredIn Eclipse I can type something like the following where the method does not exist in the class ShipmentDataReader.getShipmentByShipmentId(shipmentId); and Eclipse gives me the option to create t...