Skip to content

Commit

Permalink
Upgrading various libraries' versions (#153)
Browse files Browse the repository at this point in the history
* Upgrading various libraries' versions.
No changes to plugins.
No change to Azure libraries.

* Bump version to 5.3.2-SNAPSHOT
  • Loading branch information
bluedenim authored May 27, 2024
1 parent 573cba8 commit dc52906
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
14 changes: 7 additions & 7 deletions appender-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<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>
<artifactId>appender-core</artifactId>
<version>5.2.3-SNAPSHOT</version>
<version>5.3.3-SNAPSHOT</version>
<name>appender-core</name>
<description>Core functionality to send content to various channels, used by appender-log4j2</description>
<url>https://github.com/bluedenim/log4j-s3-search</url>
<parent>
<groupId>com.therealvan</groupId>
<artifactId>log4j-s3-search</artifactId>
<version>5.2.2</version>
<version>5.3.2</version>
</parent>

<properties>
Expand Down Expand Up @@ -48,15 +48,15 @@
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.4</version>
<version>5.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -74,7 +74,7 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.20.0</version>
<version>2.23.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
14 changes: 7 additions & 7 deletions appender-log4j2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<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>
<artifactId>appender-log4j2</artifactId>
<version>5.2.3-SNAPSHOT</version>
<version>5.3.3-SNAPSHOT</version>
<name>appender-log4j2</name>
<description>Log4j 2.x appender to capture and send log events to remote storage (AWS S3, Azure Blob Storage, Google Cloud Storage) and search (Solr, Elasticsearch)</description>
<url>https://github.com/bluedenim/log4j-s3-search</url>
Expand All @@ -11,7 +11,7 @@
<parent>
<groupId>com.therealvan</groupId>
<artifactId>log4j-s3-search</artifactId>
<version>5.2.2</version>
<version>5.3.2</version>
</parent>

<properties>
Expand All @@ -22,7 +22,7 @@
<dependency>
<groupId>com.therealvan</groupId>
<artifactId>appender-core</artifactId>
<version>5.2.2</version>
<version>5.3.2</version>
<exclusions>
<exclusion>
<groupId>com.amazonaws</groupId>
Expand Down Expand Up @@ -61,15 +61,15 @@
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>4.3</version>
<version>5.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>com.therealvan</groupId>
<artifactId>log4j-s3-search</artifactId>
<packaging>pom</packaging>
<version>5.2.3-SNAPSHOT</version>
<version>5.3.3-SNAPSHOT</version>
<name>log4j-s3-search</name>
<description>Parent POM for the log4j-s3-search project and used by appender-core, appender-log4j, and appender-log4j2 projects.</description>
<url>https://github.com/bluedenim/log4j-s3-search</url>
Expand Down Expand Up @@ -45,12 +45,12 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>1.12.261</version>
<version>1.12.730</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.13.1</version>
<version>2.17.1</version>
</dependency>

<dependency>
Expand All @@ -61,14 +61,14 @@
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-storage</artifactId>
<version>2.4.2</version>
<version>2.39.0</version>
</dependency>

<!-- Search -->
<dependency>
<groupId>org.apache.solr</groupId>
<artifactId>solr-solrj</artifactId>
<version>8.11.3</version>
<version>9.6.0</version>
</dependency>
<dependency>
<groupId>org.elasticsearch.client</groupId>
Expand Down

0 comments on commit dc52906

Please sign in to comment.