Questions tagged [tycho]

Tycho is a Maven extension for building Eclipse artifacts: Eclipse plug-ins/OSGI bundles, features, p2 repositories, and RCP applications/Eclipse distributions

Eclipse plugins and OSGI bundles have their own metadata for expressing dependencies, source folder locations, etc. that are normally found in a Maven POM. Tycho uses native metadata for Eclipse plugins and OSGi bundles and uses the POM to configure and drive the build. Tycho supports bundles, fragments, features, update site projects and RCP applications. Tycho also knows how to run JUnit test plugins using OSGi runtime and there is also support for sharing build results using Maven artifact repositories.

Useful links

797 questions
0
votes
1 answer

Tycho: Parent POM needs to list plug-ins included in my feature?

I am transitioning from using Buckminster to build an Eclipse product to Tycho. I've mavenized my plug-ins and features and have a question: I created a parent feature with a POM that references my features and plugins. I don't know if I am doing…
positron
  • 3,643
  • 3
  • 22
  • 26
0
votes
1 answer

Tycho: How to copy p2 update site to a Tomcat server

Currently, I am using a Tycho build to generate my product installations/zips and p2 update site repository locally. I would like to copy only the p2 update site to a tomcat server. Any idea how to do this with the latest Tycho version?
Khalid Azam
  • 1,615
  • 19
  • 17
0
votes
3 answers

Maven Tycho: is there any way to delete "eclipsec.exe" during build?

After the successful build in window environment "eclipsec.exe" is getting created under "/products//Win32/{x86 |x86_64}/../", is there any way to delete "eclipsec.exe" during build?
Khalid Azam
  • 1,615
  • 19
  • 17
0
votes
1 answer

tycho clean launching configuartion

I want to use tycho in order to test my eclipse plugins. My test class just lists all the installed bundles for the first time. I have experimented with building and installing bundles. Now I need to start the framework without my experimental…
Anna
  • 233
  • 2
  • 8
0
votes
1 answer

Maven and Tycho code signing on OS X

I am trying to code sign my Eclipse RCP application using a Maven+Tycho build system. I added this piece of code to my pom.xml in order to sign the .app that gets created on the OS X box:
Valerio Santinelli
  • 1,592
  • 2
  • 27
  • 45
0
votes
1 answer

How to make use of a 3rd party plugin installed locally?

I have downloaded and installed the P4 Eclipse plugins (specifically com.perforce.team.core) and have written a plugin of my own to extend from theirs. Using Tycho to automate the headless build is proving tough however. The build process…
Martin Cowie
  • 2,788
  • 7
  • 38
  • 74
0
votes
2 answers

How to build a p2 site for the Eclipse delta pack?

I am trying to build my own p2 update site for the Eclipse delta site (since it is not available as p2 update site). What I did: # Get the delta pack from Eclipse web site # wget…
Loic O
  • 125
  • 2
  • 6
0
votes
1 answer

How to add a dependency to an Eclipse bundle in a Tycho build

I want to include org.eclipse.uml2.uml_4.0.0.v20120604-0919.jar in a Maven module. I've set up the p2 repository juno p2 http://download.eclipse.org/releases/juno and…
SpaceTrucker
  • 13,377
  • 6
  • 60
  • 99
0
votes
1 answer

SWTBOT switch workspace

I am using SWTBOT with tycho-surfire to test an eclipse application. The tests runs individually fine, but when I combine them I need to switch the workspace after each test, or specify somehow a specific workspace for each test. When I try to…
mazab
  • 1
  • 1
0
votes
1 answer

bundle not found during eclipse feature install from command line

I used eclipsec.exe -application org.eclipse.equinox.p2.director -repository file:///d:/updatesite/target -installIU myPlugin.feature.feature.group -destination d:/eclipse/ -profile SDKProfile but I get this…
becks
  • 2,656
  • 8
  • 35
  • 64
0
votes
1 answer

missing maven dependencies in RCP product using tycho

I'm using tycho for creating a RCP product but as soon as I set the plugin pom packaging to eclipse-plugin ,maven dependency library removes from project and cause lots of error because of missing library.I've tried running maven both on terminal…
Arvin
  • 315
  • 3
  • 18
0
votes
1 answer

Creating Tycho product error: Missing requirement

I'm new to Tycho. I am trying to create a product using Tycho, but every time I run it, I run into the following error: Cannot resolve project dependencies: [ERROR] Software being installed: RCPplugin.RCPplugin 0.0.1.qualifier [ERROR] Missing…
Arvin
  • 315
  • 3
  • 18
0
votes
2 answers

Eclipse product configuration: Setting launcherArgs for "arch"

The eclipse product configuration has the section "launcherArgs" which can be specified globally or for any supported platform. We build our product for win32 as x86 and x86_64 and I want to have a different .ini generated depending on the arch…
Alexander Hansen
  • 813
  • 8
  • 14
0
votes
1 answer

how to debug maven tycho plugin?

I followed steps mentioned in http://wiki.eclipse.org/Developing_Tycho and downloaded tycho source code. To debug eclipse project (which uses maven tycho), I followed steps steps mentioned…
Deepali
  • 33
  • 1
  • 7
0
votes
1 answer

How to install renamed Tycho product into maven repository

I tried to use the new Tycho feature for renaming the produced artifact. The zip files are renamed correctly under the target/products directory, but when Maven installs them to C:\.m2, they will have the original name.
Philipp
  • 383
  • 5
  • 20