1.

How Can You Install A Pluguin In Your Grails Application?

Answer»

you have to write your pluguin inside the pluguins Block/closure {} in the BuildConfig.groovy FILE and you have to specify if your pluguin works at RUN TIME or compilation time.

Example:

plugins {
BUILD ":tomcat:7.0.55"
compile ":scaffolding:2.1.2"
runtime ":jquery:1.11.1"
}

you have to write your pluguin inside the pluguins Block/closure {} in the BuildConfig.groovy file and you have to specify if your pluguin works at run time or compilation time.

Example:

plugins {
build ":tomcat:7.0.55"
compile ":scaffolding:2.1.2"
runtime ":jquery:1.11.1"
}



Discussion

No Comment Found