Trying to start Tomcat 7 with "java -jar bootstrap.jar" doesn't work anymore, because tomcat-juli.jar is not on classpath (it was on Tomcat 6). Looks like the Class-Path in MANIFEST.MF does not contain it anymore. Is there a reason for this?
It's still possible to start Tomcat by calling java -classpath "tomcat-juli.jar;bootstrap.jar" org.apache.catalina.startup.Bootstrap but that's not quite as concise.