Hello, I have tried to store extra information along project using Actions 
- it works great for builds

I have implemented the following method in JobProperty class

@Override
    public Collection<? extends Action> getJobActions(AbstractProject<?, ?> 
job)
    {
        List<Action> list = new ArrayList<Action>();
        list.add(new ExtraInfoAction());

        return list;
    }

the problem is that ExtraInfoAction is always recreated and not persisted

could you please advice how to save extra data per project?

Thanks in advance

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to