We have recently switched from Weblogic 12 to 14 and in WL 12 we were using JRebel by setting Java Options in WebLogic startup bat file e.g:
set REBEL_HOME=%VIEW_HOME%\...\jrebel5
if exist "%VIEW_HOME%\...\jrebel5\jrebel.jar" set REBEL_HOME=%VIEW_HOME%\...\jrebel5
if exist %REBEL_HOME%\jrebel.jar (
set JAVA_OPTIONS=-noverify -javaagent:%REBEL_HOME%\jrebel.jar -DAPP_HOME=%APP_HOME% %JAVA_OPTIONS%
set JAVA_OPTIONS=-Drebel.log=true !JAVA_OPTIONS!
set JAVA_OPTIONS=-Drebel.metro_plugin=true !JAVA_OPTIONS!
)
But now since we are starting the WebLogic via maven and it is added as a dependency in pom, so I can't find a way to activate the JRebel for our application. Any help will be appreciated.