blob: 1b8ff72cd07744f2103b1beae0726efd140a4875 [file] [log] [blame]
<?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" child.project.url.inherit.append.path="false" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<!-- ██ ██ █████ ██████ ███ ██ ██ ███ ██ ██████ ██
██ ██ ██ ██ ██ ██ ████ ██ ██ ████ ██ ██ ██
██ █ ██ ███████ ██████ ██ ██ ██ ██ ██ ██ ██ ██ ███ ██
██ ███ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
███ ███ ██ ██ ██ ██ ██ ████ ██ ██ ████ ██████ ██
`log4j-transform` project modules should use `log4j-transform-parent` as their parents, not this POM!
This POM constitutes the BOM to be imported by applications using `log4j-transform` project modules. -->
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.logging</groupId>
<artifactId>logging-parent</artifactId>
<version>11.3.0</version>
</parent>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jdk-bom</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<name>Apache Logging bridges for JPL/JUL: BOM</name>
<description>Bill-of-Material for the logging bridges between System.Logger/java.util.logging and other logging APIs.</description>
<url>https://logging.apache.org/log4j/2.x/manual/installation.html</url>
<inceptionYear>2024</inceptionYear>
<developers>
<developer>
<name>Apache Logging Services team</name>
<email>dev@logging.apache.org</email>
<url>https://logging.apache.org/team-list.html</url>
</developer>
</developers>
<modules>
<!-- the parent POM must come first: -->
<module>parent</module>
<!-- Modules here must have a corresponding entry in `dependencyManagement > dependencies` block below! -->
<module>jpl-to-log4j-api</module>
<module>log4j-api-to-jul</module>
</modules>
<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
<connection>scm:git:git@github.com:apache/logging-jdk.git</connection>
<developerConnection>scm:git:git@github.com:apache/logging-jdk.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/apache/logging-jdk</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/apache/logging-jdk/issues</url>
</issueManagement>
<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/apache/logging-jdk/actions</url>
</ciManagement>
<distributionManagement>
<downloadUrl>https://logging.apache.org/log4j/transform/latest/#distribution</downloadUrl>
</distributionManagement>
<properties>
<!-- project version -->
<revision>0.1.0-SNAPSHOT</revision>
<!-- disable `maven-site-plugin`-->
<maven.site.skip>true</maven.site.skip>
<maven.site.deploy.skip>true</maven.site.deploy.skip>
</properties>
<!-- `dependencyManagement` must only contain `jdk` modules and nothing else!
Modules here must have a corresponding entry in `modules` block above! -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>jpl-to-log4j-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api-to-jul</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<!-- Enable BOM flattening -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<executions>
<execution>
<id>flatten-bom</id>
<goals>
<goal>flatten</goal>
</goals>
<phase>process-resources</phase>
<inherited>false</inherited>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>