gpt4 book ai didi

java - Visual Studio Code 是否支持 Ivy 作为 Java 项目的依赖管理?

转载 作者:行者123 更新时间:2023-12-01 22:34:57 25 4
gpt4 key购买 nike

我们公司有使用 Spring MVC(不是启动)构建的遗留项目,并使用 Ivy 进行依赖管理,以及使用 Artifactory 的存储库。我找不到任何 Ivy/Ant 的教程或支持,而只有 Maven 类型的项目。

有谁能用 VS Code 来配合使用 Ivy 的项目吗?

最佳答案

是的,你可以让它工作。你可以通过 Apache Ant 使用 ivy,有一个 plugin for Apache Ant available for Visual Studio Code .

这是一个示例 Ant 目标,它使用 Ivy 定义的目标来解析依赖项。

<!--override the common resolve task to use Ivy configuration here-->
<target name="resolve" description="--> resolve and retrieve jar dependencies with ivy for all configurations.">
<mkdir dir="${lib.dir}" />
<!-- not usually necessary, ivy creates the directory IF there are dependencies -->

<!-- the call to resolve is not mandatory, retrieve makes an implicit call if we don't -->
<ivy:resolve file="${ivy.file}" conf="*" />

<ivy:retrieve pattern="${lib.dir}/[conf]/[organisation]/[module]/[type]s/[artifact].[ext]" conf="*" />
</target>

关于java - Visual Studio Code 是否支持 Ivy 作为 Java 项目的依赖管理?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58531706/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com