Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] Problem with the org.eclipse.tycho:tycho-versions-plugin

I have a project with the following structure:

com.master
  |-> com.application
          |-> com.application.generator
                |-> pom.xml
          |-> com.application.model
                |-> pom.xml
          |-> pom.xml
  |-> ...
  |-> pom.xml


When I run


mvn org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=1.2.3

on the

com.application

parent project it works fine (all versions in the manifest.mf pom.xml
files are updated correctly).

But when I run it on the master:

com.master

I get the error:

[ERROR] Failed to execute goal
org.eclipse.tycho:tycho-versions-plugin:0.13.0:set-version
(default-cli) on project com.master: Execution default-cli of goal
org.eclipse.ty
cho:tycho-versions-plugin:0.13.0:set-version failed: Line 18, column
1: Unexpected token Token (END_ELEMENT, 615:625, "</project>") ->
[Help 1]
[ERROR]

Does the tycho-versions-plugin not support a structure like this?


Back to the top