Re: Maven: Resolve Dependencies on Platform?
Daniel Mikusa
On Sat, Apr 16, 2016 at 11:30 PM, Josh Long <starbuxman(a)gmail.com> wrote:
I'm not sure if this is the right forum. I doubt it.As an experiment, I created a build pack that would do this. It hasn't been updated in a while, I don't plan to update it and it was never very solid to begin with. It was more to just see if I could make it work. It did, but the benefit was very small. I wouldn't recommend using it, but it's there if you want to look at it. https://github.com/dmikusa-pivotal/cf-maven-buildpack * that said, this is a TERRIBLE idea. Instead, prefer that one build be+1 - It's also worth mentioning that when you `cf push` something, your platform will cache any resources that are larger than 65k (default threshold, your platform's actual value may differ). The cache is global so it's not just per app or per user. Once any user pushes a file, it will be cached. This helps a ton with Java apps since JAR files are generally over the threshold and the same JAR files are used across many users & apps. Long story short, when you go to push your app you likely won't need to upload as much data as you think. Hope that helps! Dan
|
|