stryker4s-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.stryker-mutator</groupId>
<artifactId>stryker4s-maven-plugin</artifactId>
<version>0.19.1</version>
</dependency><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">
<modelVersion>4.0.0</modelVersion>
<groupId>io.stryker-mutator</groupId>
<artifactId>stryker4s-maven-plugin</artifactId>
<version>0.19.1</version>
<packaging>maven-plugin</packaging>
<name>Stryker4s Maven plugin</name>
<description>Stryker4s, the mutation testing framework for Scala.</description>
<url>https://stryker-mutator.io/</url>
<inceptionYear>2019</inceptionYear>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://github.com/stryker-mutator/stryker4s/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>hugo-vrijswijk</name>
<id>Hugo</id>
<url>https://github.com/hugo-vrijswijk</url>
</developer>
<developer>
<name>legopiraat</name>
<id>Legopiraat</id>
<url>https://github.com/legopiraat</url>
</developer>
</developers>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/stryker-mutator/stryker4s/issues</url>
</issueManagement>
<scm>
<connection>scm:git:https://github.com/stryker-mutator/stryker4s.git</connection>
<developerConnection>scm:git:ssh://git@github.com:stryker-mutator/stryker4s.git</developerConnection>
<url>https://github.com/stryker-mutator/stryker4s</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<prerequisites>
<maven>3.3.9</maven>
</prerequisites>
<properties>
<encoding>UTF-8</encoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Scala versions -->
<scala.version>2.13.16</scala.version>
<scala.compat.version>2.13</scala.compat.version>
<scala-maven.version>4.9.6</scala-maven.version>
</properties>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala.version}</version>
</dependency>
<dependency>
<groupId>io.stryker-mutator</groupId>
<artifactId>stryker4s-core_${scala.compat.version}</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Maven plugin -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.9.11</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.9.11</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-invoker</artifactId>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.15.1</version>
<scope>provided</scope>
</dependency>
<!-- Test -->
<dependency>
<groupId>io.stryker-mutator</groupId>
<artifactId>stryker4s-testkit_${scala.compat.version}</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.17</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.17</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main/scala</sourceDirectory>
<testSourceDirectory>src/test/scala</testSourceDirectory>
<plugins>
<plugin>
<groupId>io.stryker-mutator</groupId>
<artifactId>stryker4s-maven-plugin</artifactId>
<version>0.19.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.15.1</version>
</plugin>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>${scala-maven.version}</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
<execution>
<id>generate-sources</id>
<goals>
<goal>doc-jar</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
<configuration>
<args>
<arg>-encoding</arg>
<arg>utf8</arg>
<arg>-explaintypes</arg>
<arg>-feature</arg>
<arg>-language:existentials</arg>
<arg>-language:experimental.macros</arg>
<arg>-language:higherKinds</arg>
<arg>-language:implicitConversions</arg>
<arg>-unchecked</arg>
<arg>-Xcheckinit</arg>
<arg>-Xlint:adapted-args</arg>
<arg>-Xlint:constant</arg>
<arg>-Xlint:delayedinit-select</arg>
<arg>-Xlint:deprecation</arg>
<arg>-Xlint:doc-detached</arg>
<arg>-Xlint:inaccessible</arg>
<arg>-Xlint:infer-any</arg>
<arg>-Xlint:missing-interpolator</arg>
<arg>-Xlint:nullary-unit</arg>
<arg>-Xlint:option-implicit</arg>
<arg>-Xlint:package-object-classes</arg>
<arg>-Xlint:poly-implicit-overload</arg>
<arg>-Xlint:private-shadow</arg>
<arg>-Xlint:stars-align</arg>
<arg>-Xlint:strict-unsealed-patmat</arg>
<arg>-Xlint:type-parameter-shadow</arg>
<arg>-Xlint:-byname-implicit</arg>
<arg>-Wunused:nowarn</arg>
<arg>-Wdead-code</arg>
<arg>-Wextra-implicit</arg>
<arg>-Wnumeric-widen</arg>
<arg>-Wunused:implicits</arg>
<arg>-Wunused:explicits</arg>
<arg>-Wunused:imports</arg>
<arg>-Wunused:locals</arg>
<arg>-Wunused:params</arg>
<arg>-Wunused:patvars</arg>
<arg>-Wunused:privates</arg>
<arg>-Wvalue-discard</arg>
<arg>-Vimplicits</arg>
<arg>-Vtype-diffs</arg>
<arg>-Xfatal-warnings</arg>
<arg>-Xsource:3-cross</arg>
<arg>-Yrelease:8</arg>
</args>
</configuration>
</plugin>
<!-- Test -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.4</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>strykermutator</keyname>
<!-- For gpg2 -->
<useAgent>true</useAgent>
<gpgArguments>
<arg>--batch</arg>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>