Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialDerek Derek
8,744 Pointsmaven2 error
While creating new Gradle project in Intellij Idea 15.0.2,
I get the following error :
"unidexed remote maven repositories found. The following repositories used in your gradle projects were not indexed yet: http://repo1.maven.org/maven2."
When I searched for this problem, I came across some posts stating that it was a known issues which was to be fixed in the previous versions (14. something) but apparently it isn't fixed, or it is not a bug. Some also advised to uncheck "use maven3 to import project" in File -> Settings -> maven -> importing, but can't find that option either.
I tried to ignore this, but I cannot progress further since gradle does not recognize spring application.
How can I fix this error? Thank you.
Chris Ramacciotti
Treehouse Guest TeacherHi Derek! When you say that you're unable to progress, what roadblocks are you encountering? Have you added Spring dependencies to build.gradle and clicked the refresh icon in the Gradle tool window in IntelliJ? It might be the case that dependencies will still download and be added to the classpath, but that you just won't get autocompletion on dependency names in IntelliJ. If this is the case, you should be able to progress. But, this may not be the case.
Derek Derek
8,744 PointsChris Ramacciotti , I have refreshed gradle just like you did in the video. However, there are red squiggly underlines on AppConfig.java and on dependencies under giflib in Gradle projects tab on the right side.
Also, in my AppConfig.java file, my import statement for SpringApplication does not seem to work. The word SpringApplicaiton appears in red every time I write the word. I do have "import org.springframework.boot.SpringApplication;" on top of the file.
Moreover, when I do run 'giflib [bootRun]', I get the error below:
FAILURE: Build failed with an exception.
-
What went wrong: Could not resolve all dependencies for configuration ':compile'.
Could not find org.springframework.boot:spring-book-starter-web:1.2.6.RELEASE. Searched in the following locations: https://repo1.maven.org/maven2/org/springframework/boot/spring-book-starter-web/1.2.6.RELEASE/spring-book-starter-web-1.2.6.RELEASE.pom https://repo1.maven.org/maven2/org/springframework/boot/spring-book-starter-web/1.2.6.RELEASE/spring-book-starter-web-1.2.6.RELEASE.jar Required by: com.hyunjaecho:giflib:1.0-SNAPSHOT
Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. :compileJava
BUILD FAILED
Total time: 1.79 secs Could not find org.springframework.boot:spring-book-starter-web:1.2.6.RELEASE. Searched in the following locations: https://repo1.maven.org/maven2/org/springframework/boot/spring-book-starter-web/1.2.6.RELEASE/spring-book-starter-web-1.2.6.RELEASE.pom https://repo1.maven.org/maven2/org/springframework/boot/spring-book-starter-web/1.2.6.RELEASE/spring-book-starter-web-1.2.6.RELEASE.jar Required by: com.hyunjaecho:giflib:1.0-SNAPSHOT 1:54:02 PM: External task execution finished 'bootRun'.
I hope you can understand the error I am encountering. I hope to learn spring ASAP but this is hindering my experience.. Please help me!
Chitra Sharathchandra
6,188 PointsI just figured this out after researching on the web. You need to either:
- Click on the repositories link in the error OR
- Click on Intellij -> Preferences -> Build,Execution.. -> Build Tools -> Maven -> Repositories
Select the maven repository URL (repo1...) and click on Update on the upper right corner
This worked for me
Derek Derek
8,744 PointsDerek Derek
8,744 PointsChris Ramacciotti