-
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.
* elf4j implementation * Implementation * Fix javadoc * Update README * Update README * Update README * Add the integration test * Update README * Update README * Update README * Add the package-info, TOC to README * Impove integration tests for commons-logging, jdk-platform-logging and slf4j * Add an integration test * Bump org.apache.maven.plugins:maven-compiler-plugin Bumps [org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.13.0 to 3.14.0. - [Release notes](https://github.com/apache/maven-compiler-plugin/releases) - [Commits](apache/maven-compiler-plugin@maven-compiler-plugin-3.13.0...maven-compiler-plugin-3.14.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-compiler-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump org.apache.maven.plugins:maven-clean-plugin from 3.4.0 to 3.4.1 Bumps [org.apache.maven.plugins:maven-clean-plugin](https://github.com/apache/maven-clean-plugin) from 3.4.0 to 3.4.1. - [Release notes](https://github.com/apache/maven-clean-plugin/releases) - [Commits](apache/maven-clean-plugin@maven-clean-plugin-3.4.0...maven-clean-plugin-3.4.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-clean-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Ignore artifacts that have already been published * Prepare next release * Update versions, add README to BOM module * Add styles to javadocs --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
0497ca5
commit 520a819
Showing
63 changed files
with
1,339 additions
and
85 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,55 @@ | ||
# Bill of Materials | ||
|
||
The Bill Of Material is a special POM file that groups dependency versions that | ||
are known to be valid and tested to work together.[>>][using-bom] | ||
|
||
[![Java Version][java-version]][jdk-download] | ||
![Maven Central Last Update][maven-central-last-update] | ||
[![Maven Central][maven-central]][maven-central-link] | ||
|
||
## Table of Contents | ||
|
||
<!--ts--> | ||
* [How to use](#how-to-use) | ||
|
||
<!-- Created by https://github.com/ekalinin/github-markdown-toc --> | ||
<!-- Added by: r2, at: Fri Feb 21 08:07:43 PM EET 2025 --> | ||
|
||
<!--te--> | ||
|
||
## How to use | ||
|
||
Just put a test dependency to your POM: | ||
|
||
```xml | ||
<dependencies> | ||
<dependency> | ||
<artifactId>mock-loggers-*****</artifactId> | ||
<groupId>io.github.vitalijr2.logging</groupId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<artifactId>mock-loggers-bom</artifactId> | ||
<groupId>io.github.vitalijr2.logging</groupId> | ||
<scope>import</scope> | ||
<type>pom</type> | ||
<version>1.2.0</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
``` | ||
|
||
[using-bom]: https://reflectoring.io/maven-bom/#introducing-mavens-bill-of-material-bom "Using Maven’s Bill of Materials (BOM), Abdelbaki BEN ELHAJ SLIMENE" | ||
|
||
[java-version]: https://img.shields.io/static/v1?label=Java&message=11&color=blue&logoColor=E23D28 | ||
|
||
[jdk-download]: https://www.oracle.com/java/technologies/downloads/#java11 | ||
|
||
[maven-central-last-update]: https://img.shields.io/maven-central/last-update/io.github.vitalijr2.logging/mock-loggers-bom | ||
|
||
[maven-central]: https://img.shields.io/maven-central/v/io.github.vitalijr2.logging/mock-loggers-bom | ||
|
||
[maven-central-link]: https://central.sonatype.com/artifact/io.github.vitalijr2.logging/mock-loggers-bom?smo=true |
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
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
27 changes: 27 additions & 0 deletions
27
commons-logging/src/main/javadoc/resources/mock-loggers.css
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,27 @@ | ||
.tooltip { | ||
border-bottom: 1px dotted #4d7a97; | ||
display: inline-block; | ||
position: relative; | ||
} | ||
|
||
.tooltip .tooltiptext { | ||
background-color: #f8981d; | ||
border: 1px dotted #4d7a97; | ||
-moz-border-radius: 6px; | ||
-ms-border-radius: 6px; | ||
-webkit-border-radius: 6px; | ||
border-radius: 6px; | ||
color: #253441; | ||
left: 113%; | ||
padding: 5px 3px; | ||
position: absolute; | ||
text-align: center; | ||
top: -5px; | ||
visibility: hidden; | ||
width: 97px; | ||
z-index: 1; | ||
} | ||
|
||
.tooltip:hover .tooltiptext { | ||
visibility: visible; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.