stacktale
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.gabrielbbaldez</groupId>
<artifactId>stacktale</artifactId>
<version>1.1.0</version>
</dependency><?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.gabrielbbaldez</groupId>
<artifactId>stacktale-parent</artifactId>
<version>1.1.0</version>
</parent>
<artifactId>stacktale</artifactId>
<packaging>jar</packaging>
<name>stacktale</name>
<description>Stack traces that tell the tale — a Logback appender that turns Java errors into AI-ready reports.</description>
<properties>
<stacktale.module.name>io.github.gabrielbbaldez.stacktale.logback</stacktale.module.name>
</properties>
<dependencies>
<dependency>
<groupId>io.github.gabrielbbaldez</groupId>
<artifactId>stacktale-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>${jmh.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>${jmh.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- expose each dependency jar as ${groupId:artifactId:type} so the JPMS IT can
point a ModuleFinder at the real core jar (with its Automatic-Module-Name). -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>resolve-module-jars</id>
<phase>initialize</phase>
<goals>
<goal>properties</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- JpmsModulePathIT needs the packaged jars, so it runs post-package via failsafe -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.5.6</version>
<configuration>
<systemPropertyVariables>
<stacktale.core.jar>${io.github.gabrielbbaldez:stacktale-core:jar}</stacktale.core.jar>
<stacktale.logback.jar>${project.build.directory}/${project.build.finalName}.jar</stacktale.logback.jar>
</systemPropertyVariables>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>