[GitHub] [ant] tkowalcz commented on pull request #197: Handling forked VM timeout in a similar way to junit ant task

2023-01-16 Thread GitBox
tkowalcz commented on PR #197: URL: https://github.com/apache/ant/pull/197#issuecomment-1383728622 Thanks for review. I will make changes as you suggested and of course write a test. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to G

[GitHub] [ant] tkowalcz commented on a diff in pull request #197: Handling forked VM timeout in a similar way to junit ant task

2023-01-16 Thread GitBox
tkowalcz commented on code in PR #197: URL: https://github.com/apache/ant/pull/197#discussion_r1071004085 ## src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/confined/JUnitLauncherTask.java: ## @@ -330,7 +330,20 @@ private void forkTest(final TestDefinition test) {

[GitHub] [ant] tkowalcz commented on a diff in pull request #197: Handling forked VM timeout in a similar way to junit ant task

2023-01-16 Thread GitBox
tkowalcz commented on code in PR #197: URL: https://github.com/apache/ant/pull/197#discussion_r1071003296 ## src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/confined/JUnitLauncherTask.java: ## @@ -330,7 +330,20 @@ private void forkTest(final TestDefinition test) {

[GitHub] [ant] jaikiran commented on pull request #197: Handling forked VM timeout in a similar way to junit ant task

2023-01-12 Thread GitBox
jaikiran commented on PR #197: URL: https://github.com/apache/ant/pull/197#issuecomment-1381175943 Thank you Tomasz for this PR. I think this change looks fine. Could you add a test case to verify this change works as expected. We have a junitlauncher test class at `src/tests/junit/org/apa

[GitHub] [ant] jaikiran commented on a diff in pull request #197: Handling forked VM timeout in a similar way to junit ant task

2023-01-12 Thread GitBox
jaikiran commented on code in PR #197: URL: https://github.com/apache/ant/pull/197#discussion_r1068816591 ## src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/confined/JUnitLauncherTask.java: ## @@ -330,7 +330,20 @@ private void forkTest(final TestDefinition test) {

[GitHub] [ant] jaikiran commented on a diff in pull request #197: Handling forked VM timeout in a similar way to junit ant task

2023-01-12 Thread GitBox
jaikiran commented on code in PR #197: URL: https://github.com/apache/ant/pull/197#discussion_r1068816123 ## src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/confined/JUnitLauncherTask.java: ## @@ -330,7 +330,20 @@ private void forkTest(final TestDefinition test) {

[GitHub] [ant] tkowalcz opened a new pull request, #197: Handling forked VM timeout in a similar way as failed test

2023-01-04 Thread GitBox
tkowalcz opened a new pull request, #197: URL: https://github.com/apache/ant/pull/197 so that settings like haltonfailure have effect. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specifi

[GitHub] [ant] dependabot[bot] opened a new pull request, #196: Bump commons-net from 3.8.0 to 3.9.0 in /src/etc/poms/ant-commons-net

2022-12-05 Thread GitBox
dependabot[bot] opened a new pull request, #196: URL: https://github.com/apache/ant/pull/196 Bumps commons-net from 3.8.0 to 3.9.0. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-net:commons-net&package

[GitHub] [ant] bodewig commented on pull request #194: Names end before the first NULL (not the last)

2022-11-28 Thread GitBox
bodewig commented on PR #194: URL: https://github.com/apache/ant/pull/194#issuecomment-1330216852 Good catch, thank you. I could try to turn the byte array into a string, catch the exception and then keep searching for encoded NULs later. But even then it might just fail for so

[GitHub] [ant] keithc-ca commented on pull request #194: Names end before the first NULL (not the last)

2022-11-28 Thread GitBox
keithc-ca commented on PR #194: URL: https://github.com/apache/ant/pull/194#issuecomment-1329179830 That's an interesting idea, but it has the potential to misidentify the end of a multi-byte encoding. For example, `"Ā!"` = `"\u0100!"` is encoded by UTF16 as { 1, 0, 0, 33 }. The null se

[GitHub] [ant] bodewig commented on pull request #194: Names end before the first NULL (not the last)

2022-11-26 Thread GitBox
bodewig commented on PR #194: URL: https://github.com/apache/ant/pull/194#issuecomment-1328088190 it seems e04fbe7ff works for our tests. I thought about letting the encoding tell us what a NUL would look like and then search for that, this seems to work even though it was more complex than

[GitHub] [ant] bodewig commented on pull request #194: Names end before the first NULL (not the last)

2022-11-25 Thread GitBox
bodewig commented on PR #194: URL: https://github.com/apache/ant/pull/194#issuecomment-1327750192 well, in the end the tar format is not meant to store file names in the name field with a multi-byte encoding. The few docs that one can find talk about "local variant of ASCII" and the UTF16 t

[GitHub] [ant] keithc-ca commented on pull request #194: Names end before the first NULL (not the last)

2022-11-24 Thread GitBox
keithc-ca commented on PR #194: URL: https://github.com/apache/ant/pull/194#issuecomment-1326867522 > `ZipEncoding` might be a bit too simplistic Yes, I think so. I explored the idea of just decoding the whole byte array, but that will fail if there's a bad number of nulls at the end

[GitHub] [ant] bodewig commented on pull request #194: Names end before the first NULL (not the last)

2022-11-19 Thread GitBox
bodewig commented on PR #194: URL: https://github.com/apache/ant/pull/194#issuecomment-1320928103 actually this breaks support for file names using multi-byte encodings where NULs may just be part of a multi-byte sequence and not signal the end of the name. You can see this by running

[GitHub] [ant] jaikiran commented on pull request #195: Fix detection of java.specification.version

2022-11-16 Thread GitBox
jaikiran commented on PR #195: URL: https://github.com/apache/ant/pull/195#issuecomment-1318135936 > I'll also check why my testing of my previous commit didn't catch the 1.8 version issue For the record - one of the test jobs did catch this issue for 1.8 version, I just hadn't caugh

[GitHub] [ant] jaikiran merged pull request #195: Fix detection of java.specification.version

2022-11-16 Thread GitBox
jaikiran merged PR #195: URL: https://github.com/apache/ant/pull/195 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org For

[GitHub] [ant] jaikiran commented on pull request #195: Fix detection of java.specification.version

2022-11-16 Thread GitBox
jaikiran commented on PR #195: URL: https://github.com/apache/ant/pull/195#issuecomment-1317878895 Thank you @keithc-ca for this change. I will run some CI test before merging (I'll also check why my testing of my previous commit didn't catch the 1.8 version issue). -- This is an automat

[GitHub] [ant] keithc-ca opened a new pull request, #195: Fix detection of java.specification.version

2022-11-16 Thread GitBox
keithc-ca opened a new pull request, #195: URL: https://github.com/apache/ant/pull/195 The existing use of `tr` doesn't distinguish between Java 8 and Java 18; see https://github.com/apache/ant/commit/bbe6859b2f57a2c9dcb51e269527f3c18a74aa1d#commitcomment-90131350 - this fixes that. -- T

[GitHub] [ant] bodewig commented on pull request #194: Names end before the first NULL (not the last)

2022-11-07 Thread GitBox
bodewig commented on PR #194: URL: https://github.com/apache/ant/pull/194#issuecomment-1305971189 thank you! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe,

[GitHub] [ant] bodewig closed pull request #184: Bugs are Fixed

2022-11-07 Thread GitBox
bodewig closed pull request #184: Bugs are Fixed URL: https://github.com/apache/ant/pull/184 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubsc

[GitHub] [ant] keithc-ca commented on pull request #194: Names end before the first NULL (not the last)

2022-11-07 Thread GitBox
keithc-ca commented on PR #194: URL: https://github.com/apache/ant/pull/194#issuecomment-1305963866 Thanks for merging this. > We'd like to credit you in CONTRIBUTORS and contributors.xml Please use ``` Keith W. Campbell ``` -- This is a

[GitHub] [ant] bodewig merged pull request #194: Names end before the first NULL (not the last)

2022-11-07 Thread GitBox
bodewig merged PR #194: URL: https://github.com/apache/ant/pull/194 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org For

[GitHub] [ant] bodewig commented on pull request #194: Names end before the first NULL (not the last)

2022-11-07 Thread GitBox
bodewig commented on PR #194: URL: https://github.com/apache/ant/pull/194#issuecomment-1305954729 I should have asked my five year younger self wether I remember why the code is what it is :-) - see https://github.com/apache/commons-compress/pull/54 I'll merge this PR right away. We'd

[GitHub] [ant] qf28 commented on pull request #194: Names end before the first NULL (not the last)

2022-11-07 Thread GitBox
qf28 commented on PR #194: URL: https://github.com/apache/ant/pull/194#issuecomment-1305727468 Hi -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: de

[GitHub] [ant] keithc-ca opened a new pull request, #194: Names end before the first NULL (not the last)

2022-10-26 Thread GitBox
keithc-ca opened a new pull request, #194: URL: https://github.com/apache/ant/pull/194 This fixes parsing of archives produced on macOS. See the discussion in https://github.com/ibmruntimes/Semeru-Runtimes/issues/15. -- This is an automated message from the Apache Git Service. To respo

[GitHub] [ant] bodewig closed pull request #193: Update defaults.properties

2022-10-24 Thread GitBox
bodewig closed pull request #193: Update defaults.properties URL: https://github.com/apache/ant/pull/193 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail:

[GitHub] [ant] bodewig commented on pull request #193: Update defaults.properties

2022-10-24 Thread GitBox
bodewig commented on PR #193: URL: https://github.com/apache/ant/pull/193#issuecomment-1290054573 I have no idea what you are trying to do but you are certainly not at the correct repo here. -- This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] [ant] ppkarwasz commented on pull request #192: Add a Log4j2 build listener

2022-08-08 Thread GitBox
ppkarwasz commented on PR #192: URL: https://github.com/apache/ant/pull/192#issuecomment-1207894653 > We are maintaining things we accepted more than twentytwo years ago (`` anyone :-) ) just to give a perspective on what maintenance involves. @bodewig, I perfectly understand the pro

[GitHub] [ant] vlsi commented on pull request #192: Add a Log4j2 build listener

2022-08-08 Thread GitBox
vlsi commented on PR #192: URL: https://github.com/apache/ant/pull/192#issuecomment-1207773563 > My reluctance to adding new dependencies for things that could be add-ons +1 > I'd say the same thing about an SLF4J based logger implementation Well, at least slf4j allows pl

[GitHub] [ant] bodewig commented on pull request #192: Add a Log4j2 build listener

2022-08-08 Thread GitBox
bodewig commented on PR #192: URL: https://github.com/apache/ant/pull/192#issuecomment-1207757018 I'd say the same thing about an SLF4J based logger implementation. My reluctance to adding new dependencies for things that could be add-ons - maybe just a separate antlib under the umbrella of

[GitHub] [ant] jaikiran commented on pull request #191: Fix retrieval from non-default repositories

2022-08-07 Thread GitBox
jaikiran commented on PR #191: URL: https://github.com/apache/ant/pull/191#issuecomment-1207597394 > I can reproduce this locally and believe the key is to remove jai from the local m2 repo. Maybe the CI server has stored jai there as well @jaikiran ? That's very likely. Thank you @pp

[GitHub] [ant] rgoers commented on pull request #192: Add a Log4j2 build listener

2022-08-07 Thread GitBox
rgoers commented on PR #192: URL: https://github.com/apache/ant/pull/192#issuecomment-1207497855 @vlsi What a pointless comment. ANY software can have a CVE. For the record, the Log4j 2 API has never had any CVE's reported against it. From a functionality point of view it is exactly the sam

[GitHub] [ant] ppkarwasz commented on pull request #192: Add a Log4j2 build listener

2022-08-07 Thread GitBox
ppkarwasz commented on PR #192: URL: https://github.com/apache/ant/pull/192#issuecomment-1207497790 This would be just a marketing problem: Log4j2 Core's vulnerabilities never affected the Log4j2 API as well as Logback's vulnerabilities never affected SLF4J. In the case of a new CVE against

[GitHub] [ant] vlsi commented on pull request #192: Add a Log4j2 build listener

2022-08-07 Thread GitBox
vlsi commented on PR #192: URL: https://github.com/apache/ant/pull/192#issuecomment-1207492798 >I can help maintaining it. Well, it would be nice to avoid dependency on log4j2 if possible since any new CVE would trigger cases like "Ant is using vulnerable log4j" -- This is an autom

[GitHub] [ant] ppkarwasz commented on pull request #192: Add a Log4j2 build listener

2022-08-07 Thread GitBox
ppkarwasz commented on PR #192: URL: https://github.com/apache/ant/pull/192#issuecomment-1207491526 @bodewig, I understand the reluctance of adding yet another component with external dependencies to maintain, but I believe this should be a low maintenance listener. If you consider adding i

[GitHub] [ant] vlsi commented on pull request #192: Add a Log4j2 build listener

2022-08-07 Thread GitBox
vlsi commented on PR #192: URL: https://github.com/apache/ant/pull/192#issuecomment-1207443229 I agree, it does not make sense adding dependency on log4j2. It would be better adding a slf4j build listener. -- This is an automated message from the Apache Git Service. To respond to the me

[GitHub] [ant] bodewig commented on pull request #191: Fix retrieval from non-default repositories

2022-08-07 Thread GitBox
bodewig commented on PR #191: URL: https://github.com/apache/ant/pull/191#issuecomment-1207394065 see b9272756f Even if your name had been present I would have asked :-) . Not all people want their name to show up in a list like ours. -- This is an automated message from the Apache

[GitHub] [ant] ppkarwasz commented on pull request #191: Fix retrieval from non-default repositories

2022-08-07 Thread GitBox
ppkarwasz commented on PR #191: URL: https://github.com/apache/ant/pull/191#issuecomment-1207390997 @bodewig, I didn't notice I never filled up the Github profile with my real name. You can use `Piotr P. Karwasz`. -- This is an automated message from the Apache Git Service. To respond to

[GitHub] [ant] bodewig commented on pull request #191: Fix retrieval from non-default repositories

2022-08-07 Thread GitBox
bodewig commented on PR #191: URL: https://github.com/apache/ant/pull/191#issuecomment-1207382355 @ppkarwasz many thanks, what name do you want us to use when we add you to the contributors file? -- This is an automated message from the Apache Git Service. To respond to the message, pleas

[GitHub] [ant] bodewig merged pull request #191: Fix retrieval from non-default repositories

2022-08-07 Thread GitBox
bodewig merged PR #191: URL: https://github.com/apache/ant/pull/191 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org For

[GitHub] [ant] bodewig commented on pull request #191: Fix retrieval from non-default repositories

2022-08-07 Thread GitBox
bodewig commented on PR #191: URL: https://github.com/apache/ant/pull/191#issuecomment-1207381957 I can reproduce this locally and believe the key is to remove jai from the local m2 repo. Maybe the CI server has stored jai there as well @jaikiran ? -- This is an automated message from the

[GitHub] [ant] bodewig commented on pull request #192: Add a Log4j2 build listener

2022-08-07 Thread GitBox
bodewig commented on PR #192: URL: https://github.com/apache/ant/pull/192#issuecomment-1207380896 Many thank @ppkarwasz in particular since you found all the places that need to be touched when adding a new dependency. :-) TBH I don't really see any reason why this should be part of t

[GitHub] [ant] ppkarwasz opened a new pull request, #192: Add a Log4j2 build listener

2022-08-06 Thread GitBox
ppkarwasz opened a new pull request, #192: URL: https://github.com/apache/ant/pull/192 This PR adds a Log4j2 build listener as a modern alternative to the obsolete Log4j 1.x listener. The Log4j2 listener differs in some choices from the Log4j counterpart. Most notably: * the

[GitHub] [ant] ppkarwasz commented on pull request #191: Fix retrieval from non-default repositories

2022-08-05 Thread GitBox
ppkarwasz commented on PR #191: URL: https://github.com/apache/ant/pull/191#issuecomment-1206746776 Hi @jaikiran, Thank you for the prompt answer. If the `` element is outside of `` task, my Ant tries to retrieve the artifact from the default repositories only (i.e. Maven Central).

[GitHub] [ant] jaikiran commented on pull request #191: Fix retrieval from non-default repositories

2022-08-05 Thread GitBox
jaikiran commented on PR #191: URL: https://github.com/apache/ant/pull/191#issuecomment-1206507678 Hello @ppkarwasz, thank you for this change. It looks OK to me, but I'm surprised that without this change, the fetch fails for you. I tested it locally (without this change) and our CI instan

[GitHub] [ant] ppkarwasz opened a new pull request, #191: Fix retrieval from non-default repositories

2022-08-04 Thread GitBox
ppkarwasz opened a new pull request, #191: URL: https://github.com/apache/ant/pull/191 Since the `` tag is not in the scope of the `` target, fetching artifacts from repositories different from Maven Central fails (e.g. JAI). -- This is an automated message from the Apache Git Service.

[GitHub] [ant] bodewig merged pull request #190: Backport fix for bz-63438 to 1.9.x

2022-06-25 Thread GitBox
bodewig merged PR #190: URL: https://github.com/apache/ant/pull/190 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org For

[GitHub] [ant] sfllaw commented on pull request #173: Allow ant:get task to disable authentication on redirect.

2022-06-02 Thread GitBox
sfllaw commented on PR #173: URL: https://github.com/apache/ant/pull/173#issuecomment-1145284283 I encountered this bug when using `` with HTTP Basic Auth to supply a username and password. If the server responds with a 3xx redirect to an S3 bucket, Amazon will respond with a 400 Bad Reques

[GitHub] [ant] sfllaw commented on pull request #173: Allow ant:get task to disable authentication on redirect.

2022-06-02 Thread GitBox
sfllaw commented on PR #173: URL: https://github.com/apache/ant/pull/173#issuecomment-1145242151 82f5edcf49002943773a165464e152b1d75a68a8 changed the default value of `authenticateOnRedirect` from true to false, which is backwards incompatible but is actually proper behaviour. -- This is

[GitHub] [ant] jaikiran commented on pull request #186: Fix integer overflow when parsing SOURCE_DATE_EPOCH

2022-05-20 Thread GitBox
jaikiran commented on PR #186: URL: https://github.com/apache/ant/pull/186#issuecomment-1133509843 I've received confirmation that CLA is not a must. I've also tested your changes in this PR and they look good and I've now merged it. Thank you for this fix and the test case and apologies fo

[GitHub] [ant] jaikiran closed pull request #186: Fix integer overflow when parsing SOURCE_DATE_EPOCH

2022-05-20 Thread GitBox
jaikiran closed pull request #186: Fix integer overflow when parsing SOURCE_DATE_EPOCH URL: https://github.com/apache/ant/pull/186 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific commen

[GitHub] [ant] jaikiran commented on pull request #186: Fix integer overflow when parsing SOURCE_DATE_EPOCH

2022-05-20 Thread GitBox
jaikiran commented on PR #186: URL: https://github.com/apache/ant/pull/186#issuecomment-1132923161 > I've added a test case that demonstrates the issue. Test case is more complex than the actual fix. Does it mean I have to sign Apache CLA? I have not signed it yet. Hello @mizdebs

[GitHub] [ant] kleini commented on pull request #186: Fix integer overflow when parsing SOURCE_DATE_EPOCH

2022-05-20 Thread GitBox
kleini commented on PR #186: URL: https://github.com/apache/ant/pull/186#issuecomment-1132665670 We're having an issue, with this, too. [tstamp] Honouring environment variable SOURCE_DATE_EPOCH which has been set to 1651903417 Date of 12/12/1969 07:10 PM results in negative

[GitHub] [ant] dependabot[bot] opened a new pull request, #189: Bump xercesImpl from 2.12.0 to 2.12.2 in /src/etc/poms/ant

2022-05-16 Thread GitBox
dependabot[bot] opened a new pull request, #189: URL: https://github.com/apache/ant/pull/189 Bumps xercesImpl from 2.12.0 to 2.12.2. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=xerces:xercesImpl&package-mana

[GitHub] [ant] dependabot[bot] opened a new pull request, #188: Bump xercesImpl from 2.12.0 to 2.12.2 in /src/etc/poms/ant-junit

2022-05-16 Thread GitBox
dependabot[bot] opened a new pull request, #188: URL: https://github.com/apache/ant/pull/188 Bumps xercesImpl from 2.12.0 to 2.12.2. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=xerces:xercesImpl&package-mana

[GitHub] [ant] mizdebsk commented on pull request #186: Fix integer overflow when parsing SOURCE_DATE_EPOCH

2022-04-23 Thread GitBox
mizdebsk commented on PR #186: URL: https://github.com/apache/ant/pull/186#issuecomment-1107528178 I've added a test case that demonstrates the issue. Test case is more complex than the actual fix. Does it mean I have to sign Apache CLA? I have not signed it yet. The test case is

[GitHub] [ant] mizdebsk commented on pull request #186: Fix integer overflow when parsing SOURCE_DATE_EPOCH

2022-04-23 Thread GitBox
mizdebsk commented on PR #186: URL: https://github.com/apache/ant/pull/186#issuecomment-1107514169 Sure, I will add a test case. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comme

[GitHub] [ant] jaikiran commented on pull request #186: Fix integer overflow when parsing SOURCE_DATE_EPOCH

2022-04-22 Thread GitBox
jaikiran commented on PR #186: URL: https://github.com/apache/ant/pull/186#issuecomment-1107119527 Hello @mizdebsk, thank you for contributing this fix. Would you be interested in adding a test case for this change so that this doesn't regress in future. We have an existing test class

[GitHub] [ant] mizdebsk opened a new pull request, #186: Fix integer overflow when parsing SOURCE_DATE_EPOCH

2022-04-22 Thread GitBox
mizdebsk opened a new pull request, #186: URL: https://github.com/apache/ant/pull/186 Parsing SOURCE_DATE_EPOCH environment variable by Tstamp leads to integer overflow and produces wrong result. The following example illustrates that: TODAY is ${TODAY} This

[GitHub] [ant-ivy] zhanglei-1987 opened a new pull request, #98: Allow customization ‘dataFilePattern’

2022-04-14 Thread GitBox
zhanglei-1987 opened a new pull request, #98: URL: https://github.com/apache/ant-ivy/pull/98 Allow customization ‘dataFilePattern’ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific co

[GitHub] [ant] bodewig commented on pull request #185: Update selectors.html

2022-04-09 Thread GitBox
bodewig commented on PR #185: URL: https://github.com/apache/ant/pull/185#issuecomment-1094072471 thank you -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe,

[GitHub] [ant] bodewig merged pull request #185: Update selectors.html

2022-04-09 Thread GitBox
bodewig merged PR #185: URL: https://github.com/apache/ant/pull/185 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org For

[GitHub] [ant] chagmed opened a new pull request, #185: Update selectors.html

2022-04-08 Thread GitBox
chagmed opened a new pull request, #185: URL: https://github.com/apache/ant/pull/185 Correct small typo in selectors.html -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To

[GitHub] [ant] bodewig commented on pull request #184: Bugs are Fixed

2022-04-04 Thread GitBox
bodewig commented on PR #184: URL: https://github.com/apache/ant/pull/184#issuecomment-1088251930 I'm not really sure what to make of this: * please don't change the format of files. Either change whitespace or code but not both. Otherwise the PR creates too much noise to tell the rea

[GitHub] [ant] tsmock commented on pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-02-10 Thread GitBox
tsmock commented on pull request #175: URL: https://github.com/apache/ant/pull/175#issuecomment-1034936800 I ended up updating the JUnit5 versions to get some of their newer testing methods for testing JUnit extensions. In any case, from what _I_ know, there shouldn't be any effect on `ant

[GitHub] [ant] jaikiran commented on pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-02-09 Thread GitBox
jaikiran commented on pull request #175: URL: https://github.com/apache/ant/pull/175#issuecomment-1034445095 Hello Taylor, I just merged the initial commit that is part of this PR. I left out the tests for now since it even had changed some junit versions. I'll look into the testing part s

[GitHub] [ant] asfgit closed pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-02-09 Thread GitBox
asfgit closed pull request #175: URL: https://github.com/apache/ant/pull/175 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant.a

[GitHub] [ant] tsmock commented on pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-02-09 Thread GitBox
tsmock commented on pull request #175: URL: https://github.com/apache/ant/pull/175#issuecomment-1033872016 Do I need to do anything else for this PR? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go

[GitHub] [ant] bodewig closed pull request #181: BTP600 Assignment 1 Charmi change#2

2022-02-02 Thread GitBox
bodewig closed pull request #181: URL: https://github.com/apache/ant/pull/181 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant.

[GitHub] [ant] bodewig closed pull request #180: BTP600 Assignment 1 Charmi change#1

2022-02-02 Thread GitBox
bodewig closed pull request #180: URL: https://github.com/apache/ant/pull/180 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant.

[GitHub] [ant] bodewig closed pull request #183: BTP600 Assignment 1 Charmi change#4

2022-02-02 Thread GitBox
bodewig closed pull request #183: URL: https://github.com/apache/ant/pull/183 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant.

[GitHub] [ant] bodewig closed pull request #182: BTP600 Assignment 1 Charmi change#3

2022-02-02 Thread GitBox
bodewig closed pull request #182: URL: https://github.com/apache/ant/pull/182 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant.

[GitHub] [ant] bodewig closed pull request #178: BTP600 Assignment 1 - Charmi change#3

2022-01-29 Thread GitBox
bodewig closed pull request #178: URL: https://github.com/apache/ant/pull/178 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant.

[GitHub] [ant] bodewig closed pull request #179: BTP600 Assignment 1 - Charmi change#4

2022-01-29 Thread GitBox
bodewig closed pull request #179: URL: https://github.com/apache/ant/pull/179 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant.

[GitHub] [ant] bodewig closed pull request #177: BTP600 Assignment 1 - Charmi change#2

2022-01-29 Thread GitBox
bodewig closed pull request #177: URL: https://github.com/apache/ant/pull/177 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant.

[GitHub] [ant] bodewig commented on pull request #176: BTP600 Assignment 1 - Charmi

2022-01-29 Thread GitBox
bodewig commented on pull request #176: URL: https://github.com/apache/ant/pull/176#issuecomment-1024893091 @mominmalik33 please find a different place to play. It is trivial to set up your own repository at github instead of bothering "real" projects. -- This is an automated message fro

[GitHub] [ant] bodewig closed pull request #176: BTP600 Assignment 1 - Charmi

2022-01-29 Thread GitBox
bodewig closed pull request #176: URL: https://github.com/apache/ant/pull/176 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant.

[GitHub] [ant] tsmock commented on pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-01-27 Thread GitBox
tsmock commented on pull request #175: URL: https://github.com/apache/ant/pull/175#issuecomment-1023232685 > @tsmock I experienced the same problem and @jaikiran suggested to fetch necessary dependencies by running `ant -f fetch.xml -Ddest=optional` [1]. It actually helped me. > > [

[GitHub] [ant] azotcsit commented on pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-01-27 Thread GitBox
azotcsit commented on pull request #175: URL: https://github.com/apache/ant/pull/175#issuecomment-1022986551 @tsmock I experienced the same problem and @jaikiran suggested to fetch necessary dependencies by running `ant -f fetch.xml -Ddest=optional` [1]. It actually helped me. [

[GitHub] [ant] tsmock edited a comment on pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-01-26 Thread GitBox
tsmock edited a comment on pull request #175: URL: https://github.com/apache/ant/pull/175#issuecomment-106543 > This PR looks fine to me. Thank you for fixing this. Given that we have had odd issues in this area with XML content, do you think it's possible to add a test case to reprodu

[GitHub] [ant] tsmock commented on pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-01-26 Thread GitBox
tsmock commented on pull request #175: URL: https://github.com/apache/ant/pull/175#issuecomment-106543 > This PR looks fine to me. Thank you for fixing this. Given that we have had odd issues in this area with XML content, do you think it's possible to add a test case to reproduce this

[GitHub] [ant] tsmock commented on a change in pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-01-26 Thread GitBox
tsmock commented on a change in pull request #175: URL: https://github.com/apache/ant/pull/175#discussion_r792663467 ## File path: src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/LegacyXmlResultFormatter.java ## @@ -298,8 +298,7 @@ private void writeFailed(final

[GitHub] [ant] jaikiran commented on pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-01-25 Thread GitBox
jaikiran commented on pull request #175: URL: https://github.com/apache/ant/pull/175#issuecomment-1021851685 This PR looks fine to me. Thank you for fixing this. Given that we have had odd issues in this area with XML content, do you think it's possible to add a test case to reproduce this

[GitHub] [ant] jaikiran commented on a change in pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-01-25 Thread GitBox
jaikiran commented on a change in pull request #175: URL: https://github.com/apache/ant/pull/175#discussion_r792306165 ## File path: src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/LegacyXmlResultFormatter.java ## @@ -298,8 +298,7 @@ private void writeFailed(fina

[GitHub] [ant] azotcsit commented on a change in pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-01-25 Thread GitBox
azotcsit commented on a change in pull request #175: URL: https://github.com/apache/ant/pull/175#discussion_r791701322 ## File path: src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/LegacyXmlResultFormatter.java ## @@ -298,8 +298,9 @@ private void writeFailed(fina

[GitHub] [ant] azotcsit commented on a change in pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-01-25 Thread GitBox
azotcsit commented on a change in pull request #175: URL: https://github.com/apache/ant/pull/175#discussion_r791701322 ## File path: src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/LegacyXmlResultFormatter.java ## @@ -298,8 +298,9 @@ private void writeFailed(fina

[GitHub] [ant] tsmock commented on a change in pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-01-24 Thread GitBox
tsmock commented on a change in pull request #175: URL: https://github.com/apache/ant/pull/175#discussion_r790853748 ## File path: src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/LegacyXmlResultFormatter.java ## @@ -298,8 +298,9 @@ private void writeFailed(final

[GitHub] [ant] tsmock commented on a change in pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-01-24 Thread GitBox
tsmock commented on a change in pull request #175: URL: https://github.com/apache/ant/pull/175#discussion_r790853748 ## File path: src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/LegacyXmlResultFormatter.java ## @@ -298,8 +298,9 @@ private void writeFailed(final

[GitHub] [ant] tsmock commented on a change in pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-01-24 Thread GitBox
tsmock commented on a change in pull request #175: URL: https://github.com/apache/ant/pull/175#discussion_r790853748 ## File path: src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/LegacyXmlResultFormatter.java ## @@ -298,8 +298,9 @@ private void writeFailed(final

[GitHub] [ant] azotcsit commented on a change in pull request #175: junitlauncher - Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-01-21 Thread GitBox
azotcsit commented on a change in pull request #175: URL: https://github.com/apache/ant/pull/175#discussion_r789921289 ## File path: src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/LegacyXmlResultFormatter.java ## @@ -298,8 +298,9 @@ private void writeFailed(fina

[GitHub] [ant] tsmock opened a new pull request #175: Fix an issue in LegacyXmlResultFormatter with ]]> in stacktraces

2022-01-21 Thread GitBox
tsmock opened a new pull request #175: URL: https://github.com/apache/ant/pull/175 Bugzilla Report 65833 This occurs when the stacktrace message contains ]]>, which is the CDATA end code. There is no escape, so it must be replaced with `]]` + `]]>` + `

[GitHub] [ant-ivy] jaikiran commented on pull request #96: IVY-1632: Use valid value for HTTP header "Accept".

2022-01-14 Thread GitBox
jaikiran commented on pull request #96: URL: https://github.com/apache/ant-ivy/pull/96#issuecomment-1013608057 Thank you @bernolanger for this contribution. I've merged it. It looks like this is your first contribution to this project. I will add "Berno Langer" to the list of contributors,

[GitHub] [ant-ivy] jaikiran merged pull request #96: IVY-1632: Use valid value for HTTP header "Accept".

2022-01-14 Thread GitBox
jaikiran merged pull request #96: URL: https://github.com/apache/ant-ivy/pull/96 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@a

[GitHub] [ant-ivy] didiksupriadi41 opened a new pull request #97: Remove unused dependencies

2022-01-14 Thread GitBox
didiksupriadi41 opened a new pull request #97: URL: https://github.com/apache/ant-ivy/pull/97 `com.jcraft#jsch.agentproxy` doesn't provides any jar -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go t

[GitHub] [ant] azotcsit closed pull request #169: junitlauncher - Improved extensibility capabilities for formatters

2022-01-11 Thread GitBox
azotcsit closed pull request #169: URL: https://github.com/apache/ant/pull/169 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@ant

[GitHub] [ant] azotcsit commented on pull request #169: junitlauncher - Improved extensibility capabilities for formatters

2022-01-11 Thread GitBox
azotcsit commented on pull request #169: URL: https://github.com/apache/ant/pull/169#issuecomment-1009962932 Closing as per the discussion on the dev mail list: https://lists.apache.org/thread/2v8l95fwh0sgz0vlgqcf1rpd88swf3pv -- This is an automated message from the Apache Git Service. T

[GitHub] [ant] bodewig commented on pull request #170: Make Changes to Support FTPS AntTaskDef that extends FTP but uses FTP…

2021-12-29 Thread GitBox
bodewig commented on pull request #170: URL: https://github.com/apache/ant/pull/170#issuecomment-1002523492 thank you -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To un

[GitHub] [ant] sonyDeswal commented on pull request #170: Make Changes to Support FTPS AntTaskDef that extends FTP but uses FTP…

2021-12-28 Thread GitBox
sonyDeswal commented on pull request #170: URL: https://github.com/apache/ant/pull/170#issuecomment-1002418266 Thanks Stefan. It works. Please use my Name as Santosh R. Dhariwal, if possible. Regards,Santosh Dhariwal On Thursday, December 16, 2021, 11:34:15 PM GMT+5:30, Stefan

[GitHub] [ant] bodewig commented on pull request #173: Allow ant:get task to disable authentication on redirect.

2021-12-23 Thread GitBox
bodewig commented on pull request #173: URL: https://github.com/apache/ant/pull/173#issuecomment-1000436715 you are right @jaikiran, I'll change the default. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL ab

[GitHub] [ant-ivy] jaikiran commented on pull request #96: IVY-1632: Use valid value for HTTP header "Accept".

2021-12-22 Thread GitBox
jaikiran commented on pull request #96: URL: https://github.com/apache/ant-ivy/pull/96#issuecomment-130597 This looks OK to me. However, it looks like this PR didn't trigger a CI run, so I'll manually run our tests to make sure this doesn't break anything, before merging this. --

  1   2   3   4   5   6   7   8   >