Files
2026-07-13 12:38:36 +08:00

123 lines
3.7 KiB
XML

<?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.nx.maven</groupId>
<artifactId>nx-parent</artifactId>
<version>0.0.17</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>nx-maven-parent</artifactId>
<packaging>pom</packaging>
<name>Nx Maven Parent</name>
<description>Parent POM for Nx Maven projects (batch-runner and nx-maven-plugin)</description>
<modules>
<module>shared</module>
<module>batch-runner-adapters</module>
<module>batch-runner</module>
<module>maven-plugin</module>
</modules>
<properties>
<!-- Skip deployment for this parent POM -->
<maven.install.skip>false</maven.install.skip>
<maven.deploy.skip>true</maven.deploy.skip>
<maven.gpg.skip>true</maven.gpg.skip>
</properties>
<dependencyManagement>
<dependencies>
<!-- Maven Invoker API for batch-runner -->
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-invoker</artifactId>
<version>3.1.0</version>
</dependency>
<!-- Gson for JSON parsing -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
</dependency>
<!-- SLF4J Simple -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- JGit for gitignore parsing -->
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>6.8.0.202311291450-r</version>
</dependency>
<!-- Plexus Utils for XML parsing -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.5.1</version>
</dependency>
<!-- Maven Plugin Testing Harness -->
<dependency>
<groupId>org.apache.maven.plugin-testing</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
<version>4.0.0-beta-4</version>
<scope>test</scope>
</dependency>
<!-- Snapshot Testing -->
<dependency>
<groupId>de.skuzzle.test</groupId>
<artifactId>snapshot-tests-junit5</artifactId>
<version>1.11.0</version>
<scope>test</scope>
</dependency>
<!-- JSON Serialization for Snapshots -->
<dependency>
<groupId>de.skuzzle.test</groupId>
<artifactId>snapshot-tests-json</artifactId>
<version>1.11.0</version>
<scope>test</scope>
</dependency>
<!-- JUnit 4 for Maven Plugin Testing Harness -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<!-- Maven Shade Plugin for uber JAR in batch-runner -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
</plugin>
<!-- Maven Flatten Plugin for publishing -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.6.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>