-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build: Streamlined dependency and plugin management (#4)
* Streamlined dependency and plugin management - moved code coverage to the common-convertions so it would cover all java libraries - moved library dependnecy management to libs.toml * Configuted code coverage * Code coverage action * Removed CC
- Loading branch information
1 parent
c329580
commit 7473b1c
Showing
5 changed files
with
62 additions
and
38 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
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 @@ | ||
[versions] | ||
junit = "5.10.1" | ||
mockito = "4.11.0" | ||
|
||
[libraries] | ||
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit" } | ||
junit-jupiter-launcher = { module = "org.junit.platform:junit-platform-launcher" } | ||
mockito-core = { module = "org.mockito:mockito-core", version.ref = "mockito" } | ||
mockito-junit-jupiter = { module = "org.mockito:mockito-junit-jupiter", version.ref = "mockito" } | ||
|
||
|
||
|
||
|
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