我正试图在遗留系统的构建过程中添加一些常春藤依赖性管理,这样我们就可以在下游项目和开发环境中以比目前更好的方式管理我们生产的人工制品的使用。然而,我们的一个构建(让我们称之为module-X)在两个不同的目录中生成两个不同版本的jar文件,用于基于批处理和基于浏览器的应用程序,以及两者使用的一些常见人工制品。即:
- bin\batch\DataObjects.jar–由批处理过程使用
- bin\bbrowser\DataObjects.jar–基于浏览器的应用程序
- bin\common*-批处理和浏览器使用的jar
我想设置ivy:publish,这样我们就可以在依赖具有浏览器配置的模块-X时使用browser\DataObjects.jar,在使用批处理配置时使用batch\DataObjects.jar,这可能使用单个模块吗?还是我最好拥有多个ivy.xml模块描述符,并将它们作为单独的模块发布/使用?
这个问题最好由您的发布管理计划来回答。这些文件是否一起发布,并且应该具有相同的修订号?另一方面,如果每个工件都有自己的生命周期,并且可以单独发布,那么最好是单独的模块。
为了帮助做出决定,问问自己以下问题。如果更改源文件,是否需要重新编译这两个二进制文件?如果是,将它们一起释放。如果没有,那么单独发布它们可能会更简单。
最后,是的,当将多个文件作为同一模块的一部分发布时,可以设置两种配置,以便在依赖关系映射中分别下载每个文件。
<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>