Skip to content

Commit

Permalink
#1092 fixed ver for slf4j
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jul 13, 2022
1 parent 6362643 commit a33b127
Show file tree
Hide file tree
Showing 8 changed files with 88 additions and 2 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/codecov.yml
@@ -0,0 +1,25 @@
---
name: codecov
"on":
push:
branches:
- master
jobs:
codecov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 11
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
maven-
- run: mvn install -Pjacoco -Dinvoker.skip
- uses: codecov/codecov-action@v1
with:
files: qulice-spi/target/site/jacoco/jacoco.xml,qulice-checkstyle/target/site/jacoco/jacoco.xml,qulice-pmd/target/site/jacoco/jacoco.xml,qulice-ant/target/site/jacoco/jacoco.xml,qulice-maven-plugin/target/site/jacoco/jacoco.xml
fail_ci_if_error: true
3 changes: 1 addition & 2 deletions README.md
@@ -1,7 +1,6 @@
<img src="http://img.qulice.com/logo.svg" width="200px" height="55px"/>
<img alt="logo" src="http://img.qulice.com/logo.svg" width="200px" height="55px"/>

[![EO principles respected here](https://www.elegantobjects.org/badge.svg)](https://www.elegantobjects.org)
[![Managed by Zerocracy](https://www.0crat.com/badge/C3T49A35L.svg)](https://www.0crat.com/p/C3T49A35L)
[![DevOps By Rultor.com](http://www.rultor.com/b/yegor256/qulice)](http://www.rultor.com/p/yegor256/qulice)
[![We recommend IntelliJ IDEA](https://www.elegantobjects.org/intellij-idea.svg)](https://www.jetbrains.com/idea/)

Expand Down
12 changes: 12 additions & 0 deletions pom.xml
Expand Up @@ -172,6 +172,18 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>2.0.0-alpha5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
Expand Down
10 changes: 10 additions & 0 deletions qulice-ant/pom.xml
Expand Up @@ -104,6 +104,16 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<artifactId>junit-jupiter-engine</artifactId>
<!-- version from parent -->
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<!-- version from parent -->
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<!-- version from parent -->
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
10 changes: 10 additions & 0 deletions qulice-checkstyle/pom.xml
Expand Up @@ -112,6 +112,16 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<artifactId>junit-jupiter-params</artifactId>
<!-- version from parent -->
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<!-- version from parent -->
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<!-- version from parent -->
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
10 changes: 10 additions & 0 deletions qulice-maven-plugin/pom.xml
Expand Up @@ -237,6 +237,16 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<artifactId>pmd-core</artifactId>
<version>${pmd.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<!-- version from parent -->
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<!-- version from parent -->
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
10 changes: 10 additions & 0 deletions qulice-pmd/pom.xml
Expand Up @@ -110,6 +110,16 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<artifactId>junit-jupiter-params</artifactId>
<!-- version from parent -->
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<!-- version from parent -->
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<!-- version from parent -->
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
10 changes: 10 additions & 0 deletions qulice-spi/pom.xml
Expand Up @@ -59,6 +59,16 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<artifactId>junit-jupiter-engine</artifactId>
<!-- version from parent -->
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<!-- version from parent -->
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<!-- version from parent -->
</dependency>
</dependencies>
<build>
<plugins>
Expand Down

0 comments on commit a33b127

Please sign in to comment.