pitest-kotlin-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.arcmutate</groupId> <artifactId>pitest-kotlin-plugin</artifactId> <version>1.4.3</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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.arcmutate</groupId> <artifactId>pitest-kotlin-plugin-parent</artifactId> <version>1.4.3</version> </parent> <groupId>com.arcmutate</groupId> <artifactId>pitest-kotlin-plugin</artifactId> <version>1.4.3</version> <name>pitest-kotlin-plugin</name> <description>Kotlin support for pitest</description> <licenses> <license> <name>CDG Pitest Licence</name> <url>https://docs.arcmutate.com/licence</url> <distribution>repo</distribution> <comments>Usage requires the purchase (or grant) of a licence key</comments> </license> </licenses> <dependencies> <dependency> <groupId>org.pitest</groupId> <artifactId>pitest</artifactId> <version>1.19.0</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.pitest</groupId> <artifactId>pitest-entry</artifactId> <version>1.19.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.8.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-params</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-engine</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.1.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.pitest</groupId> <artifactId>pitest</artifactId> <version>1.19.0</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.pitest</groupId> <artifactId>pitest-entry</artifactId> <version>1.19.0</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test-junit</artifactId> <version>2.1.21</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>kotlin-test</artifactId> <groupId>org.jetbrains.kotlin</groupId> </exclusion> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.22.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.pitest.quickbuilder</groupId> <artifactId>quickbuilder</artifactId> <version>1.2</version> <scope>test</scope> </dependency> <dependency> <groupId>nl.jqno.equalsverifier</groupId> <artifactId>equalsverifier</artifactId> <version>3.13</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-core</artifactId> <version>1.5.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>kotlinx-coroutines-core-jvm</artifactId> <groupId>org.jetbrains.kotlinx</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.arrow-kt</groupId> <artifactId>arrow-core-jvm</artifactId> <version>1.0.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>arrow-continuations-jvm</artifactId> <groupId>io.arrow-kt</groupId> </exclusion> <exclusion> <artifactId>arrow-annotations-jvm</artifactId> <groupId>io.arrow-kt</groupId> </exclusion> <exclusion> <artifactId>animal-sniffer-annotations</artifactId> <groupId>org.codehaus.mojo</groupId> </exclusion> <exclusion> <artifactId>kotlin-stdlib-common</artifactId> <groupId>org.jetbrains.kotlin</groupId> </exclusion> <exclusion> <artifactId>kotlin-stdlib-jdk8</artifactId> <groupId>org.jetbrains.kotlin</groupId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <configuration> <args> <arg>-Xskip-metadata-version-check</arg> </args> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/repository/**</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>com.arcmutate.licence</pattern> <shadedPattern>com.arcmutate.kotlin.licence</shadedPattern> </relocation> </relocations> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> </transformers> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> </plugin> </plugins> </build> </project>