Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r7fRx-006Dgx-Ku for pgsql-jdbc-commits@arkaria.postgresql.org; Mon, 27 Nov 2023 17:31:13 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1r7fRw-00FCZG-AH for pgsql-jdbc-commits@arkaria.postgresql.org; Mon, 27 Nov 2023 17:31:12 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r7fRw-00FCZ2-3L for pgsql-jdbc-commits@lists.postgresql.org; Mon, 27 Nov 2023 17:31:12 +0000 Received: from out-24.smtp.github.com ([192.30.252.207]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r7fRq-007dTU-Ie for pgsql-jdbc-commits@lists.postgresql.org; Mon, 27 Nov 2023 17:31:10 +0000 Received: from github.com (hubbernetes-node-7488e21.ac4-iad.github.net [10.52.130.25]) by smtp.github.com (Postfix) with ESMTPA id 279EA1E112F for ; Mon, 27 Nov 2023 09:31:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2023; t=1701106265; bh=jVnq1IKcMOXcv1kecorW6wQdFH74nqstkuCZr/r8Ku8=; h=Date:From:To:Subject:From; b=LUB2+6izsIcC+6RTUXU8rKYVZaGqXin1+0yfwInjIWk71gJNmqoidPQGnz/b2koEe zZHVswqMzVttEgrp3+B+/sBNHWufDe61+kR52jIikJGLJi8hCGjtn8kQFauOMk79iE FRNZlnUetqlwiWDmG2JG72dO9sA1gR43Dpw3He+w= Date: Mon, 27 Nov 2023 09:31:05 -0800 From: Vladimir Sitnikov To: pgsql-jdbc-commits@lists.postgresql.org Message-ID: Subject: [pgjdbc/pgjdbc] 62b0ee: chore: use java.release=8 when building pgjdbc fro... Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Approved: 58GruLoMopuc X-GitHub-Recipient-Address: pgsql-jdbc-commits@lists.postgresql.org X-Auto-Response-Suppress: All List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Branch: refs/heads/master Home: https://github.com/pgjdbc/pgjdbc Commit: 62b0eeccd5c70a255171403ef94e8113bda217d1 https://github.com/pgjdbc/pgjdbc/commit/62b0eeccd5c70a255171403ef94e8113bda217d1 Author: Vladimir Sitnikov Date: 2023-11-27 (Mon, 27 Nov 2023) Changed paths: M pgjdbc/reduced-pom.xml Log Message: ----------- chore: use java.release=8 when building pgjdbc from the generated source distribution (#3038) Previously, pom.xml used source=1.8, target=1.8 so it might produce invalid bytecode when running on Java 1.8 Now pom.xml would use --release 8 to avoid such issues. See https://github.com/pgjdbc/pgjdbc/issues/3014