Skip to content

Commit

Permalink
GH-20 Bump dependencies + update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed Jun 7, 2024
1 parent 647e35a commit 8c36637
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 24 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Journalist [![CI](https://github.com/reposilite-playground/journalist/actions/workflows/maven.yml/badge.svg)](https://github.com/dzikoysk/dynamic-logger/actions/workflows/maven.yml) [![codecov](https://codecov.io/gh/dzikoysk/dynamic-logger/branch/main/graph/badge.svg?token=bxo0JbVeDE)](https://codecov.io/gh/dzikoysk/dynamic-logger)
# Journalist [![CI](https://github.com/reposilite-playground/journalist/actions/workflows/maven.yml/badge.svg)](https://github.com/reposilite-playground/journalist/actions/workflows/maven.yml) [![codecov](https://codecov.io/gh/dzikoysk/dynamic-logger/branch/main/graph/badge.svg?token=bxo0JbVeDE)](https://codecov.io/gh/dzikoysk/dynamic-logger)
Tiny logging wrapper dedicated for CLI oriented applications with non-static logger that require dynamic threshold/level changes,
programmable output formatting, custom levels, print stream redirecting and easily testable output.

Expand All @@ -19,14 +19,14 @@ Available implementations:
<artifactId>journalist</artifactId>
<!-- For SL4J based implementations -->
<artifactId>journalist-sl4j</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>
```
Repository:
```xml
<repository>
<id>panda-repository</id>
<url>https://repo.panda-lang.org/releases</url>
<url>https://maven.reposilite.com/releases</url>
</repository>
```

Expand Down Expand Up @@ -86,5 +86,5 @@ Logger logger = new AggregatedLogger(
```

### Used by
* [Panda](https://github.com/panda-lang/panda)
* [Reposilite](https://github.com/dzikoysk/reposilite/)
* [Panda](https://github.com/panda-lang/panda)
2 changes: 1 addition & 1 deletion journalist-slf4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>journalist-parent</artifactId>
<groupId>com.reposilite</groupId>
<version>1.0.10</version>
<version>1.0.11</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion journalist-tinylog/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>journalist-parent</artifactId>
<groupId>com.reposilite</groupId>
<version>1.0.10</version>
<version>1.0.11</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion journalist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>journalist-parent</artifactId>
<groupId>com.reposilite</groupId>
<version>1.0.10</version>
<version>1.0.11</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
37 changes: 20 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,15 @@
<groupId>com.reposilite</groupId>
<artifactId>journalist-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.10</version>
<version>1.0.11</version>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<tinylog.version>2.7.0</tinylog.version>
<junit.version>5.10.2</junit.version>
</properties>

<modules>
Expand All @@ -27,48 +30,48 @@
<dependency>
<groupId>com.reposilite</groupId>
<artifactId>journalist</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>
<dependency>
<groupId>com.reposilite</groupId>
<artifactId>journalist-slf4j</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>
<dependency>
<groupId>com.reposilite</groupId>
<artifactId>journalist-tinylog</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>

<!-- Utils -->
<dependency>
<groupId>org.panda-lang</groupId>
<artifactId>expressible</artifactId>
<version>1.1.1</version>
<version>1.3.5</version>
</dependency>

<!-- SL4J -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.29</version>
<version>2.0.13</version>
</dependency>
<dependency>
<groupId>org.tinylog</groupId>
<artifactId>slf4j-tinylog</artifactId>
<version>2.3.1</version>
<version>${tinylog.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.tinylog</groupId>
<artifactId>tinylog-api</artifactId>
<version>2.3.1</version>
<version>${tinylog.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.tinylog</groupId>
<artifactId>tinylog-impl</artifactId>
<version>2.3.1</version>
<version>${tinylog.version}</version>
<scope>test</scope>
</dependency>

Expand All @@ -82,35 +85,35 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.7.1</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.7.1</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.7.1</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

<repositories>
<repository>
<id>panda-repository</id>
<url>https://repo.panda-lang.org/releases</url>
<id>reposilite-repository</id>
<url>https://maven.reposilite.com/releases</url>
</repository>
</repositories>

<distributionManagement>
<repository>
<id>panda-repository</id>
<url>https://repo.panda-lang.org/releases</url>
<id>reposilite-repository</id>
<url>https://maven.reposilite.com/releases</url>
</repository>
</distributionManagement>

Expand Down Expand Up @@ -139,7 +142,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.5</version>
<version>0.8.12</version>
<executions>
<execution>
<goals>
Expand Down

0 comments on commit 8c36637

Please sign in to comment.