e.maven.toolbox.shared.0.3.2.source-code.pom.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2023-2024 Maveniverse Org. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html --> <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>eu.maveniverse.maven.toolbox</groupId> <artifactId>toolbox</artifactId> <version>0.3.2</version> </parent> <artifactId>shared</artifactId> <name>${project.groupId}:${project.artifactId}</name> <dependencies> <!-- MIMA + Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.jline</groupId> <artifactId>jansi-core</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>eu.maveniverse.maven.mima</groupId> <artifactId>context</artifactId> </dependency> <dependency> <groupId>eu.maveniverse.maven.mima.extensions</groupId> <artifactId>mmr</artifactId> </dependency> <!-- Maven --> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-settings</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model-builder</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-builder-support</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-repository-metadata</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </dependency> <!-- Resolver --> <dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-util</artifactId> <scope>provided</scope> </dependency> <!-- Search --> <dependency> <groupId>org.apache.maven.indexer</groupId> <artifactId>search-api</artifactId> </dependency> <dependency> <groupId>org.apache.maven.indexer</groupId> <artifactId>search-backend-remoterepository</artifactId> </dependency> <dependency> <groupId>org.apache.maven.indexer</groupId> <artifactId>search-backend-smo</artifactId> </dependency> <!-- Commons Compress (unpack) --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>eu.maveniverse.maven.mima.runtime</groupId> <artifactId>standalone-static-uber</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <scope>test</scope> </dependency> </dependencies> </project>