views:

94

answers:

1

i have setup my project in SVN to use an external library. When i want to push some modifications to the live server i do a diff between versions and copy only the changed files. My problem is that the diff does not check the external modifications also, it justs returns the project modifications.

What is your strategy to deploy modifications for projects with external code. Thanks.

+2  A: 

We use a build tool (Maven) for checking and updating the dependencies. Those are configured in build-scripts and stay on some server from where they are downloaded accoding to the config-files.

boutta