Apache ActiveMQ 各个版本所依赖的JDK版本

来源:互联网 发布:如何预防网络电信诈骗 编辑:程序博客网 时间:2024/06/06 06:01

ActiveMQ下载地址

http://activemq.apache.org/download-archives.html

ActiveMQ 依赖JDK版本

MQ版本号Build-Jdk依赖JDKapache-activemq-5.0.01.5.0_121.5+apache-activemq-5.1.01.5.0_121.5+apache-activemq-5.2.01.5.0_151.5+apache-activemq-5.3.01.5.0_171.5+apache-activemq-5.4.01.5.0_191.5+apache-activemq-5.5.01.6.0_231.6+apache-activemq-5.6.01.6.0_261.6+apache-activemq-5.7.01.6.0_331.6+apache-activemq-5.8.01.6.0_371.6+apache-activemq-5.9.01.6.0_511.6+apache-activemq-5.10.01.7.0_12-ea1.7+apache-activemq-5.11.01.7.0_601.7+apache-activemq-5.12.01.7.0_801.7+apache-activemq-5.13.01.7.0_801.7+apache-activemq-5.14.01.7.0_801.7+apache-activemq-5.15.01.8.0_1121.8+

如何查看官方发布ActiveMQ依赖JDK版本

以版本 apache-activemq-5.15.0 为例

方法1:查看 release-note

ActiveMQ 5.15.0 ReleaseJava 8 RequiredThe minimum Java version has been upgraded to Java 8.
  • 1
  • 2
  • 3
  • 4

方法2:查看文件 activemq-all-*.jar\META-INF\MANIFEST.MF 属性值 Build-Jdk

Manifest-Version: 1.0Implementation-Title: ActiveMQ :: All JAR bundleImplementation-Version: 5.15.0Archiver-Version: Plexus ArchiverBuilt-By: cshannonSpecification-Vendor: The Apache Software FoundationSpecification-Title: ActiveMQ :: All JAR bundleImplementation-Vendor-Id: org.apache.activemqImplementation-Vendor: The Apache Software FoundationMain-Class: org.apache.activemq.console.command.ShellCommandCreated-By: Apache Maven 3.5.0Build-Jdk: 1.8.0_112Specification-Version: 5.15.0
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

EOF