From notifications-return-32391-archive-asf-public=cust-asf.ponee.io@ant.apache.org Fri Dec 14 10:55:38 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 9B873180645 for ; Fri, 14 Dec 2018 10:55:37 +0100 (CET) Received: (qmail 19059 invoked by uid 500); 14 Dec 2018 09:55:36 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 19050 invoked by uid 99); 14 Dec 2018 09:55:36 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2018 09:55:36 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5D1E3E12BB; Fri, 14 Dec 2018 09:55:36 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jaikiran@apache.org To: notifications@ant.apache.org Message-Id: <1fd143112cfb47abbd08f8c8217a9aa3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: ant git commit: Update the manual of junitlauncher task as well as add a note in WHATSNEW about the changed class names of that task Date: Fri, 14 Dec 2018 09:55:36 +0000 (UTC) Repository: ant Updated Branches: refs/heads/master 41eb0d922 -> 7b29e8ff8 Update the manual of junitlauncher task as well as add a note in WHATSNEW about the changed class names of that task Project: http://git-wip-us.apache.org/repos/asf/ant/repo Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/7b29e8ff Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/7b29e8ff Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/7b29e8ff Branch: refs/heads/master Commit: 7b29e8ff8643b6a0ebb6e53927544cb149c19c01 Parents: 41eb0d9 Author: Jaikiran Pai Authored: Fri Dec 14 15:24:56 2018 +0530 Committer: Jaikiran Pai Committed: Fri Dec 14 15:24:56 2018 +0530 ---------------------------------------------------------------------- WHATSNEW | 11 +++++++++-- manual/Tasks/junitlauncher.html | 18 ++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant/blob/7b29e8ff/WHATSNEW ---------------------------------------------------------------------- diff --git a/WHATSNEW b/WHATSNEW index 9229d48..d07846d 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -8,6 +8,13 @@ Changes that could break older environments: supporting Java Advanced Imaging are removed; imageio task (based on ImageIO and AWT) is provided as a replacement. + * junitlauncher task has changed the class names and package names of + the task as well as some of the supporting classes of that task. If + any code depended on these class or package names, they will have to + be updated to reference these newly named classes. This however, + doesn't impact build scripts if their reference to junitlauncher task + was merely through the use of the element. + Fixed bugs: ----------- @@ -46,8 +53,8 @@ Other changes: * the selector has a new built-in algorithm 'lastmodified' which computes a value based upon the lastmodified time of the file. - * junitlauncher task now supports forking and can be used with JaCoCo - (see https://github.com/jacoco/jacoco/issues/673). + * junitlauncher task now supports running tests in a forked JVM. More + details available in the junitlauncher task manual. * signjar and verifyjar now support the -providerName, -providerClass and -providerArg command line options of keytool via new attributes. http://git-wip-us.apache.org/repos/asf/ant/blob/7b29e8ff/manual/Tasks/junitlauncher.html ---------------------------------------------------------------------- diff --git a/manual/Tasks/junitlauncher.html b/manual/Tasks/junitlauncher.html index 1eb8b6b..18d563e 100644 --- a/manual/Tasks/junitlauncher.html +++ b/manual/Tasks/junitlauncher.html @@ -576,6 +576,24 @@ the new JVM instance that will be created to launch the tests. than this configured value, then the JVM is killed No + + includeJUnitPlatformLibraries + If set to true, then the jar files that make up the + JUnit platform, will be included in the runtime classpath of the forked + JVM. If set to false, then the configured classpath + of this task, which will be made available to the runtime classpath of the forked + JVM, is expected to contain the JUnit platform library jars + No. Value defaults to true. + + + includeAntRuntimeLibraries + If set to true, then the jar files that make up the + Ant runtime, will be included in the runtime classpath of the forked + JVM. If set to false, then the configured classpath + of this task, which will be made available to the runtime classpath of the forked + JVM, is expected to contain the Ant runtime jars + No. Value defaults to true. + The fork element allows the following nested elements: