bunyan-java-v2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.mastfrog</groupId>
<artifactId>bunyan-java-v2</artifactId>
<version>2.9.7</version>
</dependency><?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<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>com.mastfrog</groupId>
<artifactId>mastfrog-parent</artifactId>
<version>2.9.7</version>
<relativePath/>
</parent>
<artifactId>bunyan-java-v2</artifactId>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>util-collections</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>util-time</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>util-function</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>util-fileformat</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jackson-configuration</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>util-streams</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>9</maven.compiler.source>
<maven.compiler.target>9</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M3</version>
<configuration>
<!-- <useFile>false</useFile> -->
<parallelMavenExecution>true</parallelMavenExecution>
<perCoreThreadCount>4</perCoreThreadCount>
<threadCount>8</threadCount>
<reuseForks>false</reuseForks>
<trimStackTrace>false</trimStackTrace>
<systemPropertyVariables>
<unit.test>true</unit.test>
<forkNumber>${surefire.forkNumber}</forkNumber>
<!-- <bunyan.debug>true</bunyan.debug> -->
<disable.console.logger>true</disable.console.logger>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>