瀏覽代碼

Upgrade to Resin 4.0.55, which is compatible with Java 9 (#3128)

Of the 11 frameworks that use Resin, this change makes 6 of them
compatible with Java 9.  The remaining 5 are incompatible with Java 9 for
other reasons, which we'll try to address.

I removed the line that modifies the contents of JAVA_HOME because:

 a) There is no jre directory in Java 9, so this line fails.
 b) It's not clear what this line is supposed to accomplish in the first
    place.  I've never had to do this for my own Java + Resin
    installations.
Michael Hixson 7 年之前
父節點
當前提交
dbdd0f69d7
共有 1 個文件被更改,包括 1 次插入3 次删除
  1. 1 3
      toolset/setup/linux/webservers/resin/resin.sh

+ 1 - 3
toolset/setup/linux/webservers/resin/resin.sh

@@ -4,12 +4,10 @@ fw_depends java
 
 fw_installed resin && return 0
 
-RVER=4.0.53
+RVER=4.0.55
 RESIN=resin-$RVER
 RESIN_HOME=$IROOT/$RESIN
 
-sudo cp -r $JAVA_HOME/include $JAVA_HOME/jre/bin/
-
 fw_get -O http://www.caucho.com/download/resin-$RVER.tar.gz
 fw_untar resin-$RVER.tar.gz
 cd resin-$RVER