是否可以从具有相同 jar 名称的不同目录发布 jar 并通过配置控制使用哪个?
Is it posible to publish jars from different directories with the same jar name and control which one is used via configurations?
我正在尝试在遗留系统的构建过程中添加一些 ivy 依赖管理,因此我们可以在下游项目和开发环境中以比目前更好的方式管理我们生产的人工制品的使用做。然而,我们的一个构建(我们称之为 module-X)在两个不同的目录中生成两个不同版本的 jar 文件,用于基于批处理和基于浏览器的应用程序以及两者使用的一些常见工件。即:
- bin\batch\DataObjects.jar – 用于批处理
- bin\browser\DataObjects.jar – 由基于浏览器的
申请
- bin\common* - 批处理和浏览器使用的 jar
我想设置 ivy:publish 这样我们就可以使用 browser\DataObjects.jar 依赖于带有浏览器配置的 module-X 和 batch\DataObjects.jar 当使用批处理配置,是否可以使用单个模块?还是我最好拥有多个 ivy.xml 模块描述符并将它们 publishing/using 作为单独的模块?
这个问题最好由您的发布管理计划来回答。这些文件是否一起发布并且应该具有相同的修订号?另一方面,如果每个工件都有自己的生命周期并且可以单独发布,那么最好建议使用单独的模块。
为了帮助做出决定,请问自己以下问题。如果更改源文件是否会导致需要重新编译两个二进制文件?如果是,则将它们一起释放。如果没有,那么单独发布它们可能更简单。
最后,是的,当将多个文件作为同一模块的一部分发布时,可以设置两个配置,以便在依赖映射中单独下载每个文件。
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
<info organisation="org.demo" module="myfiles"/>
<configurations>
<conf name="default" extends="master,sources,javadoc"/>
<conf name="master" description="contains only the artifact published by this module itself, with no transitive dependencies"/>
<conf name="sources" description="this configuration contains the source artifact of this module, if any."/>
<conf name="javadoc" description="this configuration contains the javadoc artifact of this module, if any."/>
</configurations>
<publications>
<artifact name="myfile" type="jar" ext="jar" conf="master"/>
<artifact name="myfile" type="source" ext="jar" conf="sources" m:classifier="sources"/>
<artifact name="myfile" type="javadoc" ext="jar" conf="javadoc" m:classifier="javadoc"/>
</publications>
<dependencies>
..
</dependencies>
</ivy-module>
我正在尝试在遗留系统的构建过程中添加一些 ivy 依赖管理,因此我们可以在下游项目和开发环境中以比目前更好的方式管理我们生产的人工制品的使用做。然而,我们的一个构建(我们称之为 module-X)在两个不同的目录中生成两个不同版本的 jar 文件,用于基于批处理和基于浏览器的应用程序以及两者使用的一些常见工件。即:
- bin\batch\DataObjects.jar – 用于批处理
- bin\browser\DataObjects.jar – 由基于浏览器的 申请
- bin\common* - 批处理和浏览器使用的 jar
我想设置 ivy:publish 这样我们就可以使用 browser\DataObjects.jar 依赖于带有浏览器配置的 module-X 和 batch\DataObjects.jar 当使用批处理配置,是否可以使用单个模块?还是我最好拥有多个 ivy.xml 模块描述符并将它们 publishing/using 作为单独的模块?
这个问题最好由您的发布管理计划来回答。这些文件是否一起发布并且应该具有相同的修订号?另一方面,如果每个工件都有自己的生命周期并且可以单独发布,那么最好建议使用单独的模块。
为了帮助做出决定,请问自己以下问题。如果更改源文件是否会导致需要重新编译两个二进制文件?如果是,则将它们一起释放。如果没有,那么单独发布它们可能更简单。
最后,是的,当将多个文件作为同一模块的一部分发布时,可以设置两个配置,以便在依赖映射中单独下载每个文件。
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
<info organisation="org.demo" module="myfiles"/>
<configurations>
<conf name="default" extends="master,sources,javadoc"/>
<conf name="master" description="contains only the artifact published by this module itself, with no transitive dependencies"/>
<conf name="sources" description="this configuration contains the source artifact of this module, if any."/>
<conf name="javadoc" description="this configuration contains the javadoc artifact of this module, if any."/>
</configurations>
<publications>
<artifact name="myfile" type="jar" ext="jar" conf="master"/>
<artifact name="myfile" type="source" ext="jar" conf="sources" m:classifier="sources"/>
<artifact name="myfile" type="javadoc" ext="jar" conf="javadoc" m:classifier="javadoc"/>
</publications>
<dependencies>
..
</dependencies>
</ivy-module>