Skip to content

Commit

Permalink
Rename submodules
Browse files Browse the repository at this point in the history
* rename grace-async to grace-async-core

* renmae grace-events to grace-events-core
  • Loading branch information
rainboyan committed Mar 15, 2024
1 parent 3653bd3 commit 836e5b2
Show file tree
Hide file tree
Showing 70 changed files with 15 additions and 15 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion grace-async-gpars/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies {
api project(":grace-async")
api project(":grace-async-core")
implementation 'org.codehaus.gpars:gpars:1.2.1', {
exclude group:'org.multiverse', module:'multiverse-core'
exclude group:'org.codehaus.groovy', module: 'groovy-all'
Expand Down
2 changes: 1 addition & 1 deletion grace-async-rxjava/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies {
api project(":grace-async")
api project(":grace-async-core")
implementation "io.reactivex:rxjava:$rxJavaVersion"
}

Expand Down
2 changes: 1 addition & 1 deletion grace-async-rxjava2/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dependencies {
api project(":grace-async")
api project(":grace-async-core")
implementation "io.reactivex.rxjava2:rxjava:$rxJava2Version"
}
2 changes: 1 addition & 1 deletion grace-async-rxjava3/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dependencies {
api project(":grace-async")
api project(":grace-async-core")
implementation "io.reactivex.rxjava3:rxjava:$rxJava3Version"
}
2 changes: 1 addition & 1 deletion grace-events-compat/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dependencies {
api project(":grace-events"), project(":grace-events-transform")
api project(":grace-events-core"), project(":grace-events-transform")
}
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion grace-events-gpars/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies {
api project(":grace-events")
api project(":grace-events-core")
implementation 'org.codehaus.gpars:gpars:1.2.1', {
exclude group:'org.multiverse', module:'multiverse-core'
exclude group:'org.codehaus.groovy', module: 'groovy-all'
Expand Down
2 changes: 1 addition & 1 deletion grace-events-rxjava/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies {
api project(":grace-events")
api project(":grace-events-core")
implementation "io.reactivex:rxjava:$rxJavaVersion"

testImplementation project(":grace-events-transform")
Expand Down
2 changes: 1 addition & 1 deletion grace-events-rxjava2/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dependencies {
api project(":grace-events")
api project(":grace-events-core")
implementation "io.reactivex.rxjava2:rxjava:$rxJava2Version"
}
2 changes: 1 addition & 1 deletion grace-events-rxjava3/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dependencies {
api project(":grace-events")
api project(":grace-events-core")
implementation "io.reactivex.rxjava3:rxjava:$rxJava3Version"
}
2 changes: 1 addition & 1 deletion grace-events-spring/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dependencies {
api project(":grace-events")
api project(":grace-events-core")
implementation "org.springframework:spring-context:$springVersion"
}
2 changes: 1 addition & 1 deletion grace-events-transform/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies {
api project(":grace-events")
api project(":grace-events-core")
compileOnly "org.graceframework:grace-datastore-gorm:$gormVersion", {
exclude group:'org.graceframework', module:'grace-datastore-gorm-validation'
exclude group: "org.codehaus.groovy", module: "groovy"
Expand Down
2 changes: 1 addition & 1 deletion grace-plugin-async/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dependencies {
compileOnly "jakarta.servlet:jakarta.servlet-api:$servletApiVersion"
implementation "org.graceframework:grace-plugin-controllers:$graceVersion"
api project(':grace-plugin-events')
api project(':grace-async')
api project(':grace-async-core')

testImplementation "jakarta.servlet:jakarta.servlet-api:$servletApiVersion"
testImplementation "org.grace:grace-test:$graceVersion"
Expand Down
2 changes: 1 addition & 1 deletion grace-plugin-events/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies {
api "org.graceframework:grace-core:$graceVersion"
api project(":grace-events"), project(":grace-events-transform")
api project(":grace-events-core"), project(":grace-events-transform")
api project(":grace-events-compat")
}

Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
rootProject.name = 'Grace.Async'

include 'grace-async'
include 'grace-async-core'
include 'grace-async-gpars'
include 'grace-async-rxjava'
include 'grace-async-rxjava2'
include 'grace-async-rxjava3'
include 'grace-events'
include 'grace-events-core'
include 'grace-events-compat'
include 'grace-events-transform'
include 'grace-events-gpars'
Expand Down

0 comments on commit 836e5b2

Please sign in to comment.