annotationsatharvard / catcha

Catch-A - Catching Annotation: An annotation backend and API.
http://catcha.readthedocs.io
20 stars 9 forks source link

path to submodules wrong? #78

Closed nicolasfranck closed 8 years ago

nicolasfranck commented 8 years ago

in this file

grails-app/conf/BuildConfig.groovy

the paths to the submodules is:

grails.plugin.location.'af-shared' = '../annotationframework/AfShared'
grails.plugin.location.'af-security' = '../annotationframework/AfSecurity'
grails.plugin.location.'af-persistence' = '../annotationframework/AfPersistence'

that causes the compilation to fail. Removing the "../" solves this

jmiranda commented 8 years ago

Thank you. I may have inadvertently changed the developer instructions to have you clone the annotationframework plugins within the catcha root directory. However, I would actually recommend moving the annotationframework directory to be at the same level as the catcha source directory.

So for example, my development environment looks like this:

/home/jmiranda/git/catcha
/home/jmiranda/git/annotationframework/AfShared
/home/jmiranda/git/annotationframework/AfSecurity
/home/jmiranda/git/annotationframework/AfPersistence

Sorry for the confusion. I will fix the documentation accordingly.