0

I'm using Grails to build an application, I have a problem... I've installed the lesscss to manage the css, but each time I try to test my application with test-app command, it uninstalls the plugin. Why is that happening?

grails> test-app :integration
| Uninstalled plugin [lesscss]
| Compiling 40 source files

I'm very confused...

rascio
  • 8,968
  • 19
  • 68
  • 108

1 Answers1

1

The plugin dependency is probably not included anymore in either BuildConfig.groovy or application.properties.

Ruben
  • 9,056
  • 6
  • 34
  • 44
  • mmmm it sounds strange because I've also others plugin installed in my application, but also them aren't in the BuildConfig.groovy and application.properties... – rascio Apr 06 '12 at 10:15
  • Plugin dependencies should be declared in one of these two files. How did you install the plugins? – Ruben Apr 06 '12 at 12:28
  • Then the plugin should have been added to the application.properties file. – Ruben Apr 07 '12 at 07:09