Including Grails Plugin Source in Grails 1.3.5 Project

I want to use the instant version of the grails quartz plugin. The problem is that I want to be able to specify the dependency or include the source of the plugin in my project so that my colleagues and our build server do not download the zip file itself.

+3
source share
1 answer

I managed to solve this problem by connecting to the plugin repository via svn: external, and then adding the following to my BuildConfig.groovy.

grails.plugin.location."quartz" = "path/to/svn/external"
+2
source

Source: https://habr.com/ru/post/1779252/


All Articles