Skip to content

Commit

Permalink
fix windows mvn goal parse (#831)
Browse files Browse the repository at this point in the history
* update to 2.2.7

* fix windows mvn goal parse
  • Loading branch information
lvjing2 committed Jan 18, 2024
1 parent 368a8be commit 6a97493
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</modules>

<properties>
<sofa.ark.version>2.2.7-SNAPSHOT</sofa.ark.version>
<sofa.ark.version>2.2.7</sofa.ark.version>
<project.encoding>UTF-8</project.encoding>
<java.version>1.8</java.version>
<license.maven.plugin>3.0</license.maven.plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ private Set<ArtifactItem> getAllArtifactByMavenTree() throws MojoExecutionExcept
request.setPomFile(com.alipay.sofa.ark.common.util.FileUtils.file(baseDir.getAbsolutePath() + "/pom.xml"));

List<String> goals = Stream.of("dependency:tree", "-DappendOutput=true",
"-DoutputFile=" + outputPath).collect(Collectors.toList());
"-DoutputFile=\"" + outputPath + "\"").collect(Collectors.toList());

Properties userProperties = projectBuildingRequest.getUserProperties();
if (userProperties != null) {
Expand Down

0 comments on commit 6a97493

Please sign in to comment.