+1 (binding)

Build succeeded.

openjdk version "1.8.0_252"

OpenJDK Runtime Environment (Zulu 8.46.0.19-CA-macosx) (build 1.8.0_252-b14)

OpenJDK 64-Bit Server VM (Zulu 8.46.0.19-CA-macosx) (build 25.252-b14,
mixed mode)

I then did my personal three most important scenarios:

1. Ran on the above JDK 8 via 'ant tryme', installed nb-javac, then created
a Maven application and set the application to JDK 14, and was then able to
use text blocks and the "Enable Preview" hint in the Java Editor. Awesome.

2. Created a Maven Web application, chose GlassFish, and was then able to
choose "Jakarta EE 8 Web", and ended up with, among other things, the below
in my POM automatically, great:

<dependencies>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>${jakarta.jakartaee-api.version}</version>
<scope>provided</scope>
</dependency>
        <dependency>
            <groupId>org.eclipse.microprofile</groupId>
            <artifactId>microprofile</artifactId>
            <version>${microprofile.version}</version>
            <type>pom</type>
            <scope>provided</scope>
        </dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito-core.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

3. Ran the two Gluon JavaFX templates, after starting from the executable
(i.e., wasn't using 'ant tryme') and enabling JavaFX as prompted, both
worked out of the box.

So, it's looking really great. Thanks Neil!

Gj

On Thu, Aug 27, 2020 at 9:43 AM Jaroslav Tulach <[email protected]>
wrote:

> +1 (binding)
>
> SHA512 is OK.
>
> Builds OK with JDK8[1]:
> $ JAVA_HOME=~/bin/jdk-8/ ant build
>
> Executes OK with GraalVM 20.2:
> $ JAVA_HOME=~/bin/graalvm-ce-java8-20.2.0/ ant tryme
>
> I can open Maven project and debug it - including execution of a
> JavaScript
> file. I can open a JavaScript file and debug it with Graal.js. I can
> create a
> new HTML5/JavaScript/Node.js Application and it correctly connects to
> GraalVM's node implementation and I can debug its JavaScript including
> calls
> into Java.
>
> Thanks for assembling the release, Neil!
> -jt
>
> [1] building on GraalVM fails:
> $ JAVA_HOME=~/bin/graalvm-ce-java8-20.2.0/ ant build
> but that's OK for now.
>
> Dne středa 26. srpna 2020 16:47:38 CEST, Neil C Smith napsal(a):
> > Dear community,
> >
> > This is our first voting candidate for the 12.1 release of Apache
> > NetBeans. It is built off the same commit as 12.1-beta4. Please note
> > all requirements below for validating sources and convenience binaries
> > before voting.
> >
> > Apache NetBeans 12.1 constitutes all clusters in the Apache NetBeans
> > Git repo, which together provide the NetBeans Platform (i.e., the
> > underlying application framework), as well as all the modules that
> > provide the Java SE, Java EE, PHP, JavaScript and Groovy features of
> > Apache NetBeans.
> >
> > Build artefacts are available here :
> > https://dist.apache.org/repos/dist/dev/netbeans/netbeans/12.1/vc1
> >
> https://dist.apache.org/repos/dist/dev/netbeans/netbeans-platform/12.1/vc1
> >
> > They were built by the Jenkins pipeline and moved to their place :
> >
> https://ci-builds.apache.org/job/Netbeans/job/netbeans-TLP/job/netbeans/job/
> > release121/13/
> >
> > We are primarily voting on :
> >
> https://dist.apache.org/repos/dist/dev/netbeans/netbeans/12.1/vc1/netbeans-1
> > 2.1-source.zip
> >
> > SHA512 :
> >
> 0282eb2542212a9ac360ab63fc65653be8e1473a1dc862bf08cfc36aa915d70a561c6afe0c6b
> > 15c3bc238a411777b8e2698a3dd7c26a40b3270ab63809ed7547
> > ./netbeans-12.1-source.zip
> >
> > KEYS file :
> > https://downloads.apache.org/netbeans/KEYS
> >
> > --
> >
> > Associated to the primary source item you will have (generated with
> > pipeline mentioned above)
> > * under
> https://dist.apache.org/repos/dist/dev/netbeans/netbeans/12.1/vc1
> > binaries associated to the source
> > netbeans-12.1-bin.zip
> > as well as update content under nbms folder
> >
> > * under
> >
> https://dist.apache.org/repos/dist/dev/netbeans/netbeans-platform/12.1/vc1
> > you will find platform cluster build
> > netbeans-platform-12.1-bin.zip
> > netbeans-platform-12.1-source.zip
>
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>
>
>

Reply via email to