hi all
in my RCP app, i'm trying to enable users to update app via p2 respositories.
i'm using headless build with tycho and hudson, but when i add a repository i got a error like 'profile id _SELF_ not registered'
when i export application via eclipse and enable the option 'support software installation in the launched application', i can update, but my build becomes platform dependent
what am i missing?
my plugin build.properties:
source.. = src/
output.. = bin/
bin.includes = plugin.xml,\
META-INF/,\
.,\
assets/,\
log4j.properties,\
plugin_customization.ini,\
intro/
src.excludes = tests/
p2.gathering=true
product=/br.com.germantech/br.com.germantech.product
runPackager=true
my p2.inf
instructions.configure=\
addRepository(type:0,location:http${#58}//www.mysite.com/update/);\
addRepository(type:1,location:http${#58}//www.mysite.com/update/);
thanks in advance