Skip to content

Commit 52531a2

Browse files
committed
chore!: rename spring-transaction module into exposed-spring-transaction
1 parent bc3755e commit 52531a2

File tree

21 files changed

+6
-6
lines changed

21 files changed

+6
-6
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
dokka(projects.exposed.exposedMigration)
3030
dokka(projects.exposed.exposedMoney)
3131
dokka(projects.exposed.exposedSpringBootStarter)
32-
dokka(projects.exposed.springTransaction)
32+
dokka(projects.exposed.exposedSpringTransaction)
3333
}
3434

3535
repositories {

buildSrc/src/main/kotlin/org/jetbrains/exposed/gradle/TestDbDsl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ private fun Project.createDbTestTaskByDialect(db: TestDb, taskName: String, dial
9999

100100
if (db.ignoresSpringTests) {
101101
filter {
102-
// exclude all test classes in (spring-transaction, exposed-spring-boot-starter) modules
102+
// exclude all test classes in (exposed-spring-transaction, exposed-spring-boot-starter) modules
103103
exclude("org/jetbrains/exposed/spring/*", "org/jetbrains/exposed/jdbc-template/*")
104104
isFailOnNoMatchingTests = false
105105
}

documentation-website/Writerside/topics/Exposed-Modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ and date-time handling:
6767
| `exposed-kotlin-datetime` | Date-time extensions based on the [`kotlinx-datetime`](https://kotlinlang.org/api/kotlinx-datetime/) library |
6868
| `exposed-money` | Extensions to support [`MonetaryAmount`](https://javamoney.github.io/apidocs/java.money/javax/money/MonetaryAmount.html) from the [JavaMoney API](https://javamoney.github.io/) |
6969
| `exposed-spring-boot-starter` | A starter for [Spring Boot](https://spring.io/projects/spring-boot) to utilize Exposed as the ORM instead of [Hibernate](https://hibernate.org/) |
70-
| `spring-transaction` | Transaction manager that builds on top of Spring's standard transaction workflow |
70+
| `exposed-spring-transaction` | Transaction manager that builds on top of Spring's standard transaction workflow |
7171
| `exposed-migration` | Provides utilities to support database schema migrations |
7272

7373

exposed-spring-boot-starter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This is a starter for [Spring Boot](https://spring.io/projects/spring-boot) to utilize [Exposed](https://github.com/JetBrains/Exposed) as the ORM instead of [Hibernate](https://hibernate.org/).
44

55
## Getting Started
6-
This starter will give you the latest version of [Exposed](https://github.com/JetBrains/Exposed) and its `spring-transaction` library along with the [Spring Boot Starter JDBC](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-jdbc).
6+
This starter will give you the latest version of [Exposed](https://github.com/JetBrains/Exposed) and its `exposed-spring-transaction` library along with the [Spring Boot Starter JDBC](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-jdbc).
77
### Maven
88
```mxml
99
<dependencies>

exposed-spring-boot-starter/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ kotlin {
2020
dependencies {
2121
api(project(":exposed-core"))
2222
api(project(":exposed-dao"))
23-
api(project(":spring-transaction"))
23+
api(project(":exposed-spring-transaction"))
2424
// TODO how to avoid this
2525
// Should we create r2dbc-spring-boot-starter module?
2626
compileOnly(project(":exposed-jdbc"))

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include("exposed-core")
55
include("exposed-dao")
66
include("exposed-jodatime")
77
include("exposed-java-time")
8-
include("spring-transaction")
8+
include("exposed-spring-transaction")
99
include("exposed-spring-boot-starter")
1010
include("exposed-jdbc")
1111
include("exposed-tests")

0 commit comments

Comments
 (0)