Skip to content

Commit 7825d83

Browse files
authored
Merge pull request #1 from handist/develop
Develop
2 parents c04d25b + 826648c commit 7825d83

File tree

4 files changed

+476
-383
lines changed

4 files changed

+476
-383
lines changed

pom.xml

Lines changed: 68 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,69 @@
1-
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2-
<modelVersion>4.0.0</modelVersion>
3-
<groupId>handist</groupId>
4-
<artifactId>mpi-junit</artifactId>
5-
<version>v1.0</version>
6-
<name>mpi-junit</name>
7-
<description>Custom Junit4 runner which makes it possible to run Junit tests in a distributed environment with MPI calls made between processes.</description>
8-
9-
<properties>
10-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11-
<maven.compiler.source>1.8</maven.compiler.source>
12-
<maven.compiler.target>1.8</maven.compiler.target>
13-
</properties>
14-
<repositories>
15-
<repository>
16-
<id>jitpack.io</id>
17-
<url>https://jitpack.io</url>
18-
</repository>
19-
</repositories>
20-
21-
<dependencies>
22-
<dependency>
23-
<groupId>junit</groupId>
24-
<artifactId>junit</artifactId>
25-
<version>4.13</version>
26-
<scope>provided</scope>
27-
</dependency>
28-
<dependency>
29-
<groupId>com.github.handist</groupId>
30-
<artifactId>MPJ</artifactId>
31-
<version>v1</version>
32-
<scope>provided</scope>
33-
<optional>true</optional>
34-
</dependency>
35-
<dependency>
36-
<groupId>com.github.handist</groupId> <!-- Corresponds to github.com/handist/apgas repository -->
37-
<artifactId>apgas</artifactId>
38-
<version>v1</version>
39-
<scope>provided</scope>
40-
</dependency>
41-
</dependencies>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>handist</groupId>
6+
<artifactId>mpi-junit</artifactId>
7+
<version>v1.0</version>
8+
<name>mpi-junit</name>
9+
<description>Custom Junit4 runner which makes it possible to run Junit tests in a distributed environment with MPI calls made between processes.</description>
10+
11+
<properties>
12+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13+
<maven.compiler.source>1.8</maven.compiler.source>
14+
<maven.compiler.target>1.8</maven.compiler.target>
15+
</properties>
16+
<repositories>
17+
<repository>
18+
<id>jitpack.io</id>
19+
<url>https://jitpack.io</url>
20+
</repository>
21+
</repositories>
22+
23+
<dependencies>
24+
<dependency>
25+
<groupId>junit</groupId>
26+
<artifactId>junit</artifactId>
27+
<version>4.13</version>
28+
<scope>provided</scope>
29+
</dependency>
30+
<dependency>
31+
<groupId>com.github.handist</groupId>
32+
<artifactId>MPJ</artifactId>
33+
<version>v1</version>
34+
<scope>provided</scope>
35+
<optional>true</optional>
36+
</dependency>
37+
<dependency>
38+
<groupId>com.github.handist</groupId> <!-- Corresponds to github.com/handist/apgas repository -->
39+
<artifactId>apgas</artifactId>
40+
<version>v1</version>
41+
<scope>provided</scope>
42+
</dependency>
43+
</dependencies>
44+
45+
<build>
46+
<plugins>
47+
<plugin>
48+
<groupId>org.jacoco</groupId>
49+
<artifactId>jacoco-maven-plugin</artifactId>
50+
<version>0.8.5</version>
51+
<executions>
52+
<execution>
53+
<id>default-prepare-agent</id>
54+
<goals>
55+
<goal>prepare-agent</goal>
56+
</goals>
57+
</execution>
58+
<execution>
59+
<id>default-report</id>
60+
<phase>test</phase>
61+
<goals>
62+
<goal>report</goal>
63+
</goals>
64+
</execution>
65+
</executions>
66+
</plugin>
67+
</plugins>
68+
</build>
4269
</project>

src/main/java/handist/mpijunit/Configuration.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ public class Configuration {
7575
* In the {@link #MPI_IMPL_NATIVE} implementation, the <em>mpirun</em> command will be used.
7676
* You can set the options of that command by setting the {@value #MPIRUN_OPTION}
7777
* variable.
78-
* <p>
79-
* In the
8078
*/
8179
public static final String MPI_IMPL = "mpirunner.mpiImpl";
8280

0 commit comments

Comments
 (0)