Can't compile skeleton: Failed to execute goal org.eclipse.tycho

Hi,

I’m trying to compile my first binding (with mvn clean install) but it fails with: “Failed to execute goal org.eclipse.tycho:tycho-packaging-plugin:1.0.0:package-plugin”
For testing I just created a new blank skeleton as described here and I get the same error.

I figured out that my binding does not generate the jar file on the targets folder (as all the other bindings).
The target folder is created but only contains this 3 folders:

  • classes (with java-class files)
  • generated-sources
  • maven-status

I compared the output with those from the other bindings and figured out that tycho-packaging-plugin is not packing the jar.
Next I compared the config files of my binging with those from some other (working) bindings. But unfortunately I could’t spot the difference.

Could somebody help me to get it compiling?

windows 10 x64
mvn 3.5.3
current master
openhab2 addon

build.properties:

source..=src/main/java/
output..=target/classes
bin.includes=META-INF/,\
             .,\
             OSGI-INF/,\
             ESH-INF/,\
             NOTICE

Some parts of the log file:

[ERROR] Failed to execute goal org.eclipse.tycho:tycho-packaging-plugin:1.0.0:package-plugin (default-package-plugin) on project org.openhab.binding.eurothermostat: D:\Users\user\openhab\openhab2-master\git\openhab2-addons\addons\bindin
g\org.openhab.binding.eurothermostat\build.properties: bin.includes value(s) [NOTICE] do not match any files. → [Help 1]

Try removing NOTICE from your includes.

Thanks!