base
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.arcmutate</groupId> <artifactId>base</artifactId> <version>1.4.2</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>arcmutate-base-parent</artifactId> <version>1.4.2</version> </parent> <groupId>com.arcmutate</groupId> <artifactId>base</artifactId> <version>1.4.2</version> <name>Arcmutate base plugin</name> <description>pitest improved</description> <licenses> <license> <name>Arcmutate 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> </dependency> <dependency> <groupId>org.pitest</groupId> <artifactId>pitest-entry</artifactId> <version>1.19.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.arcmutate</groupId> <artifactId>pitest-annotations</artifactId> <version>2.2.0</version> <scope>provided</scope> </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.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.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.23.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>nl.jqno.equalsverifier</groupId> <artifactId>equalsverifier</artifactId> <version>3.14.3</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>com.google.jimfs</groupId> <artifactId>jimfs</artifactId> <version>1.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.3.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> <version>3.6.7</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>reactive-streams</artifactId> <groupId>org.reactivestreams</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <version>3.6.7</version> <scope>test</scope> </dependency> <dependency> <groupId>io.reactivex.rxjava3</groupId> <artifactId>rxjava</artifactId> <version>3.1.8</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>reactive-streams</artifactId> <groupId>org.reactivestreams</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.reactivex.rxjava2</groupId> <artifactId>rxjava</artifactId> <version>2.2.21</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>reactive-streams</artifactId> <groupId>org.reactivestreams</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>32.0.1-jre</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>failureaccess</artifactId> <groupId>com.google.guava</groupId> </exclusion> <exclusion> <artifactId>listenablefuture</artifactId> <groupId>com.google.guava</groupId> </exclusion> <exclusion> <artifactId>jsr305</artifactId> <groupId>com.google.code.findbugs</groupId> </exclusion> <exclusion> <artifactId>checker-qual</artifactId> <groupId>org.checkerframework</groupId> </exclusion> <exclusion> <artifactId>error_prone_annotations</artifactId> <groupId>com.google.errorprone</groupId> </exclusion> <exclusion> <artifactId>j2objc-annotations</artifactId> <groupId>com.google.j2objc</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.pitest.quickbuilder</groupId> <artifactId>quickbuilder</artifactId> <version>1.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <release>${java.release}</release> </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.extended.licence</shadedPattern> </relocation> </relocations> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> </plugin> </plugins> </build> </project>