Repository: nifi Updated Branches: refs/heads/0.x 4966a8585 -> 5af157668
NIFI-1881 Added surefire-junit4 dependency to the surefire build plugin configuration to force Surefire to run tests with JUnit. This specifically addresses the issue as it relates to version 0.x. For 1.0.0, the PR for NIFI-1799 includes this same POM update. This closes #449. Signed-off-by: Andy LoPresto <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/5af15766 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/5af15766 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/5af15766 Branch: refs/heads/0.x Commit: 5af157668d4f1667747c5d8c7341bf60dfe6e355 Parents: 4966a85 Author: Jeff Storck <[email protected]> Authored: Mon May 16 17:10:37 2016 -0400 Committer: Andy LoPresto <[email protected]> Committed: Mon May 16 15:12:32 2016 -0700 ---------------------------------------------------------------------- pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/5af15766/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 8f89f9c..4146ae7 100644 --- a/pom.xml +++ b/pom.xml @@ -1269,6 +1269,13 @@ language governing permissions and limitations under the License. --> <redirectTestOutputToFile>true</redirectTestOutputToFile> <argLine combine.children="append">-Xmx1G -Djava.net.preferIPv4Stack=true</argLine> </configuration> + <dependencies> + <dependency> + <groupId>org.apache.maven.surefire</groupId> + <artifactId>surefire-junit4</artifactId> + <version>2.18</version> + </dependency> + </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId>
