Path: csiph.com!news.uzoreto.com!aioe.org!bofh.it!news.nic.it!robomod From: Samyak Jain Newsgroups: linux.debian.maint.java Subject: Re: [kotlin] Call for Help! Date: Mon, 27 Jul 2020 11:30:01 +0200 Message-ID: References: X-Original-To: Andrej Shadura X-Mailbox-Line: From debian-java-request@lists.debian.org Mon Jul 27 09:20:11 2020 Old-Return-Path: X-Amavis-Spam-Status: No, score=-4.929 tagged_above=-10000 required=5.3 tests=[BAYES_00=-2, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_ENVFROM_END_DIGIT=0.25, FREEMAIL_FROM=0.001, HTML_MESSAGE=2, LDO_WHITELIST=-5, MURPHY_DRUGS_REL8=0.02, RCVD_IN_DNSWL_NONE=-0.0001] autolearn=no autolearn_force=no X-Policyd-Weight: using cached result; rate: -5.5 Dkim-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=nHaP1Sbxj5SCR301AggzwSMa4V0dCnLHUoXj0uwYspA=; b=ca8vdmcHquXZRmSnoer9HlK99GwtJGpdwVwa9Wjkfrzw52ybUgAZZ1K5bjv/ZzdlVV OVn6jkde61VW83fjTwTZ/odG9SWTm7XCxBRdSNrrYLlrL6btduVvDOluYsMtwZPjmbiP T9Qaa2+XrNLgKwV7MHYv3Z2xHjFDv+/OZd9uEAvt4qDFSPu8hbpsCjygE5WsehsNUt6W GTPuGgUfgDBEOn3SDyQL6nejYtNYMU8JoGEPV3cDj2FVgqxSDyeWhXSvqsOL1L+eOoyR xhiqnugW1pF3OcopSZVvH+lgDx/eQg/QDW+1RHJCoQwgwbqoQW0HLjhdHlOHVgQipDhD t0fA== X-Google-Dkim-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=nHaP1Sbxj5SCR301AggzwSMa4V0dCnLHUoXj0uwYspA=; b=iUPWziDWqrTKsVPjRf3ZnLLz7oOMFpM2p2iiB+d1EFslkepmdRt5FSqL1EWem21hbS d79g36JFfgWzFICj9eDizwbITcYaX9O1wXdlwc7N5xq7RjVAsCcIAVmLbZPftLsOSnwi JeYsRqMga3hHi79M4j3Lsqqi0IKSuAJCo5YIWkQkxynGhseXm8g/69oOqiO3nrDmrsdR eMCTJe0lUguv/UmMVYmklI6UNak5PCqd0GMx1xW9J/nK/2cMMIzE/1cGCSF3bwaP23y5 qm1pVNLG23j1w/WP4sDt/ddnUM8uRDaH2eAwX+xpvb3zLVJ8N2rU/6uXfVqGo7RyhrmZ USzA== X-Gm-Message-State: AOAM533lrsywKqYFyv6p8+0qn/jd6YIsd/GqQ5s+7CKn3tRUIh1PvfDy aa/OgOdsAZ7hQtS222pRTS1pp/VP6PaXSdDBAMcqiWoZCvY= X-Google-SMTP-Source: ABdhPJzAT/iDrmSM6+F1EWFs0eRfTMsjF/LxAxB2KIml2TkwH6S4vO+QD2qqXshjYT2Xk/SwCHm/uG8aenRvQKJeCo8= X-Received: by 2002:a17:90b:3508:: with SMTP id ls8mr2135018pjb.68.1595841595196; Mon, 27 Jul 2020 02:19:55 -0700 (PDT) MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="00000000000066487005ab68d3cb" X-Mailing-List: archive/latest/22403 List-ID: List-URL: List-Archive: https://lists.debian.org/msgid-search/CAOAkg3yxKonzo7p+cJgFNbNAVwmjGh0ck4yV-WDA-1zDW94Ong@mail.gmail.com Approved: robomod@news.nic.it Lines: 144 Organization: linux.* mail to news gateway Sender: robomod@news.nic.it X-Original-Cc: Debian Java X-Original-Date: Mon, 27 Jul 2020 14:49:44 +0530 X-Original-Message-ID: X-Original-References: Xref: csiph.com linux.debian.maint.java:11806 --00000000000066487005ab68d3cb Content-Type: text/plain; charset="UTF-8" Heyy, While executing kotlin sub-modules for the kotlin-Gradle-plugin task. I was facing a couple of issues, which I tried to debug it in the following ways: 1. Error Log: (https://paste.debian.net/1157933/) On finding out the reason for the same, some modules need an updated Gradle (which isn't feasible). 2. What I decided was to patch the specific kotlin-Gradle-plugin with it's an older version. Therefore, I tried for [1.2.3, 1.2.4, 1.3.30] but ended with the same error. Logs here: (). For this, I tried to add the following to target the compatibility to Java 8 in the build.gradle file of kotlin-gradle-plugin. +sourceSets { + "main" { + java { + sourceCompatibility = 1.8 + targetCompatibility = 1.8 + } +} +} + But it fails with the same error! It would be a great help if anyone can suggest something from this. Thanks and regards, Samyak Jain (samyak-jn[m]) --00000000000066487005ab68d3cb Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable

Heyy,


While executing kotlin sub-modules for the kotlin-Gradle-p= lugin task. I was facing a couple of issues, which I tried to debug it in t= he following ways:


  1. Err= or Log: (https://paste.debia= n.net/1157933/) On finding out the reason for the same, some modules ne= ed an updated Gradle (which isn't feasible).
  2. What I decided was to patch the specific kotlin-Gradle-plug= in with it's an older version. Therefore, I tried for [1.2.3, 1.2.4, 1.= 3.30] but ended with the same error. Logs here: ().

F= or this, I tried to add the following to target the compatibility to Java 8= in the build.gradle file of kotlin-gradle-plugin.


+sourceSets {

+ &= quot;main" {=C2=A0

+ java {

+ = sourceCompatibility =3D 1.8

+ t= argetCompatibility =3D 1.8

+ }

+}

+


But it fails with the same error!

=

It would be a great help if anyone can suggest something from this.


Thanks and re= gards,

Samyak Jain

(samyak-jn[m])

--00000000000066487005ab68d3cb--