Did you ever need to configure Maven dependency to local JAR? It’s rarely needed, but when it is, it’s good to know how to do that correctly.
Continue reading Maven dependency to local JARDev Tools
Spring Boot made command apps more popular, so in this post we’re going to show how in Maven run Java app from command line.
Continue reading Maven run Java app from command lineMaven use company repository (Nexus) In this post we’ll show how to configure Maven to download project libraries from your company’s repository/mirror instead of the Internet.
Continue reading Maven use company repositoryTable of Contents Init git-config Create a new repository for project: Clone existing repository: Doing changes Adding files: Removing files: Reverting changes Committing changes Correcting commits Correct the most recent commit: Correcting any previous commits: Branches Showing branches: Creating branches: Create and open new branch in one step: Open existing local branch: Connect local repository …
Continue reading Git Cheat SheetProblem: How to use Maven to package a project with dependencies? The solution is to use maven-assembly-plugin as in the following example.
Continue reading Maven package with dependenciesProblem: When running a test with Gradle and trying to print to System.out or System.err nothing happens. How to make Gradle to display standard output?
Continue reading Gradle System.out err printProblem: Running a test with EmbedMongo in Linux results in the following *error while loading shared libraries: libcrypto.so.10: cannot open shared object file*. The solution is simple!
Continue reading EmbedMongo error libssl libcryptoProblem: How to start HSQLDB Database Manager?
Continue reading HSQLDB Database Manager