Import error missing but reported by Eclipse

Asked

Viewed 106 times

1

An application I am making creates a browser and provides the functionality by the web page that this browser displays.

The page makes use of AngularJS to work, and has absolutely no problem with the project, it works normally.

The problem is that Eclipse returns missing errors in the project.

The Javascript Imports excerpt is this one:

<script type="text/javascript" src="js/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript" src="js/angular-route.min.js"></script>
<script type="text/javascript" src="js/app/app.js"></script> <!-- Erro acusado aqui -->
<script type="text/javascript" src="js/app/app.services.js"></script> <!-- Erro acusado aqui -->
<script type="text/javascript" src="js/app/app.directives.js"></script> <!-- Erro acusado aqui -->
<script type="text/javascript" src="js/app/app.controllers.js"></script> <!-- Erro acusado aqui -->
<script type="text/javascript" src="js/hopscotch.min.js"></script>
<script type="text/javascript" src="js/jqGrid/jquery.jqGrid.min.js"></script> <!-- Erro acusado aqui -->

I can solve this problem by moving and moving the files back to their normal position. But how to fix it once and for all?

EDIT

I tried to change the Javascript build path of the project, but without success.

1 answer

0


I managed to solve the problem.

The validation of Eclipse could not recognize the files, IE, it was enough to change the project settings to ignore the "errors".

Problema resolvido

Browser other questions tagged

You are not signed in. Login or sign up in order to post.