-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create modules/subprojects to split code into, and move the example a…
…nd benchmark code into the module "integrated" IntelliJ IDEA Code Analysis shows there are 5 errors.
- Loading branch information
Showing
30 changed files
with
85 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import com.huanshankeji.team.`Shreck Ye` | ||
import com.huanshankeji.team.pomForTeamDefaultOpenSource | ||
|
||
plugins { | ||
id("conventions") | ||
id("com.huanshankeji.kotlin-jvm-library-sonatype-ossrh-publish-conventions") | ||
id("com.huanshankeji.team.default-github-packages-maven-publish") | ||
id("com.huanshankeji.team.dokka.github-dokka-convention") | ||
} | ||
|
||
publishing.publications.getByName<MavenPublication>("maven") { | ||
pomForTeamDefaultOpenSource(project, "Exposed Vert.x SQL Client", "Exposed on top of Vert.x Reactive SQL Client") { | ||
`Shreck Ye`() | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# The integrated module | ||
|
||
This module includes tests, benchmarks, and examples. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import com.huanshankeji.cpnProject | ||
|
||
plugins { | ||
conventions | ||
id("com.huanshankeji.benchmark.kotlinx-benchmark-jvm-conventions") | ||
} | ||
|
||
dependencies { | ||
with(commonDependencies.vertx) { implementation(platformStackDepchain()) } // needed | ||
|
||
implementation(cpnProject(project, ":core")) | ||
|
||
testImplementation("com.huanshankeji:exposed-adt-mapping:${DependencyVersions.exposedAdtMapping}") | ||
testImplementation(cpnProject(project, ":sql-dsl-with-mapper")) | ||
} | ||
|
||
afterEvaluate { | ||
// for the benchmarks | ||
dependencies { | ||
"benchmarksImplementation"(cpnProject(project, ":postgresql")) | ||
|
||
with(commonDependencies.testContainers) { | ||
"benchmarksImplementation"(platformBom()) | ||
"benchmarksImplementation"(postgreSql) | ||
} | ||
"benchmarksImplementation"(commonDependencies.slf4j.simple()) | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import com.huanshankeji.cpnProject | ||
|
||
plugins { | ||
`lib-conventions` | ||
} | ||
|
||
dependencies { | ||
with(commonDependencies.vertx) { implementation(platformStackDepchain()) } // needed | ||
implementation(cpnProject(project, ":core")) | ||
|
||
runtimeOnly(commonDependencies.postgreSql()) | ||
implementation(commonDependencies.vertx.moduleWithoutVersion("pg-client")) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import com.huanshankeji.cpnProject | ||
|
||
plugins { | ||
`lib-conventions` | ||
} | ||
|
||
dependencies { | ||
with(commonDependencies.vertx) { implementation(platformStackDepchain()) } // needed | ||
implementation(cpnProject(project, ":core")) | ||
} |