meta-tests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>meta-tests</artifactId> <version>2.23</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>io.github.solven-eu.cleanthat</groupId> <artifactId>aggregator-cleanthat</artifactId> <version>2.23</version> </parent> <artifactId>meta-tests</artifactId> <!-- `name` is required by Sonatype--> <name>${project.groupId}:${project.artifactId}</name> <description>Holds integration tests, to ensure hardcoded mutators are the same as the one that would be found with classpath-scanning (for GraalVM support).</description> <properties> <!-- <wrapper.version>1.0.17.RELEASE</wrapper.version> --> <maven.deploy.skip>true</maven.deploy.skip> <!-- The equivalent property for nexus-staging-maven-plugin --> <!-- https://github.com/sonatype/nexus-maven-plugins/blob/main/staging/maven-plugin/README.md --> <!-- Useless with central-publishing-maven-plugin? --> <!-- see excludeArtifacts in https://central.sonatype.org/publish/publish-portal-maven/ --> <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> </properties> <dependencies> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>annotations</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>any-language</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>code-cleaners</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>code-providers</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>config</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>git</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>github</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>gitlab</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>java</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>java-eclipse</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <!-- <dependency>--> <!-- <groupId>io.github.solven-eu.cleanthat</groupId>--> <!-- <artifactId>kotlin</artifactId>--> <!-- <version>${project.version}</version>--> <!-- <scope>test</scope>--> <!-- </dependency>--> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>lambda</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>local</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>cleanthat-maven-plugin</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>openrewrite</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>refactorer</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>refactorer-test-helpers</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>runnable</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>spotless</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.solven-eu.cleanthat</groupId> <artifactId>test-helpers</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <!-- https://stackoverflow.com/questions/1829904/is-there-a-way-to-ignore-a-single-findbugs-warning --> <groupId>com.google.code.findbugs</groupId> <artifactId>annotations</artifactId> <version>3.0.1u2</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.github.classgraph</groupId> <artifactId>classgraph</artifactId> <version>4.8.180</version> <scope>test</scope> </dependency> </dependencies> </project>