META-INF.maven.org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-impl-gradle.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shrinkwrap-resolver-impl-gradle Show documentation
Show all versions of shrinkwrap-resolver-impl-gradle Show documentation
Impl to Resolve Dependencies from a Gradle Backend
The newest version!
<?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/maven-v4_0_0.xsd"> <!-- Parent --> <parent> <groupId>org.jboss.shrinkwrap.resolver</groupId> <artifactId>shrinkwrap-resolver-parent</artifactId> <version>3.3.2</version> <relativePath>../../pom.xml</relativePath> </parent> <!-- Model Version --> <modelVersion>4.0.0</modelVersion> <!-- Artifact Configuration --> <artifactId>shrinkwrap-resolver-impl-gradle</artifactId> <name>ShrinkWrap Resolver Gradle Impl</name> <description>Impl to Resolve Dependencies from a Gradle Backend</description> <!-- Dependencies --> <dependencies> <dependency> <groupId>org.jboss.shrinkwrap</groupId> <artifactId>shrinkwrap-impl-base</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.gradle</groupId> <artifactId>gradle-tooling-api</artifactId> <version>${version.org.gradle.gradle-tooling-api}</version> </dependency> </dependencies> <build> <plugins> <!-- adding test-jar so we can check classpath resolution --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> </plugins> </build> <repositories> <!-- Gradle repository --> <repository> <id>jfrog</id> <name>jfrog</name> <url>https://repo.gradle.org/gradle/libs-releases/</url> </repository> </repositories> </project>