Merge pull request #9207 from eclipse/ag_junit4git

Run tests only affected by last commit
master
Adam Gibson 2021-03-06 09:20:14 +09:00 committed by GitHub
commit 61f6ce9fd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

17
pom.xml
View File

@ -314,6 +314,7 @@
<neoitertools.version>1.0.0</neoitertools.version> <neoitertools.version>1.0.0</neoitertools.version>
<rxjava.version>2.2.0</rxjava.version> <rxjava.version>2.2.0</rxjava.version>
<kotlin.version>1.4.30</kotlin.version> <kotlin.version>1.4.30</kotlin.version>
<junit4git.version>1.3</junit4git.version>
</properties> </properties>
@ -410,6 +411,12 @@
<artifactId>netty-codec-dns</artifactId> <artifactId>netty-codec-dns</artifactId>
<version>${netty.version}</version> <version>${netty.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.walkmod</groupId>
<artifactId>junit4git</artifactId>
<version>${junit4git.version}</version>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
@ -791,6 +798,10 @@
<classifier>${dl4j-test-resources.classifier}</classifier> <classifier>${dl4j-test-resources.classifier}</classifier>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.walkmod</groupId>
<artifactId>junit4git</artifactId>
</dependency>
</dependencies> </dependencies>
</profile> </profile>
<profile> <profile>
@ -1105,6 +1116,12 @@
<environmentVariables> <environmentVariables>
<DL4J_INTEGRATION_TESTS>true</DL4J_INTEGRATION_TESTS> <DL4J_INTEGRATION_TESTS>true</DL4J_INTEGRATION_TESTS>
</environmentVariables> </environmentVariables>
<properties>
<property>
<name>listener</name>
<value>org.walkmod.junit4git.junit4.Junit4GitListener</value>
</property>
</properties>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>