Skip to content

Commit 54fefc6

Browse files
committed
fix: adapt to new GitHub organisation
1 parent 1c0bccb commit 54fefc6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Grails Mail Plugin
22

33
[![Maven Central](https://img.shields.io/maven-central/v/org.grails.plugins/mail.svg?label=Maven%20Central)](https://central.sonatype.com/artifact/org.grails.plugins/mail)
4-
[![Java CI](https://github.com/grails/grails-mail/actions/workflows/gradle.yml/badge.svg?event=push)](https://github.com/grails/grails-mail/actions/workflows/gradle.yml)
4+
[![Java CI](https://github.com/grails-plugins/grails-mail/actions/workflows/gradle.yml/badge.svg?event=push)](https://github.com/grails-plugins/grails-mail/actions/workflows/gradle.yml)
55

66
## About
77

@@ -21,7 +21,7 @@ mailService.sendMail {
2121

2222
## Documentation
2323

24-
[Latest documentation](https://grails.github.io/grails-mail/latest/) and [snapshots](https://grails.github.io/grails-mail/snapshot/) are available.
24+
[Latest documentation](https://grails-plugins.github.io/grails-mail/latest/) and [snapshots](https://grails-plugins.github.io/grails-mail/snapshot/) are available.
2525

2626
## Versions
2727

@@ -34,7 +34,7 @@ mailService.sendMail {
3434

3535
## Issues
3636

37-
Issues can be raised via [GitHub Issues](https://github.com/grails/grails-mail/issues).
37+
Issues can be raised via [GitHub Issues](https://github.com/grails-plugins/grails-mail/issues).
3838

3939
## Contributing
4040

gradle/publishing.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ publishing {
1515
pom {
1616
name = 'Grails Mail plugin'
1717
description = 'Provides Mail support to a running Grails application'
18-
url = 'https://github.com/grails/grails-mail'
18+
url = 'https://github.com/grails-plugins/grails-mail'
1919
licenses {
2020
license {
2121
name = 'The Apache License, Version 2.0'
@@ -65,9 +65,9 @@ publishing {
6565
}
6666
}
6767
scm {
68-
connection = 'scm:git:git://github.com/grails/grails-mail.git'
69-
developerConnection = 'scm:git:ssh://github.com:grails/grails-mail.git'
70-
url = 'https://github.com/grails/grails-mail'
68+
connection = 'scm:git:git://github.com/grails-plugins/grails-mail.git'
69+
developerConnection = 'scm:git:ssh://github.com:grails-plugins/grails-mail.git'
70+
url = 'https://github.com/grails-plugins/grails-mail'
7171
}
7272
}
7373
// dependency management shouldn't be included

src/main/groovy/grails/plugins/mail/MailGrailsPlugin.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ sendMail {
5353
[name: 'Mattias Reichel', email: '[email protected]']
5454
]
5555

56-
def issueManagement = [system: 'GitHub', url: 'https://github.com/grails/grails-mail/issues']
57-
def scm = [url: 'https://github.com/grails/grails-mail']
56+
def issueManagement = [system: 'GitHub', url: 'https://github.com/grails-plugins/grails-mail/issues']
57+
def scm = [url: 'https://github.com/grails-plugins/grails-mail']
5858

5959
def observe = ['controllers', 'services']
6060

0 commit comments

Comments
 (0)