All Downloads are FREE. Search and download functionalities are using the official Maven repository.

owland.freedumbytes.maven.dependencies.log-utils.5.0.1.source-code.pom.xml Maven / Gradle / Ivy

<?xml version="1.0" encoding="UTF-8"?>

<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>nl.demon.shadowland.freedumbytes.maven.dependencies</groupId>
    <artifactId>utilities</artifactId>
    <version>5.0.1</version>
  </parent>

  <artifactId>log-utils</artifactId>

  <name>${organizationName} Log Utilities</name>
  <description>Grouping Log Utilities.</description>
  <inceptionYear>2018</inceptionYear>

  <properties>
    <jacoco.append>true</jacoco.append>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>nl.demon.shadowland.freedumbytes.maven.dependencies</groupId>
      <artifactId>test</artifactId>
      <type>pom</type>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>nl.demon.shadowland.freedumbytes.maven.dependencies</groupId>
      <artifactId>log</artifactId>
      <type>pom</type>
      <scope>provided</scope>
    </dependency>

    <dependency>
      <groupId>nl.demon.shadowland.freedumbytes.maven.dependencies</groupId>
      <artifactId>log-test-utils</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>nl.demon.shadowland.freedumbytes.maven.dependencies</groupId>
      <artifactId>test-utils</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <excludes>
            <exclude>**/LogManagerTest.java</exclude>
            <exclude>**/Slf4jLogManagerTest.java</exclude>
          </excludes>
        </configuration>
        <executions>
          <execution>
            <id>surefire-jul</id>
            <phase>test</phase>
            <goals>
              <goal>test</goal>
            </goals>
            <configuration>
              <includes>
                <include>**/LogManagerTest.java</include>
              </includes>
              <excludes>
                <exclude>**/Slf4jLogManagerTest.java</exclude>
              </excludes>
              <argLine>-Djava.util.logging.manager=java.util.logging.LogManager ${argLine}</argLine>
            </configuration>
          </execution>
          <execution>
            <id>surefire-slf4j</id>
            <phase>test</phase>
            <goals>
              <goal>test</goal>
            </goals>
            <configuration>
              <includes>
                <include>**/Slf4jLogManagerTest.java</include>
              </includes>
              <excludes>
                <exclude>**/LogManagerTest.java</exclude>
              </excludes>
              <argLine>-Djava.util.logging.manager=nl.demon.shadowland.freedumbytes.java.util.logging.manager.Slf4jLogManager ${argLine}</argLine>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy