Linked Questions
12 questions linked to/from Why does IntelliJ give me "Package doesn't exist" error?
0 votes
0 answers
761 views
java package <package> does not exist [duplicate]
I'm using PDFBox for a little project but I'm getting a package does not exist error when compiling. As for the IDE, I followed the instructions to add modules and was able to import them. I would ...
188 votes
38 answers
348k views
Getting "cannot find Symbol" in Java project in IntelliJ
I make this call to a static singleton instance from the class GameManager.java. HUD.getInstance().update(timeDelta); HUD.java contains the HUD class as well as two other related classes, ...
29 votes
12 answers
131k views
Maven, package does not exist
I have a module whose pom file is: <groupId>com.mycompany.Common</groupId> <artifactId>common</artifactId> <packaging>pom</packaging> <version>1.0-SNAPSHOT<...
3 votes
2 answers
14k views
Idea Intellij: Can't import the libraries: package does not exist
I'm trying to make use of a jReddit library, which, in turn requires apache HttpComponents and Commons IO libraries. I downloaded the sources, added them in Itellij Idea through File - Project ...
0 votes
4 answers
7k views
IntelliJ IDEA "Cannot resolve method" on aspect-defined method
I am using spring-data-neo4j 3.4.2, which is (optionally) using AspectJ. My IDE is IntelliJ IDEA 16 (EAP, IU-144.3891.8). I have had the same problem using latest IntelliJ IDEA 15. Everything works ...
1 vote
2 answers
2k views
Intellij maven indices folder size is huge
I found that folder .IdeaIC2016.3\system\Maven\Indices\ have 60GB of data, can I clean it up? I already run https://www.jetbrains.com/help/idea/2016.2/cleaning-system-cache.html but it doesn't help
1 vote
1 answer
1k views
Intellij Maven Dependency is not able to imported
I'm trying to import dependency with maven to Intellij. And I edited pom.xml like this: <dependencies> <dependency> <groupId>net.dv8tion</groupId> <...
1 vote
3 answers
750 views
JetBrains IntelliJ IDEA Remove Manifold Plugin
I installed the Manifold plugin for IntelliJ IDEA, but then we decided we don't need it. I'm using a Mac. How the heck do I remove it? It gives me a bunch of errors like java: package manifold....
3 votes
0 answers
1k views
JavaDoc error: reference not found * @throws MessagingException Check the method prepareMail()
Good morning Community. I am facing an error generating a JavaDoc for my project. I tried to look it up but it didn't give me any solution for it so far. Hopefully one of you can help me on that. C:\...
1 vote
0 answers
604 views
IntelliJ can't find Maven dependency even though it exists
I'm using IntelliJ and I'm trying to build a Java project using Maven. However, IntelliJ keeps giving me an error that it can't find one of my dependencies, io.jsonwebtoken, even though I know for a ...
1 vote
1 answer
500 views
Maven package com.sladkkov.common.dto does not exist
I have a common module that I load into my other 3 modules. When I run the project, everything works, but when I try to make Install, I get the error: com.example.common.dto does not exist I connect ...
1 vote
0 answers
181 views
Using Spring Initializr in IntelliJ - other imports from say org.apache.zookeeper not working
I used a spring initializr project for creating a REST service (https://spring.io/guides/gs/intellij-idea/) and imported it in IntelliJ using Maven project. That works fine. Unit tests run fine too. ...