Currently I am using maven to install this file to maven local repo and then later in my application gradle build I have the dependency for this artifact.
mvn install:install-file -Dfile=locallib/wlthint3client.jar -DgeneratePom=true -DgroupId=com.oracle.weblogic -DartifactId=wlthint3client -Dversion=10.3 -Dpackaging=jar
Dependency in build.gradle
compile("com.oracle.weblogic:wlthint3client:10.3")
Is there way to install the file in to gradle local cache by using gradle ?
Thanks in advance.
-Vidya