Skip to content

Commit

Permalink
Fix log4j maven version (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
haydar-metin committed May 10, 2024
1 parent 2bb9e0b commit fc5d3b8
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@
</scm>

<properties>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.source>17</java.source>
<java.target>17</java.target>
<project.build.java.target>17</project.build.java.target>

<!-- Maven Plugin Versions: General maven plugin versions -->
<buildhelper.maven.version>3.3.0</buildhelper.maven.version>
<codehaus.mojo.maven.version>3.2.0</codehaus.mojo.maven.version>
Expand All @@ -65,7 +65,7 @@

<!-- Dependency Versions: Version of dependencies provided by the target
platform in ,2. We try to match the p2-version if possible. -->
<apache.logging.log4j.version>[2.19.0,)</apache.logging.log4j.version>
<apache.logging.log4j.version>[2.19.0,2.23.1]</apache.logging.log4j.version>
<commons.cli.version>[1.4,)</commons.cli.version>
<elk.version>0.8.1</elk.version>
<emf.common.version>[2.23.0,)</emf.common.version>
Expand All @@ -81,7 +81,7 @@
<lsp4j.version>[0.11.0,)</lsp4j.version>
<jetty.websocket.version>[10.0.12,)</jetty.websocket.version>


<!-- Release Dependencies for M2 -->
<nexus.maven.version>1.6.13</nexus.maven.version>
<maven.gpg.version>1.6</maven.gpg.version>
Expand Down Expand Up @@ -119,8 +119,8 @@
</activation>

<properties>
<!-- Maven Plugin Versions: General maven plugin versions -->
<!-- Maven Plugin Versions: General maven plugin versions -->

</properties>

<modules>
Expand Down Expand Up @@ -255,7 +255,7 @@
</activation>

<properties>
<checkstyle.version>8.44</checkstyle.version>
<checkstyle.version>8.44</checkstyle.version>
</properties>

<modules>
Expand All @@ -267,7 +267,7 @@
<module>examples/org.eclipse.glsp.example.workflow</module>
<module>tests</module>
</modules>

<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand All @@ -280,9 +280,9 @@
<version>${google.guava.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
<version>${apache.logging.log4j.version}</version>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
<version>${apache.logging.log4j.version}</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -364,7 +364,7 @@
<module>plugins/org.eclipse.glsp.server.websocket</module>
<module>examples/org.eclipse.glsp.example.workflow</module>
</modules>


<distributionManagement>
<snapshotRepository>
Expand Down Expand Up @@ -392,7 +392,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.version}</version>
<configuration>

<source>${java.source}</source>
<detectJavaApiLink>false</detectJavaApiLink>
<tags>
Expand Down Expand Up @@ -460,4 +460,4 @@
</build>
</profile>
</profiles>
</project>
</project>

0 comments on commit fc5d3b8

Please sign in to comment.