Manage version update in my local project

Hello guys,

I need some info about flowable version updates later merge my development.
For example; now i am using flowable 6.5 and i developt something for my company.
After new version, how can i manage my changes? I think manuel check and add to new version, no possibal.

Thank you

See: Building your own Flowable Spring Boot Application

Use Flowable in the application

In order to make this a Flowable application we only need to add:

<dependency>
    <groupId>org.flowable</groupId>
    <artifactId>flowable-spring-boot-starter-rest</artifactId>
    <version>${flowable.version}</version>
</dependency>

Hello Robinyo,
I guess I told wrong. I customizes flowable-engine source code for my company. when i want to ge new release (flowable-engine) i have to copy and paste all my customizes file to new release. it s not easy manage.

See:

thank you Robinyo, i wll check