Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] tycho-user Digest, Vol 59, Issue 15

Hi Simone,

  Thanks for your reply. I am new to this tycho .Can you please tell me how to create a update site only with the jars which i need. For creating update site we need features na?. Can please give the steps to create the update site with my dependent jar files.


Thanks,

With Regards, 
Obuli Sundar.R



-----Original Message-----
From: tycho-user-bounces@xxxxxxxxxxx on behalf of tycho-user-request@xxxxxxxxxxx
Sent: Tue 7/14/2015 9:30 PM
To: tycho-user@xxxxxxxxxxx
Subject: tycho-user Digest, Vol 59, Issue 15
 
Send tycho-user mailing list submissions to
	tycho-user@xxxxxxxxxxx

To subscribe or unsubscribe via the World Wide Web, visit
	https://dev.eclipse.org/mailman/listinfo/tycho-user
or, via email, send a message with subject or body 'help' to
	tycho-user-request@xxxxxxxxxxx

You can reach the person managing the list at
	tycho-user-owner@xxxxxxxxxxx

When replying, please edit your Subject line so it is more specific
than "Re: Contents of tycho-user digest..."


Today's Topics:

   1. How to add a jar file as a dependency to eclipse	plugin using
      Tycho (Obuli Sundar)
   2. Re: How to add a jar file as a dependency to	eclipse	plugin
      using Tycho (Simone Di Cola)
   3. Adding platform dependend org.eclipse.jdt.launching to	my
      product built with tycho (Markus Oley)


----------------------------------------------------------------------

Message: 1
Date: Mon, 13 Jul 2015 22:08:04 +0530
From: "Obuli Sundar" <obulis@xxxxxxxxxxxxxxx>
To: <tycho-user@xxxxxxxxxxx>
Subject: [tycho-user] How to add a jar file as a dependency to eclipse
	plugin using Tycho
Message-ID:
	<B83ECEB5BC76C5429C9BADC50B13271A074F33D0@xxxxxxxxxxxxxxxxxxxxxxx>
Content-Type: text/plain; charset="iso-8859-1"

Hi,
I have developed a eclipse plugin which has a dependency of external jar files . I have added it as a pom dependency. But during maven build. The eclipse plugin doesn't take it.
  How can I add the jar files as dependency to eclipse plugin using Tycho. I am new to this please provide some solutions.
Thanks,

With Regards,
Obuli Sundar.R


This electronic mail (including any attachment thereto) may be confidential and privileged and is intended only for the individual or entity named above. Any unauthorized use, printing, copying, disclosure or dissemination of this communication may be subject to legal restriction or sanction. Accordingly, if you are not the intended recipient, please notify the sender by replying to this email immediately and delete this email (and any attachment thereto) from your computer system...Thank You.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dev.eclipse.org/mailman/private/tycho-user/attachments/20150713/32dbcffd/attachment.html>

------------------------------

Message: 2
Date: Tue, 14 Jul 2015 10:26:30 +0100
From: Simone Di Cola <simone_dicola@xxxxxxxxxxx>
To: "'Tycho user list'" <tycho-user@xxxxxxxxxxx>
Subject: Re: [tycho-user] How to add a jar file as a dependency to
	eclipse	plugin using Tycho
Message-ID: <DUB405-EAS4258DD4EFD94AFC492574288F9B0@xxxxxxx>
Content-Type: text/plain; charset="us-ascii"

Hi,

You should create an update site and let Tycho point to it using a target
platform. 

 

Let me know if you need help

Simone

 

From: tycho-user-bounces@xxxxxxxxxxx [mailto:tycho-user-bounces@xxxxxxxxxxx]
On Behalf Of Obuli Sundar
Sent: 13 July 2015 17:38
To: tycho-user@xxxxxxxxxxx
Subject: [tycho-user] How to add a jar file as a dependency to eclipse
plugin using Tycho

 

Hi,
I have developed a eclipse plugin which has a dependency of external jar
files . I have added it as a pom dependency. But during maven build. The
eclipse plugin doesn't take it.
  How can I add the jar files as dependency to eclipse plugin using Tycho. I
am new to this please provide some solutions.
Thanks,

With Regards,
Obuli Sundar.R


This electronic mail (including any attachment thereto) may be confidential
and privileged and is intended only for the individual or entity named
above. Any unauthorized use, printing, copying, disclosure or dissemination
of this communication may be subject to legal restriction or sanction.
Accordingly, if you are not the intended recipient, please notify the sender
by replying to this email immediately and delete this email (and any
attachment thereto) from your computer system...Thank You. 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dev.eclipse.org/mailman/private/tycho-user/attachments/20150714/51cfd42b/attachment.html>

------------------------------

Message: 3
Date: Tue, 14 Jul 2015 12:59:37 +0200
From: Markus Oley <markus.oley@xxxxxxxxxxxxxx>
To: tycho-user@xxxxxxxxxxx
Subject: [tycho-user] Adding platform dependend
	org.eclipse.jdt.launching to	my product built with tycho
Message-ID: <6236CE12-4F70-400D-8DF8-832B3D20C672@xxxxxxxxxxxxxx>
Content-Type: text/plain; charset="utf-8"

Hi anyone, 

I build an eclipse product with a headless application with tycho. Therefore I have created a project that contains a .product file and a pom.xml in this project: 

  <plugin>
        <groupId>org.eclipse.tycho</groupId>
        <artifactId>tycho-p2-director-plugin</artifactId>
        <version>${tycho.version}</version>
        <executions>
          <execution>
            <id>materialize-products</id>
            <goals>
              <goal>materialize-products</goal>
            </goals>
          </execution>
          <execution>
            <id>archive-products</id>
            <goals>
              <goal>archive-products</goal>
            </goals>
          </execution>
        </executions>
      </plugin>



and a seperate parent project which contains: 
<plugin>
                <groupId>org.eclipse.tycho</groupId>
                <artifactId>target-platform-configuration</artifactId>
                <version>${tycho.version}</version>
                <configuration>
                    <environments>
                        <environment>
                            <os>linux</os>
                            <ws>gtk</ws>
                            <arch>x86_64</arch>
                        </environment>
                        
                        <environment>
                            <os>win32</os>
                            <ws>win32</ws>
                            <arch>x86_64</arch>
                        </environment>
                        <environment>
                            <os>macosx</os>
                            <ws>cocoa</ws>
                            <arch>x86_64</arch>
                        </environment>
	
			??



But ihave the problem, that the platform dependent org.eclipse.jdt.launching (e.g. org.eclipse.jdt.launching.macosx) is not added to plugins, even if I have a dependency to org.eclipse.jdt.launching added to my product. 

Can you please tell me, what I have to configure to get these plugins added automatically into my target product? 

Thanks in advance 
Cheers
Markus

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dev.eclipse.org/mailman/private/tycho-user/attachments/20150714/833d217e/attachment.html>

------------------------------

_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/tycho-user

End of tycho-user Digest, Vol 59, Issue 15
******************************************

This electronic mail (including any attachment thereto) may be confidential and privileged and is intended only for the individual or entity named above. Any unauthorized use, printing, copying, disclosure or dissemination of this communication may be subject to legal restriction or sanction. Accordingly, if you are not the intended recipient, please notify the sender by replying to this email immediately and delete this email (and any attachment thereto) from your computer system...Thank You.

<<winmail.dat>>


Back to the top