You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-user@ant.apache.org by "d'Anjou, Martin" <md...@ciena.com> on 2016/01/25 18:58:20 UTC

Looking for non-java transitive dependency examples

Hi,

I would like to manage non-java transitive dependency with ivy, but all my attempts have failed so far. Anyone has links to examples (e.g. on github)?

Thanks,
Martin

Re: Looking for non-java transitive dependency examples

Posted by Stefan Podkowinski <sp...@gmail.com>.
unsubscribe

RE: Looking for non-java transitive dependency examples

Posted by "Greene, Hugh" <HG...@tmvse.com>.
Hi Martin,

another not-really-Ivy thing is a Gradle extension for packaging multiple files (C/C++ or web libraries, for example) as ZIPs and unpacking them on download -- plus a number of related features.  I've written quite a lot of this, though there's no real support, sorry!  It's also partly Windows-specific, but you could snip those bits out easily (e.g., running PowerShell to capture system info, to publish with the artifacts).

Regards,

Hugh Greene, Senior Software Developer
Toshiba Medical Visualization Systems Europe, Ltd
Bonnington Bond, 2 Anderson Place, Edinburgh EH6 5NP, UK
Tel + 44 (0)131 472 4792 / Fax + 44 (0) 131 472 4799
http://www.tmvse.com / mailto:hgreene@tmvse.com 

DISCLAIMER
Unless indicated otherwise, the information contained in this message is privileged and confidential, and is intended only for the use of the addressee(s) named above and others who have been specifically authorized to receive it. If you are not the intended recipient, you are hereby notified that any dissemination, distribution or copying of this message and/or attachments is strictly prohibited. The company accepts no liability for any damage caused by any virus transmitted by this email. Furthermore, the company does not warrant a proper and complete transmission of this information, nor does it accept liability for any delays. If you have received this message in error, please contact the sender and delete the message.

-----Original Message-----
From: Holmes, Daniel [mailto:Daniel.Holmes@netapp.com] 
Sent: 26 January 2016 13:31
To: ivy-user@ant.apache.org
Subject: RE: Looking for non-java transitive dependency examples

I ran across this yesterday.  Not Ivy specifically, but discusses the issue using C/C++ modules in a Maven type repository.  Pattern would also apply to IVY usage

https://www.researchgate.net/publication/241772053_A_CC_Build_System_Based_On_Maven_for_the_LHC_Controls_System

-----Original Message-----
From: juan.mejias@reduc.edu.cu [mailto:juan.mejias@reduc.edu.cu]
Sent: Monday, January 25, 2016 10:51 PM
To: ivy-user@ant.apache.org
Subject: Re: Looking for non-java transitive dependency examples

> Hi,
>
> I would like to manage non-java transitive dependency with ivy, but 
> all my attempts have failed so far. Anyone has links to examples (e.g.
> on github)?
>
> Thanks,
> Martin
>

Hi. What is failing? This are some modules I used in an ActionScript project. As you can see, I am publishing a .air file, screens-manager library is a .swc, and main_entrance_screen is a .zip:

---main module-------------------
<ivy-module version="2.0">
	<info organisation="${project.organisation}" module="${project.name}"
revision="${project.version}"/>
	<configurations>
		<conf name="release" description="Provide a release"/>
		<conf name="integration" description="Provide an integration"/>
	</configurations>
	<publications>
		<artifact type="air" ext="air" conf="release"/>
		<artifact type="air" ext="air" conf="integration"/>
	</publications>
	<dependencies>
		<!-- Integration dependencies -->
		<!-- Libraries -->
		<dependency org="${project.organisation}" name="screens-manager"
rev="integration" conf="integration" changing="true"/>

		<!-- Modules -->
		<dependency org="${project.organisation}" name="main_entrance_screen"
rev="integration" conf="integration" changing="true"/>

		<!-- Release dependencies -->
		<!-- Libraries -->
		<dependency org="${project.organisation}" name="screens-manager"
rev="1.3" conf="release"/>

		<!-- Modules -->
		<dependency org="${project.organisation}" name="main_entrance_screen"
rev="0.7" conf="release"/>
	</dependencies>
</ivy-module>
---------------------------------

---screens-manager module--------
<ivy-module version="2.0">
	<info organisation="${project.organisation}" module="${project.name}"
revision="${project.version}"/>
	<configurations>
		<conf name="release" description="Provide a release"/>
		<conf name="integration" description="Provide an integration"/>
	</configurations>
	<publications>
		<artifact type="swc" ext="swc" conf="release"/>
		<artifact type="swc" ext="swc" conf="integration"/>
	</publications>
</ivy-module>
---------------------------------

---main_entrance_screen module---
<ivy-module version="2.0">
	<info organisation="${project.organisation}" module="${project.name}"
revision="${project.version}"/>
	<configurations>
		<conf name="release" description="Provide a release"/>
		<conf name="integration" description="Provide an integration"/>
	</configurations>
	<publications>
		<artifact type="zip" ext="zip" conf="release"/>
		<artifact type="zip" ext="zip" conf="integration"/>
	</publications>
</ivy-module>
---------------------------------

______________________________________________________________________
This email has been scanned by the Symantec Email Security.cloud service.
For more information please visit http://www.symanteccloud.com ______________________________________________________________________

______________________________________________________________________
This email has been scanned by the Symantec Email Security.cloud service.
For more information please visit http://www.symanteccloud.com
______________________________________________________________________

RE: Looking for non-java transitive dependency examples

Posted by "Holmes, Daniel" <Da...@netapp.com>.
I ran across this yesterday.  Not Ivy specifically, but discusses the issue using C/C++ modules in a Maven type repository.  Pattern would also apply to IVY usage

https://www.researchgate.net/publication/241772053_A_CC_Build_System_Based_On_Maven_for_the_LHC_Controls_System

-----Original Message-----
From: juan.mejias@reduc.edu.cu [mailto:juan.mejias@reduc.edu.cu] 
Sent: Monday, January 25, 2016 10:51 PM
To: ivy-user@ant.apache.org
Subject: Re: Looking for non-java transitive dependency examples

> Hi,
>
> I would like to manage non-java transitive dependency with ivy, but 
> all my attempts have failed so far. Anyone has links to examples (e.g. 
> on github)?
>
> Thanks,
> Martin
>

Hi. What is failing? This are some modules I used in an ActionScript project. As you can see, I am publishing a .air file, screens-manager library is a .swc, and main_entrance_screen is a .zip:

---main module-------------------
<ivy-module version="2.0">
	<info organisation="${project.organisation}" module="${project.name}"
revision="${project.version}"/>
	<configurations>
		<conf name="release" description="Provide a release"/>
		<conf name="integration" description="Provide an integration"/>
	</configurations>
	<publications>
		<artifact type="air" ext="air" conf="release"/>
		<artifact type="air" ext="air" conf="integration"/>
	</publications>
	<dependencies>
		<!-- Integration dependencies -->
		<!-- Libraries -->
		<dependency org="${project.organisation}" name="screens-manager"
rev="integration" conf="integration" changing="true"/>

		<!-- Modules -->
		<dependency org="${project.organisation}" name="main_entrance_screen"
rev="integration" conf="integration" changing="true"/>

		<!-- Release dependencies -->
		<!-- Libraries -->
		<dependency org="${project.organisation}" name="screens-manager"
rev="1.3" conf="release"/>

		<!-- Modules -->
		<dependency org="${project.organisation}" name="main_entrance_screen"
rev="0.7" conf="release"/>
	</dependencies>
</ivy-module>
---------------------------------

---screens-manager module--------
<ivy-module version="2.0">
	<info organisation="${project.organisation}" module="${project.name}"
revision="${project.version}"/>
	<configurations>
		<conf name="release" description="Provide a release"/>
		<conf name="integration" description="Provide an integration"/>
	</configurations>
	<publications>
		<artifact type="swc" ext="swc" conf="release"/>
		<artifact type="swc" ext="swc" conf="integration"/>
	</publications>
</ivy-module>
---------------------------------

---main_entrance_screen module---
<ivy-module version="2.0">
	<info organisation="${project.organisation}" module="${project.name}"
revision="${project.version}"/>
	<configurations>
		<conf name="release" description="Provide a release"/>
		<conf name="integration" description="Provide an integration"/>
	</configurations>
	<publications>
		<artifact type="zip" ext="zip" conf="release"/>
		<artifact type="zip" ext="zip" conf="integration"/>
	</publications>
</ivy-module>
---------------------------------


Re: Looking for non-java transitive dependency examples

Posted by ju...@reduc.edu.cu.
> Hi,
>
> I would like to manage non-java transitive dependency with ivy, but all my
> attempts have failed so far. Anyone has links to examples (e.g. on
> github)?
>
> Thanks,
> Martin
>

Hi. What is failing? This are some modules I used in an ActionScript
project. As you can see, I am publishing a .air file, screens-manager
library is a .swc, and main_entrance_screen is a .zip:

---main module-------------------
<ivy-module version="2.0">
	<info organisation="${project.organisation}" module="${project.name}"
revision="${project.version}"/>
	<configurations>
		<conf name="release" description="Provide a release"/>
		<conf name="integration" description="Provide an integration"/>
	</configurations>
	<publications>
		<artifact type="air" ext="air" conf="release"/>
		<artifact type="air" ext="air" conf="integration"/>
	</publications>
	<dependencies>
		<!-- Integration dependencies -->
		<!-- Libraries -->
		<dependency org="${project.organisation}" name="screens-manager"
rev="integration" conf="integration" changing="true"/>

		<!-- Modules -->
		<dependency org="${project.organisation}" name="main_entrance_screen"
rev="integration" conf="integration" changing="true"/>

		<!-- Release dependencies -->
		<!-- Libraries -->
		<dependency org="${project.organisation}" name="screens-manager"
rev="1.3" conf="release"/>

		<!-- Modules -->
		<dependency org="${project.organisation}" name="main_entrance_screen"
rev="0.7" conf="release"/>
	</dependencies>
</ivy-module>
---------------------------------

---screens-manager module--------
<ivy-module version="2.0">
	<info organisation="${project.organisation}" module="${project.name}"
revision="${project.version}"/>
	<configurations>
		<conf name="release" description="Provide a release"/>
		<conf name="integration" description="Provide an integration"/>
	</configurations>
	<publications>
		<artifact type="swc" ext="swc" conf="release"/>
		<artifact type="swc" ext="swc" conf="integration"/>
	</publications>
</ivy-module>
---------------------------------

---main_entrance_screen module---
<ivy-module version="2.0">
	<info organisation="${project.organisation}" module="${project.name}"
revision="${project.version}"/>
	<configurations>
		<conf name="release" description="Provide a release"/>
		<conf name="integration" description="Provide an integration"/>
	</configurations>
	<publications>
		<artifact type="zip" ext="zip" conf="release"/>
		<artifact type="zip" ext="zip" conf="integration"/>
	</publications>
</ivy-module>
---------------------------------