Reputation: 43
I have an RCP Application that I created in eclipse using the Vogella Tutorial. Currently, I have to manually build the project using the export wizard.
I would like to create a headless build using Maven Tycho, and have attempted this using the Vogella Tutorial.
I am running into the issue of not finding the .mvn/extensions.xml
file and thus cannot execute a headless build.
Upvotes: 1
Views: 293
Reputation: 301
The file .mvn/extensions.xml
does not exist. You have to create it yourself.
Just create a new directory .mvn
and inside it a file extensions.xml
. Then copy and paste the XML from chapter 2.3 of the Tycho tutorial.
Upvotes: 1