Skip to content

Commit

Permalink
Merge pull request #6 from fxbin/main
Browse files Browse the repository at this point in the history
refactor(all): 修改模块名为: {项目名}-spring-boot-starter
  • Loading branch information
Ahoo-Wang authored Jul 30, 2021
2 parents bc678b2 + c06c7e7 commit 170b4ae
Show file tree
Hide file tree
Showing 23 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ In actual use, we generally do not use the same `IdGenerator` for all business s

``` kotlin
val cosidVersion = "1.3.4";
implementation("me.ahoo.cosid:spring-boot-starter-cosid:${cosidVersion}")
implementation("me.ahoo.cosid:cosid-spring-boot-starter:${cosidVersion}")
```

### Maven
Expand All @@ -334,7 +334,7 @@ In actual use, we generally do not use the same `IdGenerator` for all business s
<dependencies>
<dependency>
<groupId>me.ahoo.cosid</groupId>
<artifactId>spring-boot-starter-cosid</artifactId>
<artifactId>cosid-spring-boot-starter</artifactId>
<version>${cosid.version}</version>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions cosid-rest-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ application {

dependencies {
implementation(platform(project(":cosid-dependencies")))
implementation(project(":spring-boot-starter-cosid"))
implementation(project(":cosid-spring-boot-starter"))

implementation("io.springfox:springfox-boot-starter")

//region cosid-redis
// implementation(project(":cosid-redis"))
// implementation("me.ahoo.cosky:cosky-spring-cloud-core")
// or
// implementation(project(":spring-boot-starter-cosid")){
// implementation(project(":cosid-spring-boot-starter")){
// capabilities {
// requireCapability("me.ahoo.cosid:redis-support")
// }
Expand All @@ -64,7 +64,7 @@ dependencies {
implementation(project(":cosid-spring-redis"))
implementation("org.springframework.boot:spring-boot-starter-data-redis")
// or
// implementation(project(":spring-boot-starter-cosid")){
// implementation(project(":cosid-spring-boot-starter")){
// capabilities {
// requireCapability("me.ahoo.cosid:spring-redis-support")
// }
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 @@ -25,7 +25,7 @@ buildscript {
include(":cosid-core")
include(":cosid-bom")
include(":cosid-dependencies")
include(":spring-boot-starter-cosid")
include(":cosid-spring-boot-starter")
include(":cosid-redis")
include(":cosid-spring-redis")
include(":cosid-jdbc")
Expand Down
4 changes: 2 additions & 2 deletions wiki/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ IdGenerator idGenerator=idGeneratorProvider.get("bizA");

``` kotlin
val cosidVersion = "1.3.4";
implementation("me.ahoo.cosid:spring-boot-starter-cosid:${cosidVersion}")
implementation("me.ahoo.cosid:cosid-spring-boot-starter:${cosidVersion}")
```

### Maven
Expand All @@ -329,7 +329,7 @@ IdGenerator idGenerator=idGeneratorProvider.get("bizA");
<dependencies>
<dependency>
<groupId>me.ahoo.cosid</groupId>
<artifactId>spring-boot-starter-cosid</artifactId>
<artifactId>cosid-spring-boot-starter</artifactId>
<version>${cosid.version}</version>
</dependency>
</dependencies>
Expand Down

0 comments on commit 170b4ae

Please sign in to comment.