Skip to content

Releases: TotalCross/totalcross-maven-plugin

v2.0.3

Choose a tag to compare

@flsobral flsobral released this 27 Apr 18:01

Changed

Fixed

  • Java path on MacOS. (Path on Zulu JDK 11 changed since our last release)

2.0.2

Choose a tag to compare

@ricardobna ricardobna released this 27 Oct 15:41

Changed

  • Update JDK version to 11 to fix UserAnonymousData bug.

2.0.1

Choose a tag to compare

@acmlira acmlira released this 22 Sep 15:57

Changed

  • Retrolambda no longer uses system Java, now uses the JDK downloaded by the plugin.

Now users will be able to use any version of Java greater than 8 😅

2.0.0

Choose a tag to compare

@acmlira acmlira released this 21 Sep 17:28
3eb11f6

Added

  • parameter : by using this parameter, when packaging, it will use the path passed here as the jdk to build.

    <configuration>
        <jdkPath>path/to/jdk</jdkPath>
    </configuration>
  • Support for any Java version to use with TotalCross development, it's important to say we didn't add support to newer bytecode, this is just so the user can download any version of Java and use what we already support, this was done with embedding the latest Zulu build of version 8 and using it when packaging. Using it will assume you agree to the Terms of Use from Azul, if you don't agree to it you can use your JAVA_HOME with the jdkPath parameter:

    <configuration>
        <jdkPath>${env.JAVA_HOME}</jdkPath>
    </configuration>