| <?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</artifactId> |
| <version>${revision}</version> |
| <relativePath>../log4j-parent</relativePath> |
| </parent> |
| |
| <artifactId>log4j-mongodb4</artifactId> |
| |
| <name>Apache Log4j MongoDB 4</name> |
| <description>MongoDB appender for Log4j using the MongoDB 4 driver API.</description> |
| |
| <properties> |
| <!-- OSGi and JPMS options --> |
| <Fragment-Host>org.apache.logging.log4j.core</Fragment-Host> |
| <!-- Dependency versions --> |
| <mongodb4.version>4.11.5</mongodb4.version> |
| <slf4j.version>2.0.17</slf4j.version> |
| </properties> |
| |
| <dependencyManagement> |
| <dependencies> |
| |
| <dependency> |
| <groupId>org.mongodb</groupId> |
| <artifactId>bson</artifactId> |
| <version>${mongodb4.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.mongodb</groupId> |
| <artifactId>mongodb-driver-core</artifactId> |
| <version>${mongodb4.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.mongodb</groupId> |
| <artifactId>mongodb-driver-sync</artifactId> |
| <version>${mongodb4.version}</version> |
| </dependency> |
| |
| </dependencies> |
| </dependencyManagement> |
| |
| <dependencies> |
| |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-api</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-core</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.mongodb</groupId> |
| <artifactId>bson</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.mongodb</groupId> |
| <artifactId>mongodb-driver-core</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.mongodb</groupId> |
| <artifactId>mongodb-driver-sync</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-api-test</artifactId> |
| <scope>test</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-core-test</artifactId> |
| <scope>test</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-lang3</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-api</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| </dependencies> |
| |
| <build> |
| <plugins> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| </plugin> |
| |
| </plugins> |
| </build> |
| |
| <profiles> |
| <profile> |
| |
| <id>docker</id> |
| |
| <!-- |
| ~ Only the `ubuntu` CI runners have access to Docker |
| --> |
| <activation> |
| <os> |
| <family>linux</family> |
| </os> |
| <property> |
| <name>env.CI</name> |
| <value>true</value> |
| </property> |
| </activation> |
| |
| <build> |
| <plugins> |
| |
| <plugin> |
| <groupId>io.fabric8</groupId> |
| <artifactId>docker-maven-plugin</artifactId> |
| <configuration> |
| <verbose>all</verbose> |
| <startParallel>true</startParallel> |
| <autoCreateCustomNetworks>true</autoCreateCustomNetworks> |
| <images> |
| <image> |
| <alias>mongo</alias> |
| <name>mongo:latest</name> |
| <run> |
| <ports> |
| <!-- |
| ~ Binds an ephemeral port on the host to port 27017 in the container. |
| ~ Assigns the value of the port to the `mongo.port` property. |
| --> |
| <port>localhost:mongo.port:27017</port> |
| </ports> |
| </run> |
| </image> |
| </images> |
| </configuration> |
| <executions> |
| <execution> |
| <id>start-mongo</id> |
| <goals> |
| <goal>start</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>stop-mongo</id> |
| <goals> |
| <goal>stop</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-failsafe-plugin</artifactId> |
| <dependencies> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-engine</artifactId> |
| <version>${junit-jupiter.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-nop</artifactId> |
| <version>${slf4j.version}</version> |
| </dependency> |
| </dependencies> |
| <executions> |
| <execution> |
| <goals> |
| <goal>integration-test</goal> |
| <goal>verify</goal> |
| </goals> |
| <configuration> |
| <reuseForks>true</reuseForks> |
| <includes> |
| <include>**/*IT.java</include> |
| </includes> |
| <systemPropertyVariables> |
| <!-- The `mongo.port` variable is created by `docker-maven-plugin` --> |
| <log4j.mongo.port>${mongo.port}</log4j.mongo.port> |
| </systemPropertyVariables> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| </plugins> |
| </build> |
| |
| </profile> |
| </profiles> |
| |
| </project> |