JVM stack is about to be massively modernized
medium.com·9h·
Discuss: Hacker News

5 min readJust now

No one likes to fight with a build tool. Especially when you try to do some routine task, like upgrading your libraries/toolchains versions and suddenly you get an error you don’t understand what to do with. We all have been there and for some reason build tools nevertheless cause problems don’t help us to solve it anyhow. That’s just unacceptable.

However, not only that

Let’s say I’d like to add jmh into my build.

<plugin>   <groupId>org.apache.maven.plugins</groupId>   <artifactId>maven-shade-plugin</artifactId>   <version>3.2.1</version>   <executions>       <execution>           <phase>package</phase>           <goals>               <goal>shade</goal>           </goals>           <configuration>               <fi...

Similar Posts

Loading similar posts...