Skip to content

Commit 9b0bdf4

Browse files
committed
Update READMEs
1 parent eb94952 commit 9b0bdf4

File tree

2 files changed

+30
-30
lines changed

2 files changed

+30
-30
lines changed

README.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
9595
<dependency>
9696
<groupId>ch.qos.logback</groupId>
9797
<artifactId>logback-classic</artifactId>
98-
<version>1.2.10</version>
98+
<version>1.3.12</version>
9999
</dependency>
100100
<dependency>
101101
<groupId>com.epam.reportportal</groupId>
@@ -105,7 +105,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
105105
<dependency>
106106
<groupId>com.epam.reportportal</groupId>
107107
<artifactId>logger-java-logback</artifactId>
108-
<version>5.1.1</version>
108+
<version>5.2.0</version>
109109
</dependency>
110110
</dependencies>
111111

@@ -184,7 +184,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
184184
<dependency>
185185
<groupId>org.apache.logging.log4j</groupId>
186186
<artifactId>log4j-core</artifactId>
187-
<version>2.17.1</version>
187+
<version>2.17.2</version>
188188
</dependency>
189189
<dependency>
190190
<groupId>org.apache.logging.log4j</groupId>
@@ -199,7 +199,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
199199
<dependency>
200200
<groupId>com.epam.reportportal</groupId>
201201
<artifactId>logger-java-log4j</artifactId>
202-
<version>5.1.4</version>
202+
<version>5.2.0</version>
203203
</dependency>
204204
</dependencies>
205205

@@ -275,7 +275,7 @@ repositories {
275275
}
276276
277277
dependencies {
278-
compile 'com.epam.reportportal:logger-java-log4j:5.1.4'
278+
compile 'com.epam.reportportal:logger-java-log4j:5.2.0'
279279
compile 'com.epam.reportportal:agent-java-junit:5.2.0'
280280
}
281281
@@ -416,7 +416,7 @@ If you prefer using **Logback** logging library, add following dependencies:
416416
<dependency>
417417
<groupId>com.epam.reportportal</groupId>
418418
<artifactId>logger-java-logback</artifactId>
419-
<version>5.1.1</version>
419+
<version>5.2.0</version>
420420
</dependency>
421421
```
422422
> Up to date version could be found [here](https://search.maven.org/search?q=g:%22com.epam.reportportal%22%20AND%20a:%22logger-java-logback%22)
@@ -426,7 +426,7 @@ If you prefer using **Logback** logging library, add following dependencies:
426426
<dependency>
427427
<groupId>ch.qos.logback</groupId>
428428
<artifactId>logback-classic</artifactId>
429-
<version>1.2.10</version>
429+
<version>1.3.12</version>
430430
</dependency>
431431
```
432432

@@ -447,13 +447,13 @@ If you prefer using **Log4j** logging library, add following dependencies:
447447
<dependency>
448448
<groupId>org.apache.logging.log4j</groupId>
449449
<artifactId>log4j-api</artifactId>
450-
<version>2.17.1</version>
450+
<version>2.17.2</version>
451451
</dependency>
452452

453453
<dependency>
454454
<groupId>org.apache.logging.log4j</groupId>
455455
<artifactId>log4j-core</artifactId>
456-
<version>2.17.1</version>
456+
<version>2.17.2</version>
457457
</dependency>
458458
```
459459

@@ -685,19 +685,19 @@ in this case - add a `maven dependency plugin` dependency explicitly, like this:
685685
<dependency>
686686
<groupId>com.epam.reportportal</groupId>
687687
<artifactId>logger-java-log4j</artifactId>
688-
<version>5.1.4</version>
688+
<version>5.2.0</version>
689689
</dependency>
690690

691691
<dependency>
692692
<groupId>org.apache.logging.log4j</groupId>
693693
<artifactId>log4j-api</artifactId>
694-
<version>2.17.1</version>
694+
<version>2.17.2</version>
695695
</dependency>
696696

697697
<dependency>
698698
<groupId>org.apache.logging.log4j</groupId>
699699
<artifactId>log4j-core</artifactId>
700-
<version>2.17.1</version>
700+
<version>2.17.2</version>
701701
</dependency>
702702
</dependencies>
703703

@@ -813,10 +813,10 @@ repositories {
813813
}
814814
815815
dependencies {
816-
compile 'com.epam.reportportal:logger-java-log4j:5.1.4'
816+
compile 'com.epam.reportportal:logger-java-log4j:5.2.0'
817817
compile 'com.epam.reportportal:agent-java-junit:5.2.0'
818-
compile 'org.apache.logging.log4j:log4j-api:2.17.1'
819-
compile 'org.apache.logging.log4j:log4j-core:2.17.1'
818+
compile 'org.apache.logging.log4j:log4j-api:2.17.2'
819+
compile 'org.apache.logging.log4j:log4j-core:2.17.2'
820820
}
821821
822822
test {

README_TEMPLATE.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
9595
<dependency>
9696
<groupId>ch.qos.logback</groupId>
9797
<artifactId>logback-classic</artifactId>
98-
<version>1.2.10</version>
98+
<version>1.3.12</version>
9999
</dependency>
100100
<dependency>
101101
<groupId>com.epam.reportportal</groupId>
@@ -105,7 +105,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
105105
<dependency>
106106
<groupId>com.epam.reportportal</groupId>
107107
<artifactId>logger-java-logback</artifactId>
108-
<version>5.1.1</version>
108+
<version>5.2.0</version>
109109
</dependency>
110110
</dependencies>
111111

@@ -184,7 +184,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
184184
<dependency>
185185
<groupId>org.apache.logging.log4j</groupId>
186186
<artifactId>log4j-core</artifactId>
187-
<version>2.17.1</version>
187+
<version>2.17.2</version>
188188
</dependency>
189189
<dependency>
190190
<groupId>org.apache.logging.log4j</groupId>
@@ -199,7 +199,7 @@ In your project, create or update a file named logback.xml in the src/main/resou
199199
<dependency>
200200
<groupId>com.epam.reportportal</groupId>
201201
<artifactId>logger-java-log4j</artifactId>
202-
<version>5.1.4</version>
202+
<version>5.2.0</version>
203203
</dependency>
204204
</dependencies>
205205

@@ -275,7 +275,7 @@ repositories {
275275
}
276276
277277
dependencies {
278-
compile 'com.epam.reportportal:logger-java-log4j:5.1.4'
278+
compile 'com.epam.reportportal:logger-java-log4j:5.2.0'
279279
compile 'com.epam.reportportal:agent-java-junit:$LATEST_VERSION'
280280
}
281281
@@ -416,7 +416,7 @@ If you prefer using **Logback** logging library, add following dependencies:
416416
<dependency>
417417
<groupId>com.epam.reportportal</groupId>
418418
<artifactId>logger-java-logback</artifactId>
419-
<version>5.1.1</version>
419+
<version>5.2.0</version>
420420
</dependency>
421421
```
422422
> Up to date version could be found [here](https://search.maven.org/search?q=g:%22com.epam.reportportal%22%20AND%20a:%22logger-java-logback%22)
@@ -426,7 +426,7 @@ If you prefer using **Logback** logging library, add following dependencies:
426426
<dependency>
427427
<groupId>ch.qos.logback</groupId>
428428
<artifactId>logback-classic</artifactId>
429-
<version>1.2.10</version>
429+
<version>1.3.12</version>
430430
</dependency>
431431
```
432432

@@ -447,13 +447,13 @@ If you prefer using **Log4j** logging library, add following dependencies:
447447
<dependency>
448448
<groupId>org.apache.logging.log4j</groupId>
449449
<artifactId>log4j-api</artifactId>
450-
<version>2.17.1</version>
450+
<version>2.17.2</version>
451451
</dependency>
452452

453453
<dependency>
454454
<groupId>org.apache.logging.log4j</groupId>
455455
<artifactId>log4j-core</artifactId>
456-
<version>2.17.1</version>
456+
<version>2.17.2</version>
457457
</dependency>
458458
```
459459

@@ -685,19 +685,19 @@ in this case - add a `maven dependency plugin` dependency explicitly, like this:
685685
<dependency>
686686
<groupId>com.epam.reportportal</groupId>
687687
<artifactId>logger-java-log4j</artifactId>
688-
<version>5.1.4</version>
688+
<version>5.2.0</version>
689689
</dependency>
690690

691691
<dependency>
692692
<groupId>org.apache.logging.log4j</groupId>
693693
<artifactId>log4j-api</artifactId>
694-
<version>2.17.1</version>
694+
<version>2.17.2</version>
695695
</dependency>
696696

697697
<dependency>
698698
<groupId>org.apache.logging.log4j</groupId>
699699
<artifactId>log4j-core</artifactId>
700-
<version>2.17.1</version>
700+
<version>2.17.2</version>
701701
</dependency>
702702
</dependencies>
703703

@@ -813,10 +813,10 @@ repositories {
813813
}
814814
815815
dependencies {
816-
compile 'com.epam.reportportal:logger-java-log4j:5.1.4'
816+
compile 'com.epam.reportportal:logger-java-log4j:5.2.0'
817817
compile 'com.epam.reportportal:agent-java-junit:$LATEST_VERSION'
818-
compile 'org.apache.logging.log4j:log4j-api:2.17.1'
819-
compile 'org.apache.logging.log4j:log4j-core:2.17.1'
818+
compile 'org.apache.logging.log4j:log4j-api:2.17.2'
819+
compile 'org.apache.logging.log4j:log4j-core:2.17.2'
820820
}
821821
822822
test {

0 commit comments

Comments
 (0)