Skip to content

Commit

Permalink
Replace occurrences of "exposed-adt-mapping"/"Exposed ADT Mapping" wi…
Browse files Browse the repository at this point in the history
…th "exposed-gadt-mapping"/"Exposed GADT Mapping" in files and filenames

```sh
find . -name "*exposed-adt-mapping*" -exec rename 's/exposed-adt-mapping/exposed-gadt-mapping/' {} ";"
```
  • Loading branch information
ShreckYe committed Dec 6, 2024
1 parent a53f89b commit 5787202
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Exposed GADT mapping

[![Maven Central](https://img.shields.io/maven-central/v/com.huanshankeji/exposed-adt-mapping)](https://search.maven.org/artifact/com.huanshankeji/exposed-adt-mapping)
[![Maven Central](https://img.shields.io/maven-central/v/com.huanshankeji/exposed-gadt-mapping)](https://search.maven.org/artifact/com.huanshankeji/exposed-gadt-mapping)

A library based on [Exposed](https://github.com/JetBrains/Exposed) [DSL](https://github.com/JetBrains/Exposed/wiki/DSL) providing mappings between data entities and tables with support for GADT (generalized algebraic data type), aka features including nested properties of composite class types, type parameters and their type inference, and sealed classes

Expand All @@ -11,7 +11,7 @@ This project is an attempt to provide an alternative to [Exposed DAO](https://gi
### The Maven coordinate

```kotlin
"com.huanshankeji:exposed-adt-mapping:$libraryVersion"
"com.huanshankeji:exposed-gadt-mapping:$libraryVersion"
```

### **Important note**
Expand All @@ -22,7 +22,7 @@ As Exposed is a library that has not reached stability yet and often has incompa

Please note that these APIs are far from stable. There are going to be refactors in future releases.

[Check out the API documentation here.](https://huanshankeji.github.io/exposed-adt-mapping/.)
[Check out the API documentation here.](https://huanshankeji.github.io/exposed-gadt-mapping/.)

### Table and data definitions

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ plugins {
}

dependencies {
dokka(project(":exposed-adt-mapping"))
dokka(project(":exposed-gadt-mapping"))
}
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ version = projectVersion
publishing.publications.withType<MavenPublication> {
pomForTeamDefaultOpenSource(
project,
"Exposed ADT mapping",
"mappings between data entities and tables with support for (generic) algebraic data types based on Exposed DSL"
"Exposed GADT mapping",
"mappings between data entities and tables with support for generalized algebraic data types based on Exposed DSL"
) {
`Shreck Ye`()
}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.4.0"
}

rootProject.name = "exposed-adt-mapping"
rootProject.name = "exposed-gadt-mapping"
include("lib")
project(":lib").name = rootProject.name

Expand Down

0 comments on commit 5787202

Please sign in to comment.