multithreadedtc-junit4
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.nruzic</groupId> <artifactId>multithreadedtc-junit4</artifactId> <version>1.0.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2007, University of Maryland --> <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>com.github.nruzic.commons.master</groupId> <artifactId>nruzic-commons-master</artifactId> <version>2.0.15</version> <relativePath /> </parent> <groupId>com.github.nruzic</groupId> <artifactId>multithreadedtc-junit4</artifactId> <version>1.0.2</version> <name>MultithreadedTC</name> <url>http://github.com/nruzic/multithreadedtc-junit4</url> <properties> <checkstyle.failOnViolation>false</checkstyle.failOnViolation> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <licenses> <license> <name>The BSD License</name> <url>http://www.opensource.org/licenses/bsd-license.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://github.com/nruzic/multithreadedtc-junit4</url> <connection>scm:git:git@github.com:nruzic/multithreadedtc-junit4.git</connection> <developerConnection>scm:git:git@github.com:nruzic/multithreadedtc-junit4.git</developerConnection> <tag>multithreadedtc-junit4-1.0.2</tag> </scm> <developers> <developer> <id>nruzic</id> <name>Nikola Ruzic</name> <email>nikola.ruzic.dev@gmail.com</email> <url>https://github.com/nruzic</url> <roles> <role>Developer</role> </roles> </developer> </developers> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <doclint>none</doclint> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>11</source> <target>11</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-eclipse-plugin</artifactId> <version>2.10</version> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>false</downloadJavadocs> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.3</version> <configuration> <argLine>-Xmn1024m</argLine> <printSummary>true</printSummary> <reportFormat>plain</reportFormat> <forkMode>pertest</forkMode> <failIfNoTests>false</failIfNoTests> <testFailureIgnore>true</testFailureIgnore> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.6</version> </dependency> </dependencies> </project>