logchange-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.logchange</groupId> <artifactId>logchange-maven-plugin</artifactId> <version>1.19.2</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.2</version> </parent> <artifactId>logchange-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <description> A Maven plugin that integrates logchange functionalities into Maven-based projects. It automates the generation, validation, and updating of changelogs, ensuring consistent and accurate tracking of project changes. </description> <properties> <maven-core.version>3.9.9</maven-core.version> <maven-plugin-api.version>3.9.9</maven-plugin-api.version> <maven-plugin-annotations.version>3.15.1</maven-plugin-annotations.version> <maven-plugin-plugin.version>3.15.1</maven-plugin-plugin.version> <plexus-interactivity-api.version>1.4</plexus-interactivity-api.version> <!-- TESTS --> <maven-verifier.version>1.7.2</maven-verifier.version> <itf.version>0.13.1</itf.version> <commons-io.version>2.19.0</commons-io.version> </properties> <dependencies> <dependency> <groupId>dev.logchange</groupId> <artifactId>logchange-commands</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${maven-core.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven-plugin-api.version}</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven-plugin-annotations.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-interactivity-api</artifactId> <version>${plexus-interactivity-api.version}</version> </dependency> <!-- TESTS --> <dependency> <groupId>com.soebes.itf.jupiter.extension</groupId> <artifactId>itf-jupiter-extension</artifactId> <version>${itf.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.soebes.itf.jupiter.extension</groupId> <artifactId>itf-assertj</artifactId> <version>${itf.version}</version> <scope>test</scope> </dependency> <dependency> <!-- Verify file exists in tests --> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${maven-plugin-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>${maven-site-plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>com.soebes.itf.jupiter.extension</groupId> <artifactId>itf-maven-plugin</artifactId> <version>${itf.version}</version> <executions> <execution> <id>installing</id> <phase>pre-integration-test</phase> <goals> <goal>install</goal> <goal>resources-its</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.5.3</version> <configuration> <systemPropertyVariables> <maven.version>${maven.version}</maven.version> <maven.home>${maven.home}</maven.home> </systemPropertyVariables> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </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>