While trying to use the Standalone Tomcat Redis Plugin with this plugin, it was discovered that the script in this plugin was removing a .jar file required by the Redis plugin. Please change the BuildStandalone.groovy script in the current and in the 1.2.3 versions so that it ignores the tomcat-redis-session .jar file:
Change:
if (file.name.startsWith('tomcat-') && !['embed-logging', 'jdbc', 'pool'].any { file.name.contains it }) {
To:
if (file.name.startsWith('tomcat-') && !['embed-logging', 'jdbc', 'pool', 'redis-session'].any { file.name.contains it }) {
While trying to use the Standalone Tomcat Redis Plugin with this plugin, it was discovered that the script in this plugin was removing a .jar file required by the Redis plugin. Please change the BuildStandalone.groovy script in the current and in the 1.2.3 versions so that it ignores the tomcat-redis-session .jar file:
Change: if (file.name.startsWith('tomcat-') && !['embed-logging', 'jdbc', 'pool'].any { file.name.contains it }) { To: if (file.name.startsWith('tomcat-') && !['embed-logging', 'jdbc', 'pool', 'redis-session'].any { file.name.contains it }) {