Skip to content
Christoph Frick edited this page Feb 3, 2015 · 4 revisions

Known Issues

Tomcat 8 and Server Push not working

Workaround using Gradle:

configurations.all {
	resolutionStrategy {
		eachDependency {
			if (it.requested.group == 'org.apache.tomcat.embed') {
				it.useVersion '7.0.56'
			}
		}
	}
}
Clone this wiki locally