test-gradle-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.intershop.gradle.test</groupId> <artifactId>test-gradle-plugin</artifactId> <version>5.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.intershop.gradle.test</groupId> <artifactId>test-gradle-plugin</artifactId> <version>5.1.0</version> <name>test-gradle-plugin</name> <description>Gradle test library - test extension for Gradle plugin builds</description> <url>https://github.com/IntershopCommunicationsAG/test-gradle-plugin</url> <organization> <name>Intershop Communications AG</name> <url>http://intershop.com</url> </organization> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>m-raab</id> <name>M. Raab</name> <email>mraab@intershop.de</email> </developer> </developers> <scm> <connection>https://github.com/IntershopCommunicationsAG/test-gradle-plugin.git</connection> <developerConnection>git@github.com:IntershopCommunicationsAG/test-gradle-plugin.git</developerConnection> <url>https://github.com/IntershopCommunicationsAG/test-gradle-plugin</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-bom</artifactId> <version>2.3-groovy-3.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-core</artifactId> <scope>compile</scope> <exclusions> <exclusion> <groupId>org.codehaus.groovy</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-junit4</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.17.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>4.0.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>4.0.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>runtime</scope> </dependency> </dependencies> </project>