Hi all, I'm new to Ivy, seeking advice. Part of our project is a native library - x.dll on windows and x.so on unix. In ivy.xml I've defined configurations and publications as following:
<configurations> <conf name="default"/> <conf name="windows" extends="default" /> <conf name="unix" extends="default" /> </configurations> <publications> <artifact name="asi-optimizer" type="jar"/> <artifact name="asi-optimizerlib" type="dll" conf="windows" /> <artifact name="liboptimizerlib" type="dll" ext="so" conf="unix" /> </publications> How can I publish only jar+dll while building on windows and jar+so while building on unix? I don't mind specifying ant target or ivy conf name (no need to detect the platform automatically). -- View this message in context: http://www.nabble.com/platform-specific-configurations-tf4693503.html#a13415468 Sent from the ivy-user mailing list archive at Nabble.com.
