Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] please test staged Tycho 2.0.0


Hi,
Try to add: <executionEnvironment>JavaSE-14</executionEnvironment> to target-platform-configuration

      <plugin>
        <groupId>org.eclipse.tycho</groupId>
        <artifactId>target-platform-configuration</artifactId>
        <configuration>
          <resolver>p2</resolver>
          <dependency-resolution>
            <optionalDependencies>ignore</optionalDependencies>
          </dependency-resolution>
          <target>
            <artifact>
              <groupId>org.ruminaq</groupId>
              <artifactId>org.ruminaq.target</artifactId>
              <version>${project.parent.version}</version>
            </artifact>
          </target>
          <ignoreTychoRepositories>true</ignoreTychoRepositories>
          <executionEnvironment>JavaSE-14</executionEnvironment>


I remember that it solved the issue in my case.

Best,

Marek





śr., 5 sie 2020 o 14:37 Lars Vogel <lars.vogel@xxxxxxxxxxx> napisał(a):
Hi Mickael,

thanks. Yes, Tycho does not work for BREE > 11 so if Tycho should
support > Java 11 this should most likely be fixed. I opened
https://bugs.eclipse.org/bugs/show_bug.cgi?id=565831

To reproduce, just change one of your plug-in BREEs to Java 12 or Java
13 or Java 14 and run a build.

Best regards, Lars

On Wed, Aug 5, 2020 at 1:39 PM Mickael Istria <mistria@xxxxxxxxxx> wrote:
>
> Hi Lars,
>
> This issue is not related to Tycho 2.0 release as it's also happening with Tycho 1.7.0. We won't delay the 2.0 release for something that's not a regression.
> However, Tycho 2.0 is expected to have support for JavaSE-1.8, JavaSE-9, JavaSE-11, JavaSE-13, JavaSE-14, JavaSE-15. If those BREE don't work as expected, then it can be seen as a blocker for the 2.0 release.
>
> Cheers,
> _______________________________________________
> tycho-user mailing list
> tycho-user@xxxxxxxxxxx
> To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/tycho-user



--
Eclipse Platform project co-lead
CEO vogella GmbH

Haindaalwisch 17a, 22395 Hamburg
Amtsgericht Hamburg: HRB 127058
Geschäftsführer: Lars Vogel, Jennifer Nerlich de Vogel
USt-IdNr.: DE284122352
Fax (040) 5247 6322, Email: lars.vogel@xxxxxxxxxxx, Web: http://www.vogella.com
_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/tycho-user

Back to the top