File tree 3 files changed +21
-13
lines changed
3 files changed +21
-13
lines changed Original file line number Diff line number Diff line change 25
25
Installation
26
26
------------
27
27
28
- To install just add the plugin to the plugins block of ` build.gradle ` . For Grails 4.x & higher
28
+ ** Under ` repositories ` section**
29
+
30
+ ``` groovy
31
+ maven { url "https://wizpanda.jfrog.io/artifactory/default-maven-local" }
32
+ ```
33
+
34
+ ** Under ` dependencies ` section**
29
35
30
36
``` groovy
31
37
compile "com.wizpanda.plugins:asynchronous-mail:3.0.0"
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ buildscript {
6
6
dependencies {
7
7
classpath " org.grails:grails-gradle-plugin:$grailsVersion "
8
8
classpath " com.bertramlabs.plugins:asset-pipeline-gradle:2.14.2"
9
+ classpath(group : ' org.jfrog.buildinfo' , name : ' build-info-extractor-gradle' , version : ' 4.+' )
9
10
}
10
11
}
11
12
@@ -14,9 +15,10 @@ group "com.wizpanda.plugins"
14
15
15
16
apply plugin : " idea"
16
17
apply plugin : " org.grails.grails-plugin"
17
- apply plugin : " org.grails.grails-plugin-publish"
18
18
apply plugin : " org.grails.grails-gsp"
19
19
apply plugin : " asset-pipeline"
20
+ apply plugin : ' maven-publish'
21
+ apply plugin : ' com.jfrog.artifactory'
20
22
21
23
repositories {
22
24
mavenLocal()
@@ -105,14 +107,5 @@ bootJar.enabled = false
105
107
]
106
108
}*/
107
109
108
- grailsPublish {
109
- githubSlug = " wizpanda/asynchronous-mail"
110
- userOrg = " wizpanda"
111
- repo = " grails-plugins"
112
- license {
113
- name = " Apache-2.0"
114
- }
115
- title = " Grails Asynchronous Mail plugin"
116
- desc = " The plugin realises asynchronous mail sending. It stores messages in a DB and sends them asynchronously by a quartz job."
117
- developers = [sagrawal31 : " Shashank Agrawal" ]
118
- }
110
+ apply from : " https://raw.githubusercontent.com/wizpanda/gradle-common/main/grails-plugin-jfrog-publish.gradle"
111
+ apply from : " https://raw.githubusercontent.com/wizpanda/gradle-common/main/bump-version.gradle"
Original file line number Diff line number Diff line change @@ -3,3 +3,12 @@ gormVersion=6.1.8.RELEASE
3
3
org.gradle.daemon =true
4
4
org.gradle.parallel =true
5
5
org.gradle.jvmargs =-Dfile.encoding=UTF-8 -Xmx1024M
6
+
7
+ # Keep empty username & passwords to make normal build pass
8
+ wpArtifactoryUsername =
9
+ wpArtifactoryPassword =
10
+
11
+ pomName =Grails Asynchronous Mail plugin
12
+ pomDescription =The plugin realises asynchronous mail sending. It stores messages in a DB and sends them asynchronously by a quartz job.
13
+ pomURL =https://github.com/wizpanda/asynchronous-mail
14
+ pomGitHubSlug =wizpanda/asynchronous-mail
You can’t perform that action at this time.
0 commit comments