Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Tycho does not pick up java files during compilation

Yes, I think something like the following file is necessary to let Tycho know where to find source code (source=) and what else to include in the jar (bin.includes=). If you created your plug-in with Eclipse PDE, this file should have been created automatically.

### BEGIN build.properties example ###
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
               .,\
               plugin.xml

### END build.properties example ###

Kind regards,
Mikhail Kalkov


On Tue, Jan 14, 2014 at 10:50 PM, Alexander Baier <lexi.baier@xxxxxxxxx> wrote:
On 2014-01-14 18:26 Andreas Sewe wrote:
> Hello,
>
>> What did I miss here? If you need further information, I will gladly
>> provide that!
>
> how does you build.properties file look like (to be found in your
> eclipse-plugin projects basedir)?

There is none. Should there be one?

Thanks,
--
 Alexander Baier

_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top