logchange-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.logchange</groupId> <artifactId>logchange-core</artifactId> <version>1.19.7</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>dev.logchange</groupId> <artifactId>logchange</artifactId> <version>1.19.7</version> </parent> <artifactId>logchange-core</artifactId> <name>logchange core</name> <description> A core library responsible for processing changelogs. It enables reading, writing, and analyzing change data in a format compatible with logchange. It includes tools for validating and processing changelog files, as well as mechanisms for managing their structure. </description> <properties> <jackson.version>2.19.1</jackson.version> <Java-Markdown-Generator.version>1.3.2</Java-Markdown-Generator.version> <commons-text.version>1.13.1</commons-text.version> <maven-artifact.version>3.9.11</maven-artifact.version> <commons-compress.version>1.27.1</commons-compress.version> </properties> <dependencies> <dependency> <groupId>dev.logchange</groupId> <artifactId>logchange-utils</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>dev.logchange</groupId> <artifactId>logchange-md</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>${commons-text.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>${maven-artifact.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>${commons-compress.version}</version> </dependency> <dependency> <groupId>com.hubspot.jinjava</groupId> <artifactId>jinjava</artifactId> <version>${jinjava.version}</version> </dependency> <!-- TESTS --> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito-core.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xmlunit</groupId> <artifactId>xmlunit-assertj3</artifactId> <version>2.10.3</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> </plugins> </build> <profiles> <profile> <id>pitest</id> <build> <plugins> <plugin> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>