Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] bin.includes value(s) must be specified.

Hi Paul,


the error is not about the output folder but what should be included in the binary build artifact. So it's saying that within your build.properties file "

C:\gitUsque02Repo\plugins\com.MyApp.app\build.properties" you have to specify a "bin.includes" value.

In most cases - for Eclipse plugins - this is the content of such a build.properties file:


source.. = src/
output.. = bin/
bin.includes = .


You could either change this file in a text editor or use the "Build Properties Editor" within Eclipse.

You might not see this error on other projects because within that projects the build properties file does have such a value?


hth

-martin


 



Von: tycho-user-bounces@xxxxxxxxxxx <tycho-user-bounces@xxxxxxxxxxx> im Auftrag von paul <paul@xxxxxxxxxxxx>
Gesendet: Sonntag, 01. Mai 2016 17:41
An: tycho-user@xxxxxxxxxxx
Betreff: [tycho-user] bin.includes value(s) must be specified.
 

Eclipse Mars.2

Windows 7

Maven 3.3.9

Tycho 0.24.0

 

I am new to Tycho and Maven.

 

[ERROR] Failed to execute goal org.eclipse.tycho:tycho-packaging-plugin:0.24.0:package-plugin (default-package-plugin) on project com.MyApp.app: C:\gitUsque02Repo\plugins\com.MyApp.app\build.properties: bin.includes value(s) must be specified. -> [Help 1]

org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.eclipse.tycho:tycho-packaging-plugin:0.24.0:package-plugin (default-package-plugin) on project com.MyApp.app: C:\gitUsque02Repo\plugins\com.MyApp.app\build.properties: bin.includes value(s) must be specified.

 

 

Why am I getting messages during build that my project must have the output directory as "bin/".  I though the output default was "target/". 

Add why is the error not showing up on all projects?   

Will I have to go into each project Java Build Path and change the "Default output folder:".  Or is there something else going on?

 

 


Back to the top