| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ~ Licensed to the Apache Software Foundation (ASF) under one or more |
| ~ contributor license agreements. See the NOTICE file distributed with |
| ~ this work for additional information regarding copyright ownership. |
| ~ The ASF licenses this file to you under the Apache License, Version 2.0 |
| ~ (the "License"); you may not use this file except in compliance with |
| ~ the License. You may obtain a copy of the License at |
| ~ |
| ~ http://www.apache.org/licenses/LICENSE-2.0 |
| ~ |
| ~ Unless required by applicable law or agreed to in writing, software |
| ~ distributed under the License is distributed on an "AS IS" BASIS, |
| ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| ~ See the License for the specific language governing permissions and |
| ~ limitations under the License. |
| --> |
| <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>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-slf4j-bom</artifactId> |
| <version>${revision}</version> |
| </parent> |
| |
| <artifactId>log4j-slf4j-parent</artifactId> |
| <packaging>pom</packaging> |
| |
| <name>Apache Logging bridges for SLF4J: Parent</name> |
| <description>Parent for the logging bridges between SLF4J and Log4j API.</description> |
| <url>https://logging.apache.org/log4j/2.x/manual/installation.html</url> |
| |
| <properties> |
| <!-- Skips BND Baseline until the first release --> |
| <bnd.baseline.fail.on.missing>false</bnd.baseline.fail.on.missing> |
| |
| <!-- dependency versions --> |
| <assertj.version>3.26.3</assertj.version> |
| <bnd.annotation.version>7.1.0</bnd.annotation.version> |
| <hamcrest.version>2.2</hamcrest.version> |
| <jspecify.version>1.0.0</jspecify.version> |
| <junit.version>5.11.3</junit.version> |
| <log4j.version>2.24.1</log4j.version> |
| <mockito.version>5.14.2</mockito.version> |
| <osgi.bundle.version>2.0.0</osgi.bundle.version> |
| <osgi.versioning.version>1.1.2</osgi.versioning.version> |
| <slf4j.version>2.0.16</slf4j.version> |
| |
| </properties> |
| |
| <dependencyManagement> |
| <dependencies> |
| |
| <dependency> |
| <groupId>org.assertj</groupId> |
| <artifactId>assertj-bom</artifactId> |
| <version>${assertj.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.junit</groupId> |
| <artifactId>junit-bom</artifactId> |
| <version>${junit.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-bom</artifactId> |
| <version>${log4j.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-bom</artifactId> |
| <version>${mockito.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-bom</artifactId> |
| <version>${slf4j.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| |
| </dependencies> |
| </dependencyManagement> |
| |
| <dependencies> |
| |
| <dependency> |
| <groupId>biz.aQute.bnd</groupId> |
| <artifactId>biz.aQute.bnd.annotation</artifactId> |
| <version>${bnd.annotation.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.jspecify</groupId> |
| <artifactId>jspecify</artifactId> |
| <version>${jspecify.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.osgi</groupId> |
| <artifactId>org.osgi.annotation.bundle</artifactId> |
| <version>${osgi.bundle.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.osgi</groupId> |
| <artifactId>org.osgi.annotation.versioning</artifactId> |
| <version>${osgi.versioning.version}</version> |
| </dependency> |
| |
| </dependencies> |
| </project> |