interacto-javafx-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.interacto</groupId> <artifactId>interacto-javafx-test</artifactId> <version>4.3.1</version> </dependency>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <name>Interacto Test JavaFX</name> <groupId>io.github.interacto</groupId> <artifactId>interacto-javafx-test</artifactId> <version>4.3.1</version> <packaging>jar</packaging> <description>Testing Interacto JFX code</description> <url>https://interacto.github.io</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <junit.version>5.6.0</junit.version> <jfx.version>11.0.2</jfx.version> <java.version>11</java.version> </properties> <licenses> <license> <name>The GNU GPL3 license</name> <url>https://www.gnu.org/licenses/gpl-3.0.en.html</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>DiverSE research group</name> <url>http://www.diverse-team.fr</url> </organization> <developers> <developer> <name>Arnaud Blouin</name> </developer> </developers> <issueManagement> <system>GitHub</system> <url>https://github.com/interacto/interacto-javafx-test/issues</url> </issueManagement> <scm> <url>https://github.com/interacto/interacto-javafx-test</url> <connection>scm:git:https://github.com/interacto/interacto-javafx-test.git</connection> <developerConnection>scm:git:git@github.com:interacto/interacto-javafx-test.git</developerConnection> <tag>HEAD</tag> </scm> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>interacto-public-snapshot</id> <name>Maven Repository for Interacto Snapshots</name> <url>http://maven.inria.fr/artifactory/malai-public-snapshot</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <release>${java.version}</release> <compilerArgs combine.children="append"> <arg>-XDcompilePolicy=simple</arg> <arg>-Xplugin:ErrorProne -Xep:InvalidParam:ERROR -Xep:InvalidTag:ERROR -Xep:InvalidThrows:ERROR -Xep:TypeParameterNaming:ERROR -Xep:ClassNamedLikeTypeParameter:ERROR -Xep:EqualsBrokenForNull:ERROR -Xep:RedundantThrows:ERROR -Xep:WildcardImport:ERROR -Xep:LambdaFunctionalInterface:ERROR -Xep:StringSplitter:OFF -Xep:DefaultCharset:OFF -XepExcludedPaths:.*/(generated-sources|test)/.*</arg> </compilerArgs> <annotationProcessorPaths> <path> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_core</artifactId> <version>2.3.2</version> </path> </annotationProcessorPaths> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M4</version> <configuration> <useModulePath>false</useModulePath> <argLine>@{argLine} -Xmx4000m -Dglass.platform=Monocle -Dheadless.geometry=1280x1024-32 -Djava.awt.headless=true -Dtestfx.robot=glass -Dtestfx.headless=true -Dprism.order=sw</argLine> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.5</version> <executions> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>post-unit-test</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.1.0</version> <configuration> <sourceDirectories> <sourceDirectory>src/main/java</sourceDirectory> <sourceDirectory>src/test/java</sourceDirectory> </sourceDirectories> <failsOnError>true</failsOnError> <configLocation>checkstyle.xml</configLocation> <consoleOutput>true</consoleOutput> <linkXRef>false</linkXRef> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>checkstyle</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>8.29</version> </dependency> </dependencies> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>3.1.12.2</version> <configuration> <includeTests>false</includeTests> <effort>Max</effort> <threshold>Low</threshold> <excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> <execution> <id>findbugs-test-compile</id> <phase>test-compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs</artifactId> <version>4.0.0-RC1</version> <scope>compile</scope> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <configuration> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>deploy</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>io.github.interacto</groupId> <artifactId>interacto-javafx</artifactId> <version>4.3.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.13.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.2.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>28.2-jre</version> </dependency> </dependencies> <repositories> <repository> <id>mavenInriaSnapshot</id> <name>http://maven.inria.fr-snapshots</name> <url>http://maven.inria.fr/artifactory/malai-public-snapshot</url> <snapshots><enabled>true</enabled></snapshots> <releases><enabled>false</enabled></releases> </repository> </repositories> </project>