Skip to content

Commit a33b127

Browse files
committedJul 13, 2022
#1092 fixed ver for slf4j
1 parent 6362643 commit a33b127

File tree

8 files changed

+88
-2
lines changed

8 files changed

+88
-2
lines changed
 

‎.github/workflows/codecov.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: codecov
3+
"on":
4+
push:
5+
branches:
6+
- master
7+
jobs:
8+
codecov:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-java@v1
13+
with:
14+
java-version: 11
15+
- uses: actions/cache@v1
16+
with:
17+
path: ~/.m2/repository
18+
key: maven-${{ hashFiles('**/pom.xml') }}
19+
restore-keys: |
20+
maven-
21+
- run: mvn install -Pjacoco -Dinvoker.skip
22+
- uses: codecov/codecov-action@v1
23+
with:
24+
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
25+
fail_ci_if_error: true

‎README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
<img src="http://img.qulice.com/logo.svg" width="200px" height="55px"/>
1+
<img alt="logo" src="http://img.qulice.com/logo.svg" width="200px" height="55px"/>
22

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

‎pom.xml

+12
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,18 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
172172
<artifactId>hamcrest-library</artifactId>
173173
<version>1.3</version>
174174
</dependency>
175+
<dependency>
176+
<groupId>org.slf4j</groupId>
177+
<artifactId>slf4j-log4j12</artifactId>
178+
<version>2.0.0-alpha5</version>
179+
<scope>test</scope>
180+
</dependency>
181+
<dependency>
182+
<groupId>log4j</groupId>
183+
<artifactId>log4j</artifactId>
184+
<version>1.2.17</version>
185+
<scope>test</scope>
186+
</dependency>
175187
</dependencies>
176188
</dependencyManagement>
177189
<build>

‎qulice-ant/pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,16 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
104104
<artifactId>junit-jupiter-engine</artifactId>
105105
<!-- version from parent -->
106106
</dependency>
107+
<dependency>
108+
<groupId>org.slf4j</groupId>
109+
<artifactId>slf4j-log4j12</artifactId>
110+
<!-- version from parent -->
111+
</dependency>
112+
<dependency>
113+
<groupId>log4j</groupId>
114+
<artifactId>log4j</artifactId>
115+
<!-- version from parent -->
116+
</dependency>
107117
</dependencies>
108118
<build>
109119
<plugins>

‎qulice-checkstyle/pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,16 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
112112
<artifactId>junit-jupiter-params</artifactId>
113113
<!-- version from parent -->
114114
</dependency>
115+
<dependency>
116+
<groupId>org.slf4j</groupId>
117+
<artifactId>slf4j-log4j12</artifactId>
118+
<!-- version from parent -->
119+
</dependency>
120+
<dependency>
121+
<groupId>log4j</groupId>
122+
<artifactId>log4j</artifactId>
123+
<!-- version from parent -->
124+
</dependency>
115125
</dependencies>
116126
<build>
117127
<plugins>

‎qulice-maven-plugin/pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,16 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
237237
<artifactId>pmd-core</artifactId>
238238
<version>${pmd.version}</version>
239239
</dependency>
240+
<dependency>
241+
<groupId>org.slf4j</groupId>
242+
<artifactId>slf4j-log4j12</artifactId>
243+
<!-- version from parent -->
244+
</dependency>
245+
<dependency>
246+
<groupId>log4j</groupId>
247+
<artifactId>log4j</artifactId>
248+
<!-- version from parent -->
249+
</dependency>
240250
</dependencies>
241251
<build>
242252
<plugins>

‎qulice-pmd/pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,16 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
110110
<artifactId>junit-jupiter-params</artifactId>
111111
<!-- version from parent -->
112112
</dependency>
113+
<dependency>
114+
<groupId>org.slf4j</groupId>
115+
<artifactId>slf4j-log4j12</artifactId>
116+
<!-- version from parent -->
117+
</dependency>
118+
<dependency>
119+
<groupId>log4j</groupId>
120+
<artifactId>log4j</artifactId>
121+
<!-- version from parent -->
122+
</dependency>
113123
</dependencies>
114124
<build>
115125
<plugins>

‎qulice-spi/pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,16 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
5959
<artifactId>junit-jupiter-engine</artifactId>
6060
<!-- version from parent -->
6161
</dependency>
62+
<dependency>
63+
<groupId>org.slf4j</groupId>
64+
<artifactId>slf4j-log4j12</artifactId>
65+
<!-- version from parent -->
66+
</dependency>
67+
<dependency>
68+
<groupId>log4j</groupId>
69+
<artifactId>log4j</artifactId>
70+
<!-- version from parent -->
71+
</dependency>
6272
</dependencies>
6373
<build>
6474
<plugins>

0 commit comments

Comments
 (0)
Please sign in to comment.