Skip to content

Commit

Permalink
Feature/updates (#5)
Browse files Browse the repository at this point in the history
* Fix TODO

* Updates:
- nexus-staging-maven-plugin -> 1.6.8
- logback -> 1.3.5
- GSON -> 2.10.1
- jackson -> 2.14.2
  • Loading branch information
aaabramov authored Feb 22, 2023
1 parent 5afb715 commit c5bdb70
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 37 deletions.
4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<parent>
<groupId>io.github.aaabramov</groupId>
<artifactId>glogging</artifactId>
<version>0.0.3-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
</parent>

<artifactId>glogging-core</artifactId>

<name>core</name>

<properties>
<version.logback>1.2.5</version.logback>
<version.logback>1.3.5</version.logback>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ private void reportInvalidJsonParam(String s) {
StatusManager sm = this.getContext().getStatusManager();
sm.add(
new ErrorStatus(
s + "Specify on of: [io.github.aaabramov.glogging.GsonEncoder, TODO]",
s + "Specify one of: [io.github.aaabramov.glogging.GsonEncoder, io.github.aaabramov.glogging.JacksonEncoder]",
this
)
);
Expand Down
8 changes: 6 additions & 2 deletions gson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@
<parent>
<groupId>io.github.aaabramov</groupId>
<artifactId>glogging</artifactId>
<version>0.0.3-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
</parent>

<artifactId>glogging-gson</artifactId>

<name>gson</name>

<properties>
<version.gson>2.10.1</version.gson>
</properties>

<dependencies>

<dependency>
Expand All @@ -24,7 +28,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.8</version>
<version>${version.gson}</version>
</dependency>

</dependencies>
Expand Down
62 changes: 33 additions & 29 deletions jackson/pom.xml
Original file line number Diff line number Diff line change
@@ -1,32 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.github.aaabramov</groupId>
<artifactId>glogging</artifactId>
<version>0.0.3-SNAPSHOT</version>
</parent>

<artifactId>glogging-jackson</artifactId>

<name>jackson</name>

<dependencies>

<dependency>
<groupId>io.github.aaabramov</groupId>
<artifactId>glogging-core</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.4</version>
</dependency>

</dependencies>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.github.aaabramov</groupId>
<artifactId>glogging</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent>

<artifactId>glogging-jackson</artifactId>

<name>jackson</name>

<properties>
<version.jackson>2.14.2</version.jackson>
</properties>

<dependencies>
<dependency>
<groupId>io.github.aaabramov</groupId>
<artifactId>glogging-core</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${version.jackson}</version>
</dependency>

</dependencies>

</project>
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>io.github.aaabramov</groupId>
<artifactId>glogging</artifactId>
<version>0.0.3-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>glogging</name>
Expand All @@ -20,7 +20,7 @@
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
Expand Down Expand Up @@ -68,7 +68,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand Down

0 comments on commit c5bdb70

Please sign in to comment.