Earlier quoted context omitted.
PR are not the place for jokes. Developers have enough to do managing their projects, they don't need to waste time sorting through jokes. You might say, "it's just one joke, what's the big deal?" One joke, attracts others. Everyone thinks they're funny and their joke with worth everyone else's time to read it. If PR become a place that's acceptable to make jokes, it'll be flooded with noise.
> PR are not the place for jokes. There's a well-established tradition of pull requests and issues being used for commentary and humor. Here's a selection. The first one is by the founder CEO of a company with a ~$1B valuation that's prepping for an IPO and is very similar to the one everyone here is complaining about. The second one has comments from a couple well-known tech folks. And so on... https://github.com/sa…
MSBuild is now open source on GitHub
181–185 of 185 posts
Re: MSBuild is now open source on GitHub
#182Earlier quoted context omitted.
Task running is more what Ant is for, isn't it? Maven is more of a dependency management tool than a task runner. A lot of Java projects use both tools together for builds. I've never used it, but MSBuild sounds like Microsoft's version of Ant to me.
MSBuild has a lot of Ant-yness to it, yes. However, I quibble with your definition of Maven as a dependency manager--it has one (and the independent implementation that can work with Maven repos is Apache Ivy) but I've never seen a Java project use both. Usually somebody jams some sort of runner into a Maven project as a different build step or something.
Like this? http://maven.apache.org/ant-tasks/
Re: MSBuild is now open source on GitHub
#183Earlier quoted context omitted.
MSBuild has a lot of Ant-yness to it, yes. However, I quibble with your definition of Maven as a dependency manager--it has one (and the independent implementation that can work with Maven repos is Apache Ivy) but I've never seen a Java project use both. Usually somebody jams some sort of runner into a Maven project as a different build step or something.
Usually somebody jams some sort of runner into a Maven project as a different build step or something Like this? http://maven.apache.org/ant-tasks/
Re: MSBuild is now open source on GitHub
#184Earlier quoted context omitted.
Usually somebody jams some sort of runner into a Maven project as a different build step or something Like this? http://maven.apache.org/ant-tasks/
If you're lucky. I've seen a lot more home-rolled ones in Java.