SVN and exporting modules

2
Hi guys, In my application App1 I have 5 modules. One of these modules I have exported it and I'm using it in another application App2. Is it possible to, somehow, make App2 always fetch the SVN head version of the exported module of App1, so that when App1 is altered, App2 is "updated" as well? I'm just curious. This isn't something that I need. Regards.
asked
1 answers
2

Short answer: No.

Long answer: Still no. Subversion does have the concept of "externals". You can map a directory to (a part of) another repository and every time you update you will also get the changes from the other repository. However, a Modeler project looks like a monolithic binary file to subversion and there is no directory that represents a module. That is why externals cannot be used for this purpose.

In the future we will, however, look at better ways of keeping modules that originate from the App Store up to date but that something for another day.

answered