Tagged Questions
6
votes
2answers
198 views
How to deploy locally already installed artifact with Maven
Story
I know, that maven deploy command runs through the whole lifecycle. My problem, that it takes to much time in my case. Let me explain:
There is an application built up from a Server, and a ...
0
votes
1answer
59 views
Build workflow to build an eclipse rcp application by feature builds
I'm searching for an build workflow to build an eclipse rcp application by feature builds with maven 3 with tycho and hudson.
My Example:
3 Features
Feature A
Feature B
Feature C
2 Products
...
0
votes
3answers
81 views
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?
0
votes
1answer
109 views
third party bundles dependencies in Maven/Tycho build
how to handle third party bundles dependencies in Maven/Tycho build ?
0
votes
1answer
119 views
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 ...
0
votes
1answer
505 views
tycho-p2-director-plugin materialize-products execution fails because wants a directory but was .jar
I try to build product with tycho 0.13.0 but i get a following error while materialize-product execute.
An error occurred while installing the items session context
was:(profile=DefaultProfile,
...
1
vote
3answers
639 views
rename ZIP files created by tycho-p2-director-plugin
tycho-p2-director-plugin does not seem to have a way to add a version number to the final ZIP file names. it produces
myproduct-win32.win32.x86.zip
myproduct-macosx.cocoa.x86.zip
...
0
votes
3answers
600 views
Tycho puts “p2” folder in the product with eclipse-repository and tycho-p2-director-plugin plugins
I changed my Tycho+Maven build (RCP application) to use Tycho 0.13 and eclipse-repository plus tycho-p2-director-plugin (instead of my old "eclipse-application" in Tycho 0.10).
I managed to get the ...
3
votes
1answer
256 views
Beginning with Eclipse Tycho
I have a maven application that I'd like to convert to Eclipse RCP. My application has a large amount of dependencies that are currently specified in the POM.
I am not sure how to deal with this ...
0
votes
2answers
1k views
How do I deploy the results of a tycho p2 repository build to a place on the local file system or a locally maintained p2 repository
I have a working Tycho build that produces a working p2 repository. My current work flow is to manually drag and drop the results of this build from the project's target dir to the web server that ...
4
votes
1answer
608 views
tycho & jar signing
I'm using maven & tyhco to compile & build my eclipse plugins and create a p2 repository.
However, when I install my plugins, eclipse shows a warning for the untrusted content. I know that ...
2
votes
2answers
1k views
Problems building Eclipse RCP application
I'm trying to build a Eclipse RCP application with Maven/Tycho based on features. My application is a simple language with an editor (built within help of Xtext) and a few other plugins which are ...
0
votes
1answer
103 views
javadoc:aggregate deletes product target folder
I can "mvn clean install" to generate zip file of my multi-project application in target folder of my product project. I can run "mvn clean javadoc:aggregate" to generate javadocs.
no problem up to ...
0
votes
2answers
299 views
Maven 3: override command line in POM
We can override properties defined in POM using command line.
Can we somehow make the opposite effect? To override command line parameters in POM?
I have a Hudson with "-Dmaven.test.skip -DskipTests ...
4
votes
1answer
5k views
Cannot resolve Mockito dependency in a Tycho project [duplicate]
Possible Duplicate:
How to reference mockito within tycho?
I am trying to get a test feature project building with Tycho, but it fails to resolve dependencies listed in my pom from the ...
0
votes
1answer
810 views
Tycho: How do I deploy sources jars of packaging eclipse-plugin?
In my parent pom I got this configuration to deploy sources jars:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
2
votes
1answer
323 views
maven+tycho: change build folder for “eclipse-application” target from “eclipse” to something
I build my Eclipse RCP application with Maven 3 + Tycho plugin.
the build output structure is:
/target
/win32.win32.x86
/eclipse
/win32.win32.x86_64
/eclipse
/linux.gtk.x86_64
...
3
votes
1answer
851 views
Does Tycho work with Eclipse 3.5
I've finally got round to looking at Tycho (a bridge between Maven 3 and OSGi), but I am not getting very far. Following this tutorial I have downloaded Tycho 0.3.0-DEV-1819 and the tychodemo.zip and ...