[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847608#comment-17847608
]
ASF GitHub Bot commented on MINVOKER-351:
-
elharo commented on PR #242:
URL:
h
elharo commented on PR #242:
URL:
https://github.com/apache/maven-invoker-plugin/pull/242#issuecomment-2119020002
I guess it depends on what it means when a NUL character or other C0 control
appears here. It might be fine to drop them or replace each one with a space,
especially if you don
michael-o commented on PR #242:
URL:
https://github.com/apache/maven-invoker-plugin/pull/242#issuecomment-2119019388
> > output:
> > ```
> > Exception in thread "main" java.lang.IllegalStateException: character 0
is not allowed in output
> > at
org.codehaus.plexus.util.xml.pull.M
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847607#comment-17847607
]
ASF GitHub Bot commented on MINVOKER-351:
-
michael-o commented on PR #242:
URL:
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847605#comment-17847605
]
ASF GitHub Bot commented on MINVOKER-351:
-
michael-o commented on code in PR #2
michael-o commented on code in PR #242:
URL:
https://github.com/apache/maven-invoker-plugin/pull/242#discussion_r1605818675
##
src/main/java/org/apache/maven/plugins/invoker/AbstractInvokerMojo.java:
##
@@ -1640,7 +1642,7 @@ private void runBuild(
}
} catc
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847604#comment-17847604
]
ASF GitHub Bot commented on MINVOKER-351:
-
elharo commented on PR #242:
URL:
h
elharo commented on PR #242:
URL:
https://github.com/apache/maven-invoker-plugin/pull/242#issuecomment-2119018051
> output:
>
> ```
> Exception in thread "main" java.lang.IllegalStateException: character 0 is
not allowed in output
>at
org.codehaus.plexus.util.xml.pull.
[
https://issues.apache.org/jira/browse/MSHARED-1398?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847603#comment-17847603
]
Jared Stehler commented on MSHARED-1398:
confirmed that fixed my original issue
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847594#comment-17847594
]
ASF GitHub Bot commented on MINVOKER-351:
-
michael-o commented on PR #242:
URL:
michael-o commented on PR #242:
URL:
https://github.com/apache/maven-invoker-plugin/pull/242#issuecomment-2118995261
And the value is indeed correct:
```java
Document doc2 =
DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(new
ByteArrayInputStream(w.toString().
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847593#comment-17847593
]
ASF GitHub Bot commented on MINVOKER-351:
-
michael-o commented on PR #242:
URL:
michael-o commented on PR #242:
URL:
https://github.com/apache/maven-invoker-plugin/pull/242#issuecomment-2118994193
I have now tested the IT with the patched Plexus XML. Output looks fine now:
```
[INFO] Running example.minvoker351.ExampleTest
� - name: NULL
- name: START OF HE
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847592#comment-17847592
]
ASF GitHub Bot commented on MINVOKER-351:
-
michael-o commented on PR #242:
URL:
michael-o commented on PR #242:
URL:
https://github.com/apache/maven-invoker-plugin/pull/242#issuecomment-2118989898
Naive upstream solution:
https://github.com/codehaus-plexus/plexus-xml/pull/28
--
This is an automated message from the Apache Git Service.
To respond to the message, plea
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847590#comment-17847590
]
ASF GitHub Bot commented on MINVOKER-351:
-
michael-o commented on PR #242:
URL:
michael-o commented on PR #242:
URL:
https://github.com/apache/maven-invoker-plugin/pull/242#issuecomment-2118981114
With `StringEscapeUtils`:
```
NULL: START
OF HEADING: START OF TEXT: END OF TEXT:
END OF TRANSMISSION: ENQUIRY:
ACKNOWLEDGE: BELL: BACKSPACE:
CHARACTER TABULATION:
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847587#comment-17847587
]
ASF GitHub Bot commented on MINVOKER-351:
-
michael-o commented on PR #242:
URL:
michael-o commented on PR #242:
URL:
https://github.com/apache/maven-invoker-plugin/pull/242#issuecomment-2118979631
Counterpart with Plexus:
```
MXSerializer sr = new MXSerializer();
sr.setOutput(System.out, "UTF-8");
sr.startDocument(null, Boolean.TRUE);
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847586#comment-17847586
]
ASF GitHub Bot commented on MINVOKER-351:
-
michael-o commented on PR #242:
URL:
michael-o commented on PR #242:
URL:
https://github.com/apache/maven-invoker-plugin/pull/242#issuecomment-2118973031
@elharo is right. This is how it should look like:
```java
public static void main(String[] args) throws
ParserConfigurationException, TransformerException {
[
https://issues.apache.org/jira/browse/DOXIASITETOOLS-340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847585#comment-17847585
]
ASF GitHub Bot commented on DOXIASITETOOLS-340:
---
michael-o commente
michael-o commented on PR #157:
URL:
https://github.com/apache/maven-doxia-sitetools/pull/157#issuecomment-2118953058
@kwin Is the change itself acceptable?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL abov
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847571#comment-17847571
]
ASF GitHub Bot commented on MINVOKER-351:
-
michael-o commented on code in PR #2
michael-o commented on code in PR #242:
URL:
https://github.com/apache/maven-invoker-plugin/pull/242#discussion_r1605818675
##
src/main/java/org/apache/maven/plugins/invoker/AbstractInvokerMojo.java:
##
@@ -1640,7 +1642,7 @@ private void runBuild(
}
} catc
[
https://issues.apache.org/jira/browse/DOXIASITETOOLS-340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847570#comment-17847570
]
ASF GitHub Bot commented on DOXIASITETOOLS-340:
---
michael-o commente
michael-o commented on PR #157:
URL:
https://github.com/apache/maven-doxia-sitetools/pull/157#issuecomment-2118881121
> This contradicts the description in
https://maven.apache.org/plugins/maven-site-plugin/examples/sitedescriptor.html#Title.
Issue created: https://issues.apache.org/
Michael Osipov created MSITE-1007:
-
Summary: Review "Configuring the Site Descriptor" for new site
model and behavior
Key: MSITE-1007
URL: https://issues.apache.org/jira/browse/MSITE-1007
Project: Mav
kwin commented on PR #1466:
URL: https://github.com/apache/maven/pull/1466#issuecomment-2118853443
No consensus here, therefore closing.
--
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 specif
kwin closed pull request #1466: Update artifact-handlers.apt
URL: https://github.com/apache/maven/pull/1466
--
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-ma
[
https://issues.apache.org/jira/browse/MNG-8097?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847553#comment-17847553
]
ASF GitHub Bot commented on MNG-8097:
-
kwin opened a new pull request, #529:
URL: https
kwin opened a new pull request, #529:
URL: https://github.com/apache/maven-site/pull/529
(with a related artifact handler)
--
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.
T
[
https://issues.apache.org/jira/browse/MNG-8097?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Konrad Windszus updated MNG-8097:
-
Description:
Currently often the dependency's type is being set to the extension and the
resolutio
[
https://issues.apache.org/jira/browse/DOXIASITETOOLS-340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847547#comment-17847547
]
ASF GitHub Bot commented on DOXIASITETOOLS-340:
---
michael-o commente
michael-o commented on PR #157:
URL:
https://github.com/apache/maven-doxia-sitetools/pull/157#issuecomment-2118842620
> This contradicts the description in
https://maven.apache.org/plugins/maven-site-plugin/examples/sitedescriptor.html#Title.
As a side note, this page needs a complet
[
https://issues.apache.org/jira/browse/MNG-8050?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Konrad Windszus closed MNG-8050.
> Same repositories IDs in settings.xml and POM are not detected
> --
[
https://issues.apache.org/jira/browse/MNG-8050?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Konrad Windszus resolved MNG-8050.
--
Fix Version/s: 4.0.0
4.0.0-beta-3
Resolution: Fixed
Fixed in
https://g
[
https://issues.apache.org/jira/browse/MNG-8050?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847539#comment-17847539
]
ASF GitHub Bot commented on MNG-8050:
-
kwin merged PR #1412:
URL: https://github.com/ap
kwin merged PR #1412:
URL: https://github.com/apache/maven/pull/1412
--
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: issues-unsubscr...@maven.apache.org
[
https://issues.apache.org/jira/browse/DOXIASITETOOLS-340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847537#comment-17847537
]
ASF GitHub Bot commented on DOXIASITETOOLS-340:
---
michael-o commente
michael-o commented on PR #157:
URL:
https://github.com/apache/maven-doxia-sitetools/pull/157#issuecomment-2118834522
> This contradicts the description in
https://maven.apache.org/plugins/maven-site-plugin/examples/sitedescriptor.html#Title.
Good catch, will update.
--
This is an
[
https://issues.apache.org/jira/browse/DOXIASITETOOLS-340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847533#comment-17847533
]
ASF GitHub Bot commented on DOXIASITETOOLS-340:
---
kwin commented on
kwin commented on PR #157:
URL:
https://github.com/apache/maven-doxia-sitetools/pull/157#issuecomment-2118832433
This contradicts the description in
https://maven.apache.org/plugins/maven-site-plugin/examples/sitedescriptor.html#Title.
--
This is an automated message from the Apache Git
[
https://issues.apache.org/jira/browse/MNG-8050?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847531#comment-17847531
]
ASF GitHub Bot commented on MNG-8050:
-
kwin commented on PR #1412:
URL: https://github.
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847528#comment-17847528
]
ASF GitHub Bot commented on MINVOKER-351:
-
elharo commented on code in PR #242:
elharo commented on code in PR #242:
URL:
https://github.com/apache/maven-invoker-plugin/pull/242#discussion_r1605791199
##
src/main/java/org/apache/maven/plugins/invoker/AbstractInvokerMojo.java:
##
@@ -1640,7 +1642,7 @@ private void runBuild(
}
} catch (
[
https://issues.apache.org/jira/browse/MJAR-310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847527#comment-17847527
]
ASF GitHub Bot commented on MJAR-310:
-
jansohn commented on PR #86:
URL: https://github
[
https://issues.apache.org/jira/browse/MJAR-310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847526#comment-17847526
]
ASF GitHub Bot commented on MJAR-310:
-
jansohn commented on PR #86:
URL: https://github
jansohn commented on PR #86:
URL: https://github.com/apache/maven-jar-plugin/pull/86#issuecomment-2118827018
> @jansohn can you try my proposition of fix: #87
I can test it on Tuesday but I doubt it will fix the problem.
--
This is an automated message from the Apache Git Service.
T
jansohn commented on PR #86:
URL: https://github.com/apache/maven-jar-plugin/pull/86#issuecomment-2118826793
> @jansohn - please look at comments in JIRA
https://issues.apache.org/jira/browse/MJAR-310
> It can be reasonable to fix a bug in plexus-utils
Makes sense but there are alr
[
https://issues.apache.org/jira/browse/MJAR-310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847522#comment-17847522
]
ASF GitHub Bot commented on MJAR-310:
-
jansohn commented on PR #86:
URL: https://github
jansohn commented on PR #86:
URL: https://github.com/apache/maven-jar-plugin/pull/86#issuecomment-2118823265
> @jansohn can you try my proposition of fix: #87
I'll only be back in the office on Tuesday to give it a try. But I'd be
surprised if this actually fixed the problem.
--
Th
[
https://issues.apache.org/jira/browse/MJAR-310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847518#comment-17847518
]
ASF GitHub Bot commented on MJAR-310:
-
slawekjaranowski commented on PR #86:
URL: https
slawekjaranowski commented on PR #86:
URL: https://github.com/apache/maven-jar-plugin/pull/86#issuecomment-2118816933
@jansohn can you try my proposition of fix: #87
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
[
https://issues.apache.org/jira/browse/MJAR-310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847517#comment-17847517
]
ASF GitHub Bot commented on MJAR-310:
-
slawekjaranowski opened a new pull request, #87:
slawekjaranowski opened a new pull request, #87:
URL: https://github.com/apache/maven-jar-plugin/pull/87
Following this checklist to help us incorporate your
contribution quickly and easily:
- [ ] Make sure there is a [JIRA
issue](https://issues.apache.org/jira/browse/MJAR) f
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847515#comment-17847515
]
ASF GitHub Bot commented on MINVOKER-351:
-
slawekjaranowski commented on PR #24
slawekjaranowski commented on PR #242:
URL:
https://github.com/apache/maven-invoker-plugin/pull/242#issuecomment-2118810846
@michael-o IT improved according to hints
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847513#comment-17847513
]
ASF GitHub Bot commented on MINVOKER-351:
-
slawekjaranowski commented on code i
slawekjaranowski commented on code in PR #242:
URL:
https://github.com/apache/maven-invoker-plugin/pull/242#discussion_r1605783758
##
src/main/java/org/apache/maven/plugins/invoker/AbstractInvokerMojo.java:
##
@@ -1640,7 +1642,7 @@ private void runBuild(
}
[
https://issues.apache.org/jira/browse/MJAR-310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847512#comment-17847512
]
ASF GitHub Bot commented on MJAR-310:
-
slawekjaranowski commented on PR #86:
URL: https
slawekjaranowski commented on PR #86:
URL: https://github.com/apache/maven-jar-plugin/pull/86#issuecomment-2118807695
@jansohn - please look at comments in JIRA
https://issues.apache.org/jira/browse/MJAR-310
It can be reasonable to fix a bug in plexus-utils
--
This is an automated mess
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847509#comment-17847509
]
Michael Osipov commented on MINVOKER-351:
-
The behavior is inconsitent because
Michael Osipov created DOXIASITETOOLS-341:
-
Summary: Upgrade plugins and components (in ITs)
Key: DOXIASITETOOLS-341
URL: https://issues.apache.org/jira/browse/DOXIASITETOOLS-341
Project: Maven
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847508#comment-17847508
]
Mikkel Kjeldsen edited comment on MINVOKER-351 at 5/18/24 11:35 AM:
-
[
https://issues.apache.org/jira/browse/MINVOKER-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847508#comment-17847508
]
Mikkel Kjeldsen commented on MINVOKER-351:
--
{quote}
So this output shows a lot
[
https://issues.apache.org/jira/browse/DOXIASITETOOLS-340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847507#comment-17847507
]
ASF GitHub Bot commented on DOXIASITETOOLS-340:
---
michael-o opened a
michael-o opened a new pull request, #157:
URL: https://github.com/apache/maven-doxia-sitetools/pull/157
This closes #157
--
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
Michael Osipov created DOXIASITETOOLS-340:
-
Summary: Rearrange title order in Velocity context
Key: DOXIASITETOOLS-340
URL: https://issues.apache.org/jira/browse/DOXIASITETOOLS-340
Project: Mav
[
https://issues.apache.org/jira/browse/DOXIASITETOOLS-340?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Michael Osipov updated DOXIASITETOOLS-340:
--
Description:
Currently, the title is set as follows:
{projectName}} --
[
https://issues.apache.org/jira/browse/MSHARED-1398?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17847506#comment-17847506
]
Slawomir Jaranowski commented on MSHARED-1398:
--
[~jstehler] - fixed you ca
[
https://issues.apache.org/jira/browse/MDEP-576?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Slawomir Jaranowski updated MDEP-576:
-
Fix Version/s: 3.7.0
(was: waiting-for-feedback)
> maven-dependency-
[
https://issues.apache.org/jira/browse/MSHARED-1398?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Slawomir Jaranowski reassigned MSHARED-1398:
Assignee: Slawomir Jaranowski
> StringIndexOutOfBoundsException processi
Tristan Tarrant created MPLUGIN-524:
---
Summary:
"org.apache.maven.artifact.repository.metadata.Plugin.getPrefix() is null" with
Nexus Staging plugin
Key: MPLUGIN-524
URL: https://issues.apache.org/jira/browse/MP
74 matches
Mail list logo