So I have an intellij IDEA project (project A) which includes a bunch of external jar libraries. I am currently working on one of those external jar libraries (project B) and I want to replace it with the local project (project B) on my computer. So, in short: I have Project A which depends on jar B I want to
Advertisement
Tag: dependency-management
How to exclude older versions of maven dependency and use new version of it?
I am working with Maven project and I have two projects, ProjectA and ProjectB. My ProjectA is a maven library whose pom looks like this: <project …
Correct way to check Java version from BASH script
How can I check whether Java is available (in the PATH or via JAVA_HOME) from a bash script and make sure the version is at least 1.5? Answer Perhaps something like:
Advertisement