Skip to content

Commit 5027600

Browse files
committed
Split grace-events to its' own repo
Closes gh-1 See graceframework/grace-async#71
1 parent a0cfa8d commit 5027600

File tree

7 files changed

+19
-28
lines changed

7 files changed

+19
-28
lines changed

ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Thanks for reporting an issue for Grails Async, please review the task list below before submitting the
1+
Thanks for reporting an issue for Grails Events, please review the task list below before submitting the
22
issue. Your issue report will be closed if the issue is incomplete and the below tasks not completed.
33

44
NOTE: If you are unsure about something and the issue is more of a question a better place to ask questions is on GitHub Discussions (https://github.com/orgs/graceframework/discussions).

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
[![Main branch build status](https://github.com/graceframework/grace-async/workflows/Grace%20CI/badge.svg?style=flat)](https://github.com/graceframework/grace-async/actions?query=workflow%3A%Grace+CI%22)
1+
[![Main branch build status](https://github.com/graceframework/grace-events/workflows/Grace%20CI/badge.svg?style=flat)](https://github.com/graceframework/grace-events/actions?query=workflow%3A%Grace+CI%22)
22
[![Apache 2.0 license](https://img.shields.io/badge/License-APACHE%202.0-green.svg?logo=APACHE&style=flat)](https://opensource.org/licenses/Apache-2.0)
3-
[![Latest version on Maven Central](https://img.shields.io/maven-central/v/org.graceframework/grace-async-core.svg?label=Maven%20Central&logo=apache-maven&style=flat)](https://search.maven.org/search?q=g:org.graceframework)
4-
[![Grace Document](https://img.shields.io/badge/Grace_Document-latest-blue?style=flat&logo=asciidoctor&logoColor=E40046&labelColor=ffffff&color=f49b06)](https://graceframework.org/grace-async/latest/guide/index.html)
3+
[![Latest version on Maven Central](https://img.shields.io/maven-central/v/org.graceframework/grace-events-core.svg?label=Maven%20Central&logo=apache-maven&style=flat)](https://search.maven.org/search?q=g:org.graceframework)
4+
[![Grace Document](https://img.shields.io/badge/Grace_Document-latest-blue?style=flat&logo=asciidoctor&logoColor=E40046&labelColor=ffffff&color=f49b06)](https://graceframework.org/grace-events/latest/)
55
[![Grace on X](https://img.shields.io/twitter/follow/graceframework?style=social)](https://x.com/graceframework)
66

77
[![Groovy Version](https://img.shields.io/badge/Groovy-4.0.27-blue?style=flat&color=4298b8)](https://groovy-lang.org/releasenotes/groovy-4.0.html)
88
[![Grace Version](https://img.shields.io/badge/Grace-2023.3.0-blue?style=flat&color=f49b06)](https://github.com/graceframework/grace-framework/releases/tag/v2023.3.0-RC2)
99
[![Spring Boot Version](https://img.shields.io/badge/Spring_Boot-3.3.12-blue?style=flat&color=6db33f)](https://github.com/spring-projects/spring-boot/releases/tag/v3.3.12)
1010

11-
# Grace Async and Events Framework
11+
# Grace Events Framework
1212

1313
This project contains APIs and libraries that integrate Grace with various asynchronous libraries and frameworks such as [GPars](https://github.com/GPars/GPars) and [RxJava](https://github.com/ReactiveX/RxJava/tree/1.x), [RxJava2](https://github.com/ReactiveX/RxJava/releases/tag/v2.2.21), [RxJava3](https://github.com/ReactiveX/RxJava/releases).
1414

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ else {
173173

174174
tasks.withType(Groovydoc) {
175175
group = 'Documentation'
176-
docTitle = "Grace Async and Events Framework - ${project.version}"
176+
docTitle = "Grace Events Framework - ${project.version}"
177177
destinationDir = project.file('build/docs/manual/api')
178178
def files = []
179179
project.rootProject.subprojects

grace-plugin-events/src/main/groovy/org/grails/plugins/events/EventBusGrailsPlugin.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ class EventBusGrailsPlugin extends Plugin {
2727

2828
def grailsVersion = "2023.0.0 > *"
2929
def description = 'Grace Events Plugin'
30-
def documentation = "https://graceframework.org/grace-async/6.3.x/"
30+
def documentation = "https://graceframework.org/grace-events/7.0.x/"
3131
def license = "APACHE"
32-
def issueManagement = [system: "Github Issues", url: "https://github.com/graceframework/grace-async"]
33-
def scm = [url: "https://github.com/graceframework/grace-async"]
32+
def issueManagement = [system: "Github Issues", url: "https://github.com/graceframework/grace-events"]
33+
def scm = [url: "https://github.com/graceframework/grace-events"]
3434

3535
}

publishing/mavenCentral.gradle

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,23 +32,20 @@ publishing {
3232
}
3333
pom {
3434
name = projectName
35-
if (project.name.contains('async')) {
36-
description = "Grace Async Framework : $projectName"
37-
}
3835
if (project.name.contains('events')) {
3936
description = "Grace Events Framework : $projectName"
4037
}
41-
url = 'https://github.com/graceframework/grace-async'
38+
url = 'https://github.com/graceframework/grace-events'
4239
licenses {
4340
license {
4441
name = 'The Apache License, Version 2.0'
4542
url = 'https://www.apache.org/licenses/LICENSE-2.0.txt'
4643
}
4744
}
4845
scm {
49-
connection = 'scm:git:git://github.com/graceframework/grace-async.git'
50-
developerConnection = 'scm:git:ssh://github.com:graceframework/grace-async.git'
51-
url = 'https://github.com/graceframework/grace-async'
46+
connection = 'scm:git:git://github.com/graceframework/grace-events.git'
47+
developerConnection = 'scm:git:ssh://github.com:graceframework/grace-events.git'
48+
url = 'https://github.com/graceframework/grace-events'
5249
}
5350
developers {
5451
developer {
@@ -66,7 +63,7 @@ jar {
6663
manifest.mainAttributes(
6764
"Built-By": System.properties['user.name'],
6865
"Created-By": System.properties['java.vm.version'] + " (" + System.properties['java.vm.vendor'] + ")",
69-
"Implementation-Title": "Grace Async",
66+
"Implementation-Title": "Grace Events",
7067
"Implementation-Version": projectVersion,
7168
"Implementation-Vendor": 'graceframework.org')
7269
}

settings.gradle

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
rootProject.name = 'Grace.Async'
1+
rootProject.name = 'Grace.Events'
22

3-
include 'grace-async-core'
4-
include 'grace-async-gpars'
5-
include 'grace-async-rxjava'
6-
include 'grace-async-rxjava2'
7-
include 'grace-async-rxjava3'
83
include 'grace-events-core'
94
include 'grace-events-compat'
105
include 'grace-events-transform'
@@ -13,7 +8,6 @@ include 'grace-events-spring'
138
include 'grace-events-rxjava'
149
include 'grace-events-rxjava2'
1510
include 'grace-events-rxjava3'
16-
include 'grace-plugin-async'
1711
include 'grace-plugin-events'
1812

1913
// examples
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
api=../api
22
tags=../ref/Tags
33
guide=../../guide
4-
github=https://github.com/graceframework/grace-async
4+
github=https://github.com/graceframework/grace-events
55
sourcedir=.
6-
sourceRepo=https://github.com/graceframework/grace-async/edit/6.3.x/src/main/docs
6+
sourceRepo=https://github.com/graceframework/grace-events/edit/7.0.x/src/main/docs
77
safe=UNSAFE
8-
title=Grace Async and Events Framework
9-
subtitle=Provides various asynchronous libraries and frameworks that integrate Grace
8+
title=Grace Events Framework
9+
subtitle=Provides various events libraries and frameworks that integrate Grace
1010
authors=Michael Yan
1111
copyright=Copyright © 2022-2025 Michael Yan and the original authors. The content is licensed under a Creative Commons Attribution 4.0 International (CC BY SA 4.0) license.

0 commit comments

Comments
 (0)