From owner-svn-doc-all@freebsd.org Sun Mar 15 18:43:06 2020 Return-Path: Delivered-To: svn-doc-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1EB5E275F0D; Sun, 15 Mar 2020 18:43:06 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48gSx45JWdz3KTk; Sun, 15 Mar 2020 18:43:04 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 58F8EC1B1; Sun, 15 Mar 2020 18:43:04 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02FIh4HI028445; Sun, 15 Mar 2020 18:43:04 GMT (envelope-from glewis@FreeBSD.org) Received: (from glewis@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02FIh4IN028444; Sun, 15 Mar 2020 18:43:04 GMT (envelope-from glewis@FreeBSD.org) Message-Id: <202003151843.02FIh4IN028444@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: glewis set sender to glewis@FreeBSD.org using -f From: Greg Lewis Date: Sun, 15 Mar 2020 18:43:04 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r53986 - head/en_US.ISO8859-1/htdocs/java X-SVN-Group: doc-head X-SVN-Commit-Author: glewis X-SVN-Commit-Paths: head/en_US.ISO8859-1/htdocs/java X-SVN-Commit-Revision: 53986 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2020 18:43:06 -0000 Author: glewis Date: Sun Mar 15 18:43:03 2020 New Revision: 53986 URL: https://svnweb.freebsd.org/changeset/doc/53986 Log: Java documentation updates Based on the following: Submitted by: Klaus Küchemann Differential Revision: https://reviews.freebsd.org/D24003 Modified: head/en_US.ISO8859-1/htdocs/java/index.xml (contents, props changed) Modified: head/en_US.ISO8859-1/htdocs/java/index.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/java/index.xml Sun Mar 15 16:04:48 2020 (r53985) +++ head/en_US.ISO8859-1/htdocs/java/index.xml Sun Mar 15 18:43:03 2020 (r53986) @@ -21,48 +21,40 @@

There are two choices of Java Development Kits on FreeBSD:

    -
  • OpenJDK

    The &openjdk; project provides a native open-source - implementation of the &java; SE Platform and is available in - versions 7 and 8 for all supported FreeBSD releases on the i386 - and amd64 platforms.

    - -

    &openjdk; 7 is frequently updated, and it is suggested to refer to a - revision log for - detailed release history. Additionally, one may choose to review more information at - FreshPorts.

    - -

    To install &openjdk; 7 package use the pkg(8) utility:

    - -

    - pkg install openjdk -
    - or -
    - cd /usr/ports/java/openjdk7 -
    make install clean -
    + implementation of the &java; SE Platform. It is available for all + currently supported FreeBSD releases in the following combinations + of versions (by architecture):

    - -

    &openjdk; 8 is frequently updated, and it is suggested to refer to a - revision log for +

    aarch64: openjdk8, openjdk11, openjdk12, openjdk13

    +

    amd64: openjdk7, openjdk8, openjdk11, openjdk12, openjdk13

    +

    arm6: openjdk8

    +

    arm7: openjdk8

    +

    i386: openjdk7, openjdk8, openjdk11, openjdk12, openjdk13

    +

    powerpc: openjdk8

    +

    powerpc64: openjdk8, openjdk11, openjdk12, openjdk13

    +

    &openjdk; is frequently updated, and it is suggested to refer to + revision logs for detailed release history. Additionally, one may choose to review more information at - FreshPorts.

    + FreshPorts.

    -

    To install &openjdk; 8 package use the pkg(8) utility:

    +

    To install &openjdk; package use the pkg utility or the ports system:

    -

    - pkg install openjdk8 -
    - or -
    - cd /usr/ports/java/openjdk8 -
    make install clean -
    -

    +

    pkg install openjdk[version]

    +

    or

    +

    cd /usr/ports/java/openjdk[version] +
    make install clean +

    + +

    where [version] is one of 7, 8, 11, 12, or 13. An example (openjdk11):

    +

    pkg install openjdk11

    +

    or

    +

    cd /usr/ports/java/openjdk11 +
    make install clean +

  • @@ -70,6 +62,8 @@

    This port installs the Java Development Kit from Oracle which was built for Linux. It will run under FreeBSD using the Linux compatibility.

    +

    pkg install linux-oracle-jdk18

    +

    or

    cd /usr/ports/java/linux-oracle-jdk18
    make install clean

    @@ -88,6 +82,10 @@

I want to help by...

+ +

... fixing bugs or adding new features

+ +

The main repositories for the BSD port of OpenJDK are publically available on Github. Pull requests are welcome. You can find more information on this Wiki

... testing