views:

27

answers:

1

I'm having some trouble on a checked out project here at work.

I have a class called GridBuilder, which is located in a package called com.ent.proj.utils.grid

package com.ent.proj.utils.grid

import grails.orm.HibernateCriteriaBuilder
import org.hibernate.criterion.Criterion
import org.hibernate.Criteria


class GridBuilder {
}

The word grid in the package declaration is marked in red, and reads Cannot solve symbol grid

This is the directory structure:

grailsapp--
           utils---
                  com---
                      ent---
                           proj---
                                 utils---
                                       grid---
                                          GridBuilder.groovy

I'm using IntelliJ Idea 9 as an IDE. I see this file in the project view, but not in the Grails view.

Any thoughts?

Thanks in advance

update

Ran $grails run-app from command line, and the app. started OK. Maybe its an IntelliJIdea issue ?

+1  A: 

did you declare grails-app/utils as a source folder in 'Project structure|Modules'?

Stefan