[jira] [Assigned] (MDEP-943) [REGRESSION] appendOutput for tree goal broken for multi-module project
[ https://issues.apache.org/jira/browse/MDEP-943?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Slawomir Jaranowski reassigned MDEP-943: Assignee: Slawomir Jaranowski > [REGRESSION] appendOutput for tree goal broken for multi-module project > --- > > Key: MDEP-943 > URL: https://issues.apache.org/jira/browse/MDEP-943 > Project: Maven Dependency Plugin > Issue Type: Bug >Affects Versions: 3.7.0 >Reporter: Jim Sellers >Assignee: Slawomir Jaranowski >Priority: Major > > [appendOutput|https://maven.apache.org/plugins/maven-dependency-plugin/tree-mojo.html#appendOutput] > no longer seems to work for a multi-module project. It only has the > dependency tree for the last module. > {code} > # use example spring project > git clone https://github.com/spring-guides/gs-multi-module.git > cd gs-multi-module/complete > # do a dependency tree > mvn org.apache.maven.plugins:maven-dependency-plugin:3.6.1:tree > -DoutputFile=/tmp/tree-3.6.1.txt -DappendOutput=true > mvn org.apache.maven.plugins:maven-dependency-plugin:3.7.0:tree > -DoutputFile=/tmp/tree-3.7.0.txt -DappendOutput=true > diff /tmp/tree-3.6.1.txt /tmp/tree-3.7.0.txt > wc -l /tmp/tree-3.*txt > 123 /tmp/tree-3.6.1.txt >1 /tmp/tree-3.7.0.txt > {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)
[jira] [Commented] (MDEP-943) [REGRESSION] appendOutput for tree goal broken for multi-module project
[ https://issues.apache.org/jira/browse/MDEP-943?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17855216#comment-17855216 ] ASF GitHub Bot commented on MDEP-943: - slawekjaranowski opened a new pull request, #414: URL: https://github.com/apache/maven-dependency-plugin/pull/414 https://issues.apache.org/jira/browse/MDEP-943 > [REGRESSION] appendOutput for tree goal broken for multi-module project > --- > > Key: MDEP-943 > URL: https://issues.apache.org/jira/browse/MDEP-943 > Project: Maven Dependency Plugin > Issue Type: Bug >Affects Versions: 3.7.0 >Reporter: Jim Sellers >Assignee: Slawomir Jaranowski >Priority: Major > > [appendOutput|https://maven.apache.org/plugins/maven-dependency-plugin/tree-mojo.html#appendOutput] > no longer seems to work for a multi-module project. It only has the > dependency tree for the last module. > {code} > # use example spring project > git clone https://github.com/spring-guides/gs-multi-module.git > cd gs-multi-module/complete > # do a dependency tree > mvn org.apache.maven.plugins:maven-dependency-plugin:3.6.1:tree > -DoutputFile=/tmp/tree-3.6.1.txt -DappendOutput=true > mvn org.apache.maven.plugins:maven-dependency-plugin:3.7.0:tree > -DoutputFile=/tmp/tree-3.7.0.txt -DappendOutput=true > diff /tmp/tree-3.6.1.txt /tmp/tree-3.7.0.txt > wc -l /tmp/tree-3.*txt > 123 /tmp/tree-3.6.1.txt >1 /tmp/tree-3.7.0.txt > {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)
Re: [PR] [MDEP-943] Fix appendOutput option [maven-dependency-plugin]
michael-o commented on code in PR #414: URL: https://github.com/apache/maven-dependency-plugin/pull/414#discussion_r1640984533 ## src/main/java/org/apache/maven/plugins/dependency/utils/DependencyUtil.java: ## @@ -226,7 +229,19 @@ public static synchronized void write(String string, File file, boolean append, throws IOException { Files.createDirectories(file.getParentFile().toPath()); -try (Writer writer = Files.newBufferedWriter(file.toPath(), Charset.forName(encoding))) { +OpenOption appendOption; Review Comment: Why not make it compact with a ternary operator? -- 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 For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[jira] [Commented] (MDEP-943) [REGRESSION] appendOutput for tree goal broken for multi-module project
[ https://issues.apache.org/jira/browse/MDEP-943?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17855218#comment-17855218 ] ASF GitHub Bot commented on MDEP-943: - michael-o commented on code in PR #414: URL: https://github.com/apache/maven-dependency-plugin/pull/414#discussion_r1640984533 ## src/main/java/org/apache/maven/plugins/dependency/utils/DependencyUtil.java: ## @@ -226,7 +229,19 @@ public static synchronized void write(String string, File file, boolean append, throws IOException { Files.createDirectories(file.getParentFile().toPath()); -try (Writer writer = Files.newBufferedWriter(file.toPath(), Charset.forName(encoding))) { +OpenOption appendOption; Review Comment: Why not make it compact with a ternary operator? > [REGRESSION] appendOutput for tree goal broken for multi-module project > --- > > Key: MDEP-943 > URL: https://issues.apache.org/jira/browse/MDEP-943 > Project: Maven Dependency Plugin > Issue Type: Bug >Affects Versions: 3.7.0 >Reporter: Jim Sellers >Assignee: Slawomir Jaranowski >Priority: Major > > [appendOutput|https://maven.apache.org/plugins/maven-dependency-plugin/tree-mojo.html#appendOutput] > no longer seems to work for a multi-module project. It only has the > dependency tree for the last module. > {code} > # use example spring project > git clone https://github.com/spring-guides/gs-multi-module.git > cd gs-multi-module/complete > # do a dependency tree > mvn org.apache.maven.plugins:maven-dependency-plugin:3.6.1:tree > -DoutputFile=/tmp/tree-3.6.1.txt -DappendOutput=true > mvn org.apache.maven.plugins:maven-dependency-plugin:3.7.0:tree > -DoutputFile=/tmp/tree-3.7.0.txt -DappendOutput=true > diff /tmp/tree-3.6.1.txt /tmp/tree-3.7.0.txt > wc -l /tmp/tree-3.*txt > 123 /tmp/tree-3.6.1.txt >1 /tmp/tree-3.7.0.txt > {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)
Re: [PR] [MDEP-943] Fix appendOutput option [maven-dependency-plugin]
slawekjaranowski commented on code in PR #414: URL: https://github.com/apache/maven-dependency-plugin/pull/414#discussion_r1640988500 ## src/main/java/org/apache/maven/plugins/dependency/utils/DependencyUtil.java: ## @@ -226,7 +229,19 @@ public static synchronized void write(String string, File file, boolean append, throws IOException { Files.createDirectories(file.getParentFile().toPath()); -try (Writer writer = Files.newBufferedWriter(file.toPath(), Charset.forName(encoding))) { +OpenOption appendOption; Review Comment: can be a ternary operator 😄 -- 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 For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[jira] [Commented] (MDEP-943) [REGRESSION] appendOutput for tree goal broken for multi-module project
[ https://issues.apache.org/jira/browse/MDEP-943?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17855220#comment-17855220 ] ASF GitHub Bot commented on MDEP-943: - slawekjaranowski commented on code in PR #414: URL: https://github.com/apache/maven-dependency-plugin/pull/414#discussion_r1640988500 ## src/main/java/org/apache/maven/plugins/dependency/utils/DependencyUtil.java: ## @@ -226,7 +229,19 @@ public static synchronized void write(String string, File file, boolean append, throws IOException { Files.createDirectories(file.getParentFile().toPath()); -try (Writer writer = Files.newBufferedWriter(file.toPath(), Charset.forName(encoding))) { +OpenOption appendOption; Review Comment: can be a ternary operator 😄 > [REGRESSION] appendOutput for tree goal broken for multi-module project > --- > > Key: MDEP-943 > URL: https://issues.apache.org/jira/browse/MDEP-943 > Project: Maven Dependency Plugin > Issue Type: Bug >Affects Versions: 3.7.0 >Reporter: Jim Sellers >Assignee: Slawomir Jaranowski >Priority: Major > > [appendOutput|https://maven.apache.org/plugins/maven-dependency-plugin/tree-mojo.html#appendOutput] > no longer seems to work for a multi-module project. It only has the > dependency tree for the last module. > {code} > # use example spring project > git clone https://github.com/spring-guides/gs-multi-module.git > cd gs-multi-module/complete > # do a dependency tree > mvn org.apache.maven.plugins:maven-dependency-plugin:3.6.1:tree > -DoutputFile=/tmp/tree-3.6.1.txt -DappendOutput=true > mvn org.apache.maven.plugins:maven-dependency-plugin:3.7.0:tree > -DoutputFile=/tmp/tree-3.7.0.txt -DappendOutput=true > diff /tmp/tree-3.6.1.txt /tmp/tree-3.7.0.txt > wc -l /tmp/tree-3.*txt > 123 /tmp/tree-3.6.1.txt >1 /tmp/tree-3.7.0.txt > {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)
Re: [PR] [MDEP-943] Fix appendOutput option [maven-dependency-plugin]
michael-o commented on code in PR #414: URL: https://github.com/apache/maven-dependency-plugin/pull/414#discussion_r1640992556 ## src/test/java/org/apache/maven/plugins/dependency/utils/TestDependencyUtil.java: ## @@ -337,4 +339,28 @@ public void testTokenizer() { tokens = DependencyUtil.tokenizer(" "); assertEquals(0, tokens.length); } + +@Test +void outputFileShouldBeOverride() throws IOException { Review Comment: outputFileShouldBeOverriden -- 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 For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[jira] [Commented] (MDEP-943) [REGRESSION] appendOutput for tree goal broken for multi-module project
[ https://issues.apache.org/jira/browse/MDEP-943?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17855221#comment-17855221 ] ASF GitHub Bot commented on MDEP-943: - michael-o commented on code in PR #414: URL: https://github.com/apache/maven-dependency-plugin/pull/414#discussion_r1640992556 ## src/test/java/org/apache/maven/plugins/dependency/utils/TestDependencyUtil.java: ## @@ -337,4 +339,28 @@ public void testTokenizer() { tokens = DependencyUtil.tokenizer(" "); assertEquals(0, tokens.length); } + +@Test +void outputFileShouldBeOverride() throws IOException { Review Comment: outputFileShouldBeOverriden > [REGRESSION] appendOutput for tree goal broken for multi-module project > --- > > Key: MDEP-943 > URL: https://issues.apache.org/jira/browse/MDEP-943 > Project: Maven Dependency Plugin > Issue Type: Bug >Affects Versions: 3.7.0 >Reporter: Jim Sellers >Assignee: Slawomir Jaranowski >Priority: Major > > [appendOutput|https://maven.apache.org/plugins/maven-dependency-plugin/tree-mojo.html#appendOutput] > no longer seems to work for a multi-module project. It only has the > dependency tree for the last module. > {code} > # use example spring project > git clone https://github.com/spring-guides/gs-multi-module.git > cd gs-multi-module/complete > # do a dependency tree > mvn org.apache.maven.plugins:maven-dependency-plugin:3.6.1:tree > -DoutputFile=/tmp/tree-3.6.1.txt -DappendOutput=true > mvn org.apache.maven.plugins:maven-dependency-plugin:3.7.0:tree > -DoutputFile=/tmp/tree-3.7.0.txt -DappendOutput=true > diff /tmp/tree-3.6.1.txt /tmp/tree-3.7.0.txt > wc -l /tmp/tree-3.*txt > 123 /tmp/tree-3.6.1.txt >1 /tmp/tree-3.7.0.txt > {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)
[jira] [Created] (MDEP-944) Bump org.apache.maven.shared:maven-common-artifact-filters from 3.3.2 to 3.4.0
Slawomir Jaranowski created MDEP-944: Summary: Bump org.apache.maven.shared:maven-common-artifact-filters from 3.3.2 to 3.4.0 Key: MDEP-944 URL: https://issues.apache.org/jira/browse/MDEP-944 Project: Maven Dependency Plugin Issue Type: Dependency upgrade Reporter: Slawomir Jaranowski Assignee: Slawomir Jaranowski -- This message was sent by Atlassian Jira (v8.20.10#820010)
[jira] [Updated] (MDEP-943) [REGRESSION] appendOutput for tree goal broken for multi-module project
[ https://issues.apache.org/jira/browse/MDEP-943?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Slawomir Jaranowski updated MDEP-943: - Fix Version/s: 3.7.1 > [REGRESSION] appendOutput for tree goal broken for multi-module project > --- > > Key: MDEP-943 > URL: https://issues.apache.org/jira/browse/MDEP-943 > Project: Maven Dependency Plugin > Issue Type: Bug >Affects Versions: 3.7.0 >Reporter: Jim Sellers >Assignee: Slawomir Jaranowski >Priority: Major > Fix For: 3.7.1 > > > [appendOutput|https://maven.apache.org/plugins/maven-dependency-plugin/tree-mojo.html#appendOutput] > no longer seems to work for a multi-module project. It only has the > dependency tree for the last module. > {code} > # use example spring project > git clone https://github.com/spring-guides/gs-multi-module.git > cd gs-multi-module/complete > # do a dependency tree > mvn org.apache.maven.plugins:maven-dependency-plugin:3.6.1:tree > -DoutputFile=/tmp/tree-3.6.1.txt -DappendOutput=true > mvn org.apache.maven.plugins:maven-dependency-plugin:3.7.0:tree > -DoutputFile=/tmp/tree-3.7.0.txt -DappendOutput=true > diff /tmp/tree-3.6.1.txt /tmp/tree-3.7.0.txt > wc -l /tmp/tree-3.*txt > 123 /tmp/tree-3.6.1.txt >1 /tmp/tree-3.7.0.txt > {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)
[jira] [Updated] (MDEP-944) Bump org.apache.maven.shared:maven-common-artifact-filters from 3.3.2 to 3.4.0
[ https://issues.apache.org/jira/browse/MDEP-944?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Slawomir Jaranowski updated MDEP-944: - Fix Version/s: 3.7.1 > Bump org.apache.maven.shared:maven-common-artifact-filters from 3.3.2 to 3.4.0 > -- > > Key: MDEP-944 > URL: https://issues.apache.org/jira/browse/MDEP-944 > Project: Maven Dependency Plugin > Issue Type: Dependency upgrade >Reporter: Slawomir Jaranowski >Assignee: Slawomir Jaranowski >Priority: Major > Fix For: 3.7.1 > > -- This message was sent by Atlassian Jira (v8.20.10#820010)
Re: [PR] [MDEP-940] Use Resolver API instead of m-a-t for resolving artifacts [maven-dependency-plugin]
slawekjaranowski commented on PR #410: URL: https://github.com/apache/maven-dependency-plugin/pull/410#issuecomment-2169340685 > > Why draft ... we can merge step by step with small changes. > > I assumed that you wanted to work on a complete PR. If you think that PRs are seftcontained, that is fine. You decide. Step by step ... other places is more complicated, eg use additional remote or local repository defined by user -- 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 For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[jira] [Commented] (MDEP-940) Use Resolver API instead of m-a-t for resolving artifacts
[ https://issues.apache.org/jira/browse/MDEP-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17855223#comment-17855223 ] ASF GitHub Bot commented on MDEP-940: - slawekjaranowski commented on PR #410: URL: https://github.com/apache/maven-dependency-plugin/pull/410#issuecomment-2169340685 > > Why draft ... we can merge step by step with small changes. > > I assumed that you wanted to work on a complete PR. If you think that PRs are seftcontained, that is fine. You decide. Step by step ... other places is more complicated, eg use additional remote or local repository defined by user > Use Resolver API instead of m-a-t for resolving artifacts > - > > Key: MDEP-940 > URL: https://issues.apache.org/jira/browse/MDEP-940 > Project: Maven Dependency Plugin > Issue Type: Improvement >Reporter: Slawomir Jaranowski >Assignee: Slawomir Jaranowski >Priority: Major > -- This message was sent by Atlassian Jira (v8.20.10#820010)
[jira] [Updated] (MDEP-940) Use Resolver API instead of m-a-t for resolving artifacts
[ https://issues.apache.org/jira/browse/MDEP-940?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Slawomir Jaranowski updated MDEP-940: - Fix Version/s: 3.7.1 > Use Resolver API instead of m-a-t for resolving artifacts > - > > Key: MDEP-940 > URL: https://issues.apache.org/jira/browse/MDEP-940 > Project: Maven Dependency Plugin > Issue Type: Improvement >Reporter: Slawomir Jaranowski >Assignee: Slawomir Jaranowski >Priority: Major > Fix For: 3.7.1 > > -- This message was sent by Atlassian Jira (v8.20.10#820010)
Re: [PR] [MDEP-944] Bump org.apache.maven.shared:maven-common-artifact-filters from 3.3.2 to 3.4.0 [maven-dependency-plugin]
slawekjaranowski merged PR #413: URL: https://github.com/apache/maven-dependency-plugin/pull/413 -- 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 For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[jira] [Commented] (MDEP-944) Bump org.apache.maven.shared:maven-common-artifact-filters from 3.3.2 to 3.4.0
[ https://issues.apache.org/jira/browse/MDEP-944?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17855253#comment-17855253 ] ASF GitHub Bot commented on MDEP-944: - slawekjaranowski merged PR #413: URL: https://github.com/apache/maven-dependency-plugin/pull/413 > Bump org.apache.maven.shared:maven-common-artifact-filters from 3.3.2 to 3.4.0 > -- > > Key: MDEP-944 > URL: https://issues.apache.org/jira/browse/MDEP-944 > Project: Maven Dependency Plugin > Issue Type: Dependency upgrade >Reporter: Slawomir Jaranowski >Assignee: Slawomir Jaranowski >Priority: Major > Fix For: 3.7.1 > > -- This message was sent by Atlassian Jira (v8.20.10#820010)
[jira] [Closed] (MDEP-944) Bump org.apache.maven.shared:maven-common-artifact-filters from 3.3.2 to 3.4.0
[ https://issues.apache.org/jira/browse/MDEP-944?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Slawomir Jaranowski closed MDEP-944. Resolution: Fixed > Bump org.apache.maven.shared:maven-common-artifact-filters from 3.3.2 to 3.4.0 > -- > > Key: MDEP-944 > URL: https://issues.apache.org/jira/browse/MDEP-944 > Project: Maven Dependency Plugin > Issue Type: Dependency upgrade >Reporter: Slawomir Jaranowski >Assignee: Slawomir Jaranowski >Priority: Major > Fix For: 3.7.1 > > -- This message was sent by Atlassian Jira (v8.20.10#820010)
Re: [PR] [MDEP-943] Fix appendOutput option [maven-dependency-plugin]
slawekjaranowski merged PR #414: URL: https://github.com/apache/maven-dependency-plugin/pull/414 -- 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 For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[jira] [Commented] (MDEP-943) [REGRESSION] appendOutput for tree goal broken for multi-module project
[ https://issues.apache.org/jira/browse/MDEP-943?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17855258#comment-17855258 ] ASF GitHub Bot commented on MDEP-943: - slawekjaranowski merged PR #414: URL: https://github.com/apache/maven-dependency-plugin/pull/414 > [REGRESSION] appendOutput for tree goal broken for multi-module project > --- > > Key: MDEP-943 > URL: https://issues.apache.org/jira/browse/MDEP-943 > Project: Maven Dependency Plugin > Issue Type: Bug >Affects Versions: 3.7.0 >Reporter: Jim Sellers >Assignee: Slawomir Jaranowski >Priority: Major > Fix For: 3.7.1 > > > [appendOutput|https://maven.apache.org/plugins/maven-dependency-plugin/tree-mojo.html#appendOutput] > no longer seems to work for a multi-module project. It only has the > dependency tree for the last module. > {code} > # use example spring project > git clone https://github.com/spring-guides/gs-multi-module.git > cd gs-multi-module/complete > # do a dependency tree > mvn org.apache.maven.plugins:maven-dependency-plugin:3.6.1:tree > -DoutputFile=/tmp/tree-3.6.1.txt -DappendOutput=true > mvn org.apache.maven.plugins:maven-dependency-plugin:3.7.0:tree > -DoutputFile=/tmp/tree-3.7.0.txt -DappendOutput=true > diff /tmp/tree-3.6.1.txt /tmp/tree-3.7.0.txt > wc -l /tmp/tree-3.*txt > 123 /tmp/tree-3.6.1.txt >1 /tmp/tree-3.7.0.txt > {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)
[jira] [Created] (MCLEAN-120) Bump org.codehaus.plexus:plexus-testing from 1.1.0 to 1.3.0
Slawomir Jaranowski created MCLEAN-120: -- Summary: Bump org.codehaus.plexus:plexus-testing from 1.1.0 to 1.3.0 Key: MCLEAN-120 URL: https://issues.apache.org/jira/browse/MCLEAN-120 Project: Maven Clean Plugin Issue Type: Dependency upgrade Reporter: Slawomir Jaranowski Assignee: Slawomir Jaranowski Fix For: 3.4.0 -- This message was sent by Atlassian Jira (v8.20.10#820010)
Re: [PR] [MCLEAN-120] Bump org.codehaus.plexus:plexus-testing from 1.1.0 to 1.3.0 [maven-clean-plugin]
slawekjaranowski merged PR #40: URL: https://github.com/apache/maven-clean-plugin/pull/40 -- 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 For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[jira] [Commented] (MCLEAN-120) Bump org.codehaus.plexus:plexus-testing from 1.1.0 to 1.3.0
[ https://issues.apache.org/jira/browse/MCLEAN-120?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17855259#comment-17855259 ] ASF GitHub Bot commented on MCLEAN-120: --- slawekjaranowski merged PR #40: URL: https://github.com/apache/maven-clean-plugin/pull/40 > Bump org.codehaus.plexus:plexus-testing from 1.1.0 to 1.3.0 > --- > > Key: MCLEAN-120 > URL: https://issues.apache.org/jira/browse/MCLEAN-120 > Project: Maven Clean Plugin > Issue Type: Dependency upgrade >Reporter: Slawomir Jaranowski >Assignee: Slawomir Jaranowski >Priority: Major > Fix For: 3.4.0 > > -- This message was sent by Atlassian Jira (v8.20.10#820010)
[jira] [Created] (MSCMPUB-67) Upgrade to Maven 3.6.3
Michael Osipov created MSCMPUB-67: - Summary: Upgrade to Maven 3.6.3 Key: MSCMPUB-67 URL: https://issues.apache.org/jira/browse/MSCMPUB-67 Project: Maven SCM Publish Plugin Issue Type: Dependency upgrade Reporter: Michael Osipov Assignee: Michael Osipov Fix For: 3.3.0 This will also include the upgrade of these components in alignment with Maven 3.6.3: * Upgrade to Maven SCM 2.1.0 * Upgrade to Maven Release 3.1.0 * Upgrade to Maven Project Info Reports Plugin 3.6.0 * Upgrade to Maven Javadoc Plugin 3.7.0 -- This message was sent by Atlassian Jira (v8.20.10#820010)
[jira] [Created] (MSCMPUB-68) Upgrade plugins and components (in ITs)
Michael Osipov created MSCMPUB-68: - Summary: Upgrade plugins and components (in ITs) Key: MSCMPUB-68 URL: https://issues.apache.org/jira/browse/MSCMPUB-68 Project: Maven SCM Publish Plugin Issue Type: Dependency upgrade Reporter: Michael Osipov Assignee: Michael Osipov Fix For: 3.3.0 * Upgrade to Maven Shared Utils 3.4.2 * Upgrade to Commons IO 2.16.1 -- This message was sent by Atlassian Jira (v8.20.10#820010)
[jira] [Closed] (MCLEAN-120) Bump org.codehaus.plexus:plexus-testing from 1.1.0 to 1.3.0
[ https://issues.apache.org/jira/browse/MCLEAN-120?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Slawomir Jaranowski closed MCLEAN-120. -- Resolution: Fixed > Bump org.codehaus.plexus:plexus-testing from 1.1.0 to 1.3.0 > --- > > Key: MCLEAN-120 > URL: https://issues.apache.org/jira/browse/MCLEAN-120 > Project: Maven Clean Plugin > Issue Type: Dependency upgrade >Reporter: Slawomir Jaranowski >Assignee: Slawomir Jaranowski >Priority: Major > Fix For: 3.4.0 > > -- This message was sent by Atlassian Jira (v8.20.10#820010)
Re: [PR] [MCLEAN-121] Bump com.google.inject:guice from 4.2.0 to 4.2.3 [maven-clean-plugin]
slawekjaranowski merged PR #41: URL: https://github.com/apache/maven-clean-plugin/pull/41 -- 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 For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[jira] [Created] (MCLEAN-121) Bump com.google.inject:guice from 4.2.0 to 4.2.3
Slawomir Jaranowski created MCLEAN-121: -- Summary: Bump com.google.inject:guice from 4.2.0 to 4.2.3 Key: MCLEAN-121 URL: https://issues.apache.org/jira/browse/MCLEAN-121 Project: Maven Clean Plugin Issue Type: Dependency upgrade Reporter: Slawomir Jaranowski Assignee: Slawomir Jaranowski -- This message was sent by Atlassian Jira (v8.20.10#820010)
[jira] [Commented] (MCLEAN-121) Bump com.google.inject:guice from 4.2.0 to 4.2.3
[ https://issues.apache.org/jira/browse/MCLEAN-121?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17855260#comment-17855260 ] ASF GitHub Bot commented on MCLEAN-121: --- slawekjaranowski merged PR #41: URL: https://github.com/apache/maven-clean-plugin/pull/41 > Bump com.google.inject:guice from 4.2.0 to 4.2.3 > > > Key: MCLEAN-121 > URL: https://issues.apache.org/jira/browse/MCLEAN-121 > Project: Maven Clean Plugin > Issue Type: Dependency upgrade >Reporter: Slawomir Jaranowski >Assignee: Slawomir Jaranowski >Priority: Major > -- This message was sent by Atlassian Jira (v8.20.10#820010)
[jira] [Closed] (MCLEAN-121) Bump com.google.inject:guice from 4.2.0 to 4.2.3
[ https://issues.apache.org/jira/browse/MCLEAN-121?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Slawomir Jaranowski closed MCLEAN-121. -- Fix Version/s: 3.4.0 Resolution: Fixed > Bump com.google.inject:guice from 4.2.0 to 4.2.3 > > > Key: MCLEAN-121 > URL: https://issues.apache.org/jira/browse/MCLEAN-121 > Project: Maven Clean Plugin > Issue Type: Dependency upgrade >Reporter: Slawomir Jaranowski >Assignee: Slawomir Jaranowski >Priority: Major > Fix For: 3.4.0 > > -- This message was sent by Atlassian Jira (v8.20.10#820010)
[jira] [Created] (MSCMPUB-69) ITs do not properly check for existence of svn/svnadmin/CreateSymbolicLink command/function
Michael Osipov created MSCMPUB-69: - Summary: ITs do not properly check for existence of svn/svnadmin/CreateSymbolicLink command/function Key: MSCMPUB-69 URL: https://issues.apache.org/jira/browse/MSCMPUB-69 Project: Maven SCM Publish Plugin Issue Type: Bug Affects Versions: 3.2.1 Reporter: Michael Osipov Assignee: Michael Osipov Fix For: 3.3.0 -- This message was sent by Atlassian Jira (v8.20.10#820010)