-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: adds BOM and Migration to Gradle Version Catalog (#262)
* Migration to Gradle Version Catalog. * Cleanup. * Restored .github folder. * Managed dependencies. * Add BOM, import catalog, remove defaults * Accept v2 -> v3 API changes (major version) * Feedback, remove unused, target 5.1.0 * Remove template cleanup * remove accepted changes * enable binary compatibility Co-authored-by: Alexey Zhokhov <[email protected]> Co-authored-by: Sergio del Amo <[email protected]>
- Loading branch information
1 parent
994eb5d
commit 9babd19
Showing
7 changed files
with
40 additions
and
71 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
plugins { | ||
id("io.micronaut.build.internal.bom") | ||
} | ||
|
||
// First BOM release, this can be removed after a BOM is out | ||
micronautBuild { | ||
// Required as a workaround to https://github.com/micronaut-projects/micronaut-build/pull/376 | ||
tasks.named("checkVersionCatalogCompatibility") { onlyIf { false } } | ||
} |
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,2 @@ | ||
- suppressions.xml | ||
- checkstyle.xml |
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,14 @@ | ||
[versions] | ||
managed-datastax-cassandra-driver = "4.14.1" | ||
|
||
testcontainers = "1.16.3" | ||
spock = "2.1-groovy-3.0" | ||
|
||
[libraries] | ||
managed-datastax-cassandra-driver-core = { module = "com.datastax.oss:java-driver-core", version.ref = "managed-datastax-cassandra-driver" } | ||
managed-datastax-cassandra-driver-mapper-processor = { module = "com.datastax.oss:java-driver-mapper-processor", version.ref = "managed-datastax-cassandra-driver" } | ||
|
||
reactor-core = { module = "io.projectreactor:reactor-core" } | ||
|
||
testcontainers-cassandra = { module = "org.testcontainers:cassandra", version.ref = "testcontainers" } | ||
testcontainers-spock = { module = "org.testcontainers:spock", version.ref = "testcontainers" } |
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