2.4.7 Windows Installer

2016-06-12 Thread Keegan Witt
The Windows installer for Groovy 2.4.7 is now available: https://bintray.com/groovy/Distributions/Windows-Installer/groovy-2.4.7-installer/view . -Keegan

Re: Is it possible to enable CompileStatic for an entire project

2016-06-21 Thread Keegan Witt
Besides the example page, I have an integration test ( https://github.com/groovy/GMavenPlus/tree/master/src/it/configScriptCompile) making sure this functionality works. If you'd like, I'm willing to help with your pom. -Keegan On Tue, Jun 21, 2016 at 12:37 PM, Mr Andersson

Re: Integrating Groovy with a Java EE application and Maven

2016-06-21 Thread Keegan Witt
Also the usage page has the two most common ways GMavenPlus is used. -Keegan On Tue, Jun 21, 2016 at 8:31 AM, Winnebeck, Jason < jason.winneb...@windstream.com> wrote: > You are trying to do joint compilation so this is the only section you >

Re: Integrating Groovy with a Java EE application and Maven

2016-06-19 Thread Keegan Witt
I put this page together to try to explain the pros and cons of different tools: https://github.com/groovy/GMavenPlus/wiki/Choosing-Your-Build-Tool -Keegan On Sun, Jun 19, 2016 at 8:09 AM, Jochen Theodorou wrote: > On 18.06.2016 20:12, Mr Andersson wrote: > >> I was able to

2.4.6 Windows Installer

2016-02-23 Thread Keegan Witt
The Windows installer for Groovy 2.4.6 is now available: https://bintray.com/groovy/Distributions/Windows-Installer/groovy-2.4.6- installer/view. Now also includes Grengine . -Keegan

Re: Groovy Console wont start

2016-03-19 Thread Keegan Witt
Curious...it worked on both my Windows 10 home machine and my Windows 7 work machine. What's you're JAVA_HOME environment variable set to? Is it a JDK? I'm thinking maybe your JAVA_HOME isn't set, and you can't pass where Java is as an arg because groovy.c

Re: Groovy Docker images

2017-01-21 Thread Keegan Witt
t; > Gerald R. Wiltse > jerrywil...@gmail.com > > > On Fri, Jan 13, 2017 at 11:03 AM, Keegan Witt <keeganw...@gmail.com> > wrote: > >> I'm confused. Isn't Azul a commercial JRE? What's that have to do with >> Groovy in Docker? Did you reply to wrong thread

2.4.8 Windows Installer

2017-01-28 Thread Keegan Witt
The Windows installer for Groovy 2.4.8 is now available: https://dl.bintray.com/groovy/Distributions/groovy-2.4.8-installer.exe.

Re: New Gant release

2017-02-12 Thread Keegan Witt
Hi Russel, I use Sonatype to publish GMavenPlus. They have instructions here http://central.sonatype.org/pages/ossrh-guide.html. It automatically syncs with Maven Central. Would that be simpler? -Keegan On Feb 12, 2017 9:26 AM, "Russel Winder" wrote: > There were a

Re: Official Docker Groovy images

2017-03-01 Thread Keegan Witt
I'm preparing to update for 2.4.9 and am considering two significant changes to the initial image. First, to create a volume to prevent Grape caches from being put into downstream images (PR #6 ), and using a user other than root for the container

Re: Official Docker Groovy images

2017-03-02 Thread Keegan Witt
rds. Make sense? -Keegan On Thu, Mar 2, 2017 at 9:03 AM, Cédric Champeau <cedric.champ...@gmail.com> wrote: > Good job Keegan! > > Just nitpicking, but what does make those images official? Are they > endorsed by the ASF? > > 2017-03-02 1:37 GMT+01:00 Keegan Witt &l

Re: Static type checking

2016-09-03 Thread Keegan Witt
Yea don't click that one (don't know why it doesn't work -- I even tried switching out the Groovy jar version in IntelliJ's lib), instead click Project Structure -> Libraries -> + -> Java, then select the jar. -Keegan On Sat, Sep 3, 2016 at 11:06 AM, cazacugmihai wrote:

Re: Static type checking

2016-09-03 Thread Keegan Witt
Mihail, Instead of adding the whole candidate directory as a global library, just add the Groovy 2.5.0 jar as a java lib. That worked for me. -Keegan On Sat, Sep 3, 2016 at 9:38 AM, Mihai Cazacu wrote: > The issue is fixed now. Thank you! > > I just don't know how to

Looking for testers & feedback: new Groovy binaries for Windows

2016-09-01 Thread Keegan Witt
I'm building some new binaries for Windows (groovy.exe, groovyConsole.exe, etc) and am looking for some folks to test and code review it. Their temporary home is here: https://github.com/keeganwitt/groovy-binaries. After I've incorporated any feedback I get, I'll transfer it to a repo under the

Re: Looking for testers & feedback: new Groovy binaries for Windows

2016-09-07 Thread Keegan Witt
I've uploaded new executables to fix the issue with invoking without .exe suffix. -Keegan On Wed, Sep 7, 2016 at 5:21 PM, Keegan Witt <keeganw...@gmail.com> wrote: > Paco, > Good catch. I'll correct that. > > Raviteja, > That's correct, they are just wrappers. The adva

Groovy Docker images

2016-09-09 Thread Keegan Witt
I was thinking of putting together some Docker images for Groovy, with the idea they might be useful to base Grails, Gradle, etc images on and wondered people's opinions on a few things. - Should I install Groovy manually in somewhere like /opt? Or use SDKMAN? - Should I have images

Re: Looking for testers & feedback: new Groovy binaries for Windows

2016-10-17 Thread Keegan Witt
at groovy.ui.GroovyMain.process(GroovyMain.java:370) > at groovy.ui.GroovyMain.processArgs(GroovyMain.java:129) > at groovy.ui.GroovyMain.main(GroovyMain.java:109) > > 1 error > > Thanks! > Paco. > > > > On Tue, Oct 11, 2016 at 4:50 PM, Keegan Witt <keeganw...

Re: GMavenPlus compiles stubs

2016-11-21 Thread Keegan Witt
Jochen is right, Groovy compilation happens after stubgen and javac, hence it'll replace those previously generated classes. Why shouldn't javac compile the stubs? Wouldn't javac need the classes so that it has something to compile against (since Java is statically compiled) so that circular

Re: Looking for testers & feedback: new Groovy binaries for Windows

2016-10-11 Thread Keegan Witt
Actually question I guess would be whether we even need a gant.exe. Nobody really doubleclicks gant files that I'm aware of. -Keegan On Tue, Oct 11, 2016 at 4:34 PM, Keegan Witt <keeganw...@gmail.com> wrote: > Hi Paco, > Thanks again for your help. Yea, it assumes Gant will

Re: Looking for testers & feedback: new Groovy binaries for Windows

2016-10-11 Thread Keegan Witt
main class gant.Gant > > But i think i am missing the gant install, i will read more about how to > install gant correctly later today and let you know. > > Paco. > > On Mon, Sep 26, 2016 at 12:18 PM, Keegan Witt <keeganw...@gmail.com> > wrote: > >> I started ex

Re: Looking for testers & feedback: new Groovy binaries for Windows

2016-10-17 Thread Keegan Witt
gt;> ava:268) >> at groovy.lang.GroovyShell.parseClass(GroovyShell.java:688) >> at groovy.lang.GroovyShell.run(GroovyShell.java:517) >> at groovy.lang.GroovyShell.run(GroovyShell.java:507) >> at groovy.ui.GroovyMain.processOnce(GroovyMain.java:653) >>

Re: Groovy Docker images

2016-12-12 Thread Keegan Witt
. On Sun, Dec 11, 2016 at 5:12 AM, Keegan Witt <keeganw...@gmail.com> wrote: > Thanks for the feedback, Thibault. I've responded in-line. > >- Might be better not to start groovysh, might be mentioned in >Dockerfile comments instead >- It's just a default to be run when

Re: Groovy Docker images

2017-01-13 Thread Keegan Witt
gt; By comments I mean what is in the readme. Dockerfiles get copy pasted >> without attached readme, so they should be self commenting. >> >> A minimalist server example may be nice. Can be in the same repo as a >> means of documentation, I think. >> >> For grapes

Gradle Docker image available

2017-03-23 Thread Keegan Witt
FYI, I've contributed Docker Gradle images into the official images: https://hub.docker.com/_/gradle/. Enjoy! -Keegan

Re: Maven coordinates going forward

2017-03-28 Thread Keegan Witt
I'm +1 on Maven coordinate change. That should be fairly low impact. I agree package renames should be taken on a case-by-case basis. Offhand, the two biggest things that come to mind are custom ASTs, and the compilation bits. For the former, I'd think it shouldn't be any worse than the

Re: Maven coordinates going forward

2017-03-30 Thread Keegan Witt
r the > "breaking" version of Groovy, whatever it is, but not before. Which means, > the same version as the one we change package names. > > 2017-03-28 19:03 GMT+02:00 Keegan Witt <keeganw...@gmail.com>: > >> I'm +1 on Maven coordinate change. That should be f

[ANNOUNCE] Groovy 2.4.10 Windows Installer Released

2017-03-19 Thread Keegan Witt
The Windows installer for Groovy 2.4.10 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.4.10-installer.exe -Keegan

Re: Using Groovy with JavaFX

2017-06-04 Thread Keegan Witt
For the benefit of those reading the list: I responded to the related GMavenPlus issue that was raised. -Keegan On Fri, Jun 2, 2017 at 1:44 PM, dewful wrote: > Hi - > > I am new to the Groovy community. > > I am using Maven

[ANNOUNCE] Groovy 2.5.0-beta-1 Windows Installer Released

2017-06-06 Thread Keegan Witt
The Windows installer for Groovy 2.5.0-beta-1 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.5.0-beta-1-installer.exe .

[ANNOUNCE] Groovy 2.5.0-alpha-1 Windows Installer Released

2017-05-08 Thread Keegan Witt
The Windows installer for Groovy 2.5.0-alpha-1 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.5.0-alpha-1-installer.exe . -Keegan

[ANNOUNCE] Groovy 2.4.11 Windows Installer Released

2017-05-08 Thread Keegan Witt
The Windows installer for Groovy 2.4.11 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.4.11-installer.exe . -Keegan

GMavenPlus 1.6 Released

2017-09-11 Thread Keegan Witt
GMavenPlus 1.6 has been released to Sonatype OSS and should appear in Maven Central shortly. Besides the usual minor tweaks, this release includes

Re: [ANNOUNCE] Groovy 2.5.0-beta-2 and 2.6.0-alpha-1 Windows Installers Released

2017-10-09 Thread Keegan Witt
Just realized I gave the wrong link to 2.5.0-beta-2, should be https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.5.0-beta-2-installer.exe . On Mon, Oct 9, 2017 at 2:00 AM, Paul King <pa...@asert.com.au> wrote: > Nice, thanks! > > On Mon, Oct 9, 2017 at

[ANNOUNCE] Groovy 2.6.0-alpha-2 Windows Installer Released

2017-11-14 Thread Keegan Witt
The Windows installer for Groovy 2.6.0-alpha-2 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.6.0-alpha-2-installer.exe

[ANNOUNCE] Groovy 2.4.13 Windows Installer Released

2017-11-22 Thread Keegan Witt
The Windows installer for Groovy 2.4.13 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.4.13-installer.exe -Keegan

[ANNOUNCE] Groovy 3.0.0-alpha-1 Windows Installer Released

2017-12-19 Thread Keegan Witt
The Windows installer for Groovy 3.0.0-alpha-1 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.0-alpha-1-installer.exe Notable for this release, Spock is not included since it doesn't work with Groovy 3 yet.

GMavenPlus 1.6.1 Released

2018-05-06 Thread Keegan Witt
GMavenPlus 1.6.1 has been released to Sonatype OSS and should appear in Maven Central shortly. Besides the usual minor tweaks, this release includes *Bugs* [93 ]

Re: Java survey, show your Groovy love ;-)

2018-05-12 Thread Keegan Witt
It's unfortunate it won't let you choose multiple primary application languages, I think it's often an app is a mix of Java and Groovy. On Fri, May 11, 2018 at 3:31 AM, Guillaume Laforge wrote: > I just spotted this Java survey: > https://snykteam.typeform.com/to/V4LOUZ > >

[ANNOUNCE] Groovy 2.5.0 Windows Installer Released

2018-06-10 Thread Keegan Witt
The Windows installer for Groovy 2.5.0 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.5.0-installer.exe -Keegan

[ANNOUNCE] Groovy 2.5.0-rc-3 Windows Installer Released

2018-05-26 Thread Keegan Witt
The Windows installer for Groovy 2.5.0-rc-3 is available from the usual place: https://bintray.com/groovy/Distributions/Windows-Installer/groovy-2.5.0-rc-3-installer -Keegan

[ANNOUNCE] Groovy 3.0.0-alpha-2 Windows Installer Released

2018-04-28 Thread Keegan Witt
The Windows installer for Groovy 3.0.0-alpha-2 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.0-alpha-2-installer.exe -Keegan

Re: [ANNOUNCE] Groovy 3.0.0-alpha-1 Windows Installer Released

2017-12-20 Thread Keegan Witt
1.1-groovy-2.4 is what I've been including, but I got this error while testing the installation org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed: Could not instantiate global transform class org.spockframework.compiler.SpockTransform specified at

Re: [ANNOUNCE] Groovy 3.0.0-alpha-1 Windows Installer Released

2017-12-20 Thread Keegan Witt
Published. Thanks for the suggestion. -Keegan On Wed, Dec 20, 2017 at 8:35 PM, Keegan Witt <keeganw...@gmail.com> wrote: > 1.1-groovy-2.4 is what I've been including, but I got this error while > testing the installation > > org.codehaus.groovy.control.MultipleCompilat

[ANNOUNCE] Groovy 2.5.2 Windows Installer Released

2018-08-17 Thread Keegan Witt
The Windows installer for Groovy 2.5.2 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.5.2-installer.exe .

[ANNOUNCE] Groovy 2.5.1 Windows Installer Released

2018-07-15 Thread Keegan Witt
The Windows installer for Groovy 2.5.1 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.5.1-installer.exe . -Keegan

[ANNOUNCE] Groovy 3.0.0-alpha-3 Windows Installer Released

2018-07-08 Thread Keegan Witt
The Windows installer for Groovy 3.0.0-alpha-3 is available from the usual place: https://bintray.com/groovy/Distributions/Windows-Installer/groovy-3.0.0-alpha-3-installer .

[ANNOUNCE] Groovy 2.6.0-alpha-4 Windows Installer Released

2018-07-08 Thread Keegan Witt
The Windows installer for Groovy 2.6.0-alpha-4 is available from the usual place: https://bintray.com/groovy/Distributions/Windows-Installer/groovy-2.6.0-alpha-4-installer .

[ANNOUNCE] Groovy 2.5.0-rc-1 Windows Installer Released

2018-04-15 Thread Keegan Witt
The Windows installer for Groovy 2.5.0-rc-1 is available from the usual place: https://bintray.com/groovy/Distributions/Windows-Installer/groovy-2.5.0-rc-1-installer -Keegan

[ANNOUNCE] Groovy 2.6.0-alpha-3 Windows Installer Released

2018-03-30 Thread Keegan Witt
The Windows installer for Groovy 2.6.0-alpha-3 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.6.0-alpha-3-installer.exe -Keegan

[ANNOUNCE] Groovy 2.4.15 Windows Installer Released

2018-03-30 Thread Keegan Witt
The Windows installer for Groovy 2.4.15 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.4.15-installer.exe -Keegan

[ANNOUNCE] Groovy 2.5.0-beta-3 Windows Installer Released

2018-03-30 Thread Keegan Witt
The Windows installer for Groovy 2.5.0-beta-3 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.5.0-beta-3-installer.exe -Keegan

[ANNOUNCE] Groovy 2.4.14 Windows Installer Released

2018-03-03 Thread Keegan Witt
The Windows installer for Groovy 2.4.14 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.4.14-installer.exe -Keegan

Re: GMavenPlus 1.6.2 Released

2018-10-14 Thread Keegan Witt
Sorry, one point of clarification on a copy/paste error: the Java 10 and 11 bytecode changes are enhancements, not bugs. On Sun, Oct 14, 2018 at 4:28 PM Keegan Witt wrote: > GMavenPlus 1.6.2 has been released to Sonatype OSS > <https://oss.sonatype.org/content/repositories/public/>

GMavenPlus 1.6.2 Released

2018-10-14 Thread Keegan Witt
GMavenPlus 1.6.2 has been released to Sonatype OSS and should appear in Maven Central shortly. Bugs - Support for Java 10 bytecode (#104 ) - Support for

[ANNOUNCE] Groovy 2.5.3 Windows Installer Released

2018-10-14 Thread Keegan Witt
The Windows installer for Groovy 2.5.3 is available from the usual place: https://bintray.com/groovy/Distributions/Windows-Installer/groovy-2.5.3-installer .

[ANNOUNCE] Groovy 2.5.4 Windows Installer Released

2018-11-11 Thread Keegan Witt
The Windows installer for Groovy 2.5.4 is available from the usual place: https://bintray.com/groovy/Distributions/Windows-Installer/groovy-2.5.4-installer .

Groovy on ppc64le, arm64v8, and s390x

2018-12-31 Thread Keegan Witt
I'm trying to fix some errors I have in the Docker Groovy images on the ppc64le, arm64v8, and s390x architectures. I don't personally have any experience working with these architectures. Here are the errors I get *powerpc64le

[ANNOUNCE] Groovy 2.4.16 Windows Installer Released

2018-12-16 Thread Keegan Witt
The Windows installer for Groovy 2.4.16 is available from the usual place: https://bintray.com/groovy/Distributions/Windows-Installer/groovy-2.4.16-installer . -Keegan

[ANNOUNCE] Groovy 2.5.5 Windows Installer Released

2018-12-24 Thread Keegan Witt
The Windows installer for Groovy 2.5.5 is available from the usual place: https://bintray.com/groovy/Distributions/Windows-Installer/groovy-2.5.5-installer . -Keegan

Re: [ANNOUNCE] Groovy 3.0.0-alpha-4 Windows Installer Released

2018-12-30 Thread Keegan Witt
gan! > > For anyone interested, you should be able to use snapshot versions of > Spock with Groovy 3.0.0. > > > On Mon, Dec 31, 2018 at 11:39 AM Keegan Witt wrote: > >> The Windows installer for Groovy 3.0.0-alpha-4 is available from the >> usual place: >>

[ANNOUNCE] Groovy 3.0.0-alpha-4 Windows Installer Released

2018-12-30 Thread Keegan Witt
The Windows installer for Groovy 3.0.0-alpha-4 is available from the usual place: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.0-alpha-4-installer.exe . Note this installer doesn't include Spock since there isn't a Spock release compatible with Groovy 3.0. -Keegan

GMavenPlus 1.6.3 Released

2019-03-24 Thread Keegan Witt
GMavenPlus 1.6.3 has been released to Sonatype OSS and should appear in Maven Central shortly. This release includes Bugs None Enhancements - Ability to use Groovy from plugin dependencies (creates a single

[ANNOUNCE] Groovy 2.5.6 Windows Installer Released

2019-02-07 Thread Keegan Witt
The Windows installer for Groovy 2.5.6 is available from the usual place: https://bintray.com/groovy/Distributions/Windows-Installer/groovy-2.5.6-installer . -Keegan

Re: Groovy file associations on Windows

2019-02-17 Thread Keegan Witt
I hear you. But where do you draw the line? There are a lot of popular libraries we also could include besides Gpars and Scriptom (e.g. Geb , Spock , groovy-wslite ,

Re: New Groovy Windows installer

2019-02-17 Thread Keegan Witt
And the Quick Launch toolbar was removed in Windows 7 (although it can be added back manually), so I think I won't bother with those shortcuts. I never noticed it was removed because I never used it. On Sun, Feb 17, 2019 at 6:56 PM Keegan Witt wrote: > > Update: The documentation dir

Re: New Groovy Windows installer

2019-02-17 Thread Keegan Witt
Update: The documentation directory on the start menu actually does get created -- Windows 10 just doesn't show subdirectories on start menu folders like previous versions of Windows did. On Sun, Feb 10, 2019 at 11:07 PM Keegan Witt wrote: > > Oh, and one important note for those p

Re: Groovy file associations on Windows

2019-02-17 Thread Keegan Witt
Actually, for Gpars, that's in the Groovy binary zip, so that's included already. On Sun, Feb 17, 2019 at 6:42 PM Keegan Witt wrote: > > I hear you. But where do you draw the line? > > There are a lot of popular libraries we also could include besides Gpars and > Scriptom (

Re: New Groovy Windows installer

2019-02-18 Thread Keegan Witt
ost powerful > set of tools available to create your Windows installation experience.” > > That makes more sense. > > Though it’s a shame that a multi-platform Java based installer could not > be used (if such a thing exists). > > > > Merlin Beedell > > *From:* Keegan

Re: New Groovy Windows installer

2019-02-10 Thread Keegan Witt
Oh, and one important note for those playing with the new installer: uninstall the NSIS based Groovy first and make sure GROOVY_HOME, %PROGRAM_FILES%\Groovy, and PATH are free from references to the old installation before proceeding. On Sun, Feb 10, 2019 at 9:26 PM Keegan Witt wrote: > &

Groovy file associations on Windows

2019-02-10 Thread Keegan Witt
In addition to removing projects that are no longer developed from the Groovy Windows installer (Gpars, Gaelyk, Scriptom, EasyB, Gant, GMock), I'm considering removing the exe files from groovy-native-launcher . These haven't been compiled in

Re: New Groovy Windows installer

2019-02-10 Thread Keegan Witt
Oh, one more item - Is 200 the installer version I should use? On Sun, Feb 10, 2019 at 9:24 PM Keegan Witt wrote: > I'm working on a new installer <https://github.com/keeganwitt/groovy-wix> > for Windows using WIX <http://wixtoolset.org/> to create an MSI > installer,

Re: Groovy file associations on Windows

2019-02-11 Thread Keegan Witt
actively > maintained but is still very useful in its current form and I hope to put > some time into it at some stage. > > Cheers, Paul. > > > On Mon, Feb 11, 2019 at 12:24 PM Keegan Witt wrote: > >> In addition to removing projects that are no longer develo

[ANNOUNCE] Groovy 2.5.7 and 3.0.0-beta-1 Windows Installers Released

2019-05-10 Thread Keegan Witt
The Windows installer for Groovy 2.5.7 is now available from Bintray: https://bintray.com/groovy/Distributions/Windows-Installer/groovy-2.5.7-installer . The Windows installer for Groovy 3.0.0-beta-1 is now available from Bintray:

GMavenPlus 1.7.0 Released

2019-05-05 Thread Keegan Witt
GMavenPlus 1.7.0 has been released to Sonatype OSS and should appear in Maven Central shortly. This release includes Bugs - Fix executing script from URL in Groovy older than 1.7.0 (#131

[ANNOUNCE] Groovy 3.0.0-beta-2 Windows Installer Released

2019-07-14 Thread Keegan Witt
The Windows installer for Groovy 3.0.0-beta-2 is now available from Bintray: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.0-beta-2-installer.exe . I've again included a preview of an msi built with WiX, which I'm seeking feedback on:

[ANNOUNCE] Groovy 2.5.8 Windows Installer Released

2019-08-07 Thread Keegan Witt
The Windows installer for Groovy 2.5.8 is now available from Bintray: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.5.8-installer.exe . I've again included a preview of an msi built with WiX, which I'm seeking feedback on:

[ANNOUNCE] Groovy 3.0.0-beta-3 Windows Installer Released

2019-08-07 Thread Keegan Witt
The Windows installer for Groovy 3.0.0-beta-3 is now available from Bintray: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.0-beta-3-installer.exe . I've again included a preview of an msi built with WiX, which I'm seeking feedback on:

GMavenPlus 1.8.1 Released

2019-11-12 Thread Keegan Witt
GMavenPlus 1.8.1 has been released. This release includes Bugs - #147 Change sourcesets internal storage from HashSet to TreeSet, to avoid unpredictable Groovy compiler output. - #145

[ANNOUNCE] Groovy 3.0.0-rc-2 Windows Installer Released

2019-12-13 Thread Keegan Witt
The Windows installer for Groovy 3.0.0-rc2 is now available from Bintray: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.0-rc-2-installer.exe . I've again included a preview of an msi built with WiX, which I'm seeking feedback on:

[ANNOUNCE] Groovy 3.0.0-rc-1 Windows Installer Released

2019-10-27 Thread Keegan Witt
The Windows installer for Groovy 3.0.0-rc1 is now available from Bintray: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.0-rc-1-installer.exe . I've again included a preview of an msi built with WiX, which I'm seeking feedback on:

GMavenPlus 1.8.0 Released

2019-09-22 Thread Keegan Witt
This was a small release, offering one new feature. It bumped up the minor version because it may require you to adjust your POM to upgrade. Bugs - None Enhancements - Allow for invocation using only project classpath (#140 ). This is

[ANNOUNCE] Groovy 3.0.0 Windows Installer Released

2020-02-11 Thread Keegan Witt
The Windows installer for Groovy 3.0.0 is now available from Bintray: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.0.msi . As I believe I've mentioned previously, I planned on ending producing the NSIS .exe installers and only providing the Wix based .msi

Groovy branches and Docker images

2020-03-04 Thread Keegan Witt
When Groovy 3.0.0 was released, I stopped maintaining 2 branches in docker-groovy and have kept just the latest stable branch. I'm wondering now if folks have a need for me to maintain Docker images for both 2.5 and 3.0 (though I presume not 2.4 since

[ANNOUNCE] Groovy 2.5.9 Windows Installers Released

2020-01-23 Thread Keegan Witt
The Windows installers for Groovy 2.5.9 are now available from Bintray. It is available as - The original exe installer, built with NSIS: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.5.9-installer.exe - The new msi installer, built with WiX:

[ANNOUNCE] Groovy 3.0.0-rc-3 Windows Installers Released

2020-01-23 Thread Keegan Witt
The Windows installers for Groovy 3.0.0-rc-2 are now available from Bintray. It is available as - The original exe installer, built with NSIS: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.0-rc-3-installer.exe - The new msi installer, built with WiX:

[ANNOUNCE] Groovy 2.4.18 Windows Installers Released

2020-01-23 Thread Keegan Witt
The Windows installers for Groovy 2.4.18 are now available from Bintray. It is available as - The original exe installer, built with NSIS: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.4.18-installer.exe - The new msi installer, built with WiX:

[ANNOUNCE] Groovy 3.0.1 Windows Installer Released

2020-02-17 Thread Keegan Witt
The Windows installer for Groovy 3.0.1 is now available from Bintray: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.1.msi . There are still a few little things to get done (such as internationalization) with the new installer. Let me know if you encounter any

Re: Groovy branches and Docker images

2020-03-09 Thread Keegan Witt
I have not. Andrei's was the only response I'd gotten (thank you for that, Andrei). -Keegan On Mon, Mar 9, 2020 at 4:20 AM Jochen Theodorou wrote: > On 04.03.20 15:09, Keegan Witt wrote: > > When Groovy 3.0.0 was released, I stopped maintaining 2 branches in > > docke

[ANNOUNCE] Groovy 2.4.19, 2.5.10, and 3.0.2 Windows Installers Released

2020-03-12 Thread Keegan Witt
I released these a few days ago, but didn't send messaging out. 3.0.2: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.2.msi 2.5.10: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.5.10.msi 2.4.19:

[ANNOUNCE] Groovy 2.5.11 and 3.0.3 Windows Installers Released

2020-04-10 Thread Keegan Witt
New Groovy installers for windows released: 2.5.11: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.5.11.msi 3.0.3: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.3.msi -Keegan

GMavenPlus 1.9.0 Released

2020-04-04 Thread Keegan Witt
GMavenPlus 1.9.0 has been released. As mentioned in the release notes , this release includes: Bugs None Enhancements - Support for Java 14 (#152 ). - Support for Java 15 (#153

[ANNOUNCE] Groovy 2.5.12 and 3.0.4 Windows Installers Released

2020-05-22 Thread Keegan Witt
New Groovy installers for Windows released: 2.5.12: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.5.12.msi 3.0.4: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.4.msi -Keegan

GMavenPlus 1.11.0 Released

2020-10-11 Thread Keegan Witt
https://github.com/groovy/GMavenPlus/releases/tag/1.11.0 Bugs None Enhancements - Change JDK compatibility check to also account for Java 16. - Some tweaks for Groovy 4 (most notably, invokedynamic is enabled by default for Groovy 4 and cannot be disabled). - New parameter

[ANNOUNCE] Groovy 3.0.6 and 4.0.0-alpha-1 Windows installers released

2020-09-29 Thread Keegan Witt
3.0.6: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.6.msi 4.0.0-alpha-1: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-4.0.0-alpha-1.msi -Keegan

Re: 3.0.x Windows installers released

2020-09-29 Thread Keegan Witt
me Laforge > *Sent:* 23 July 2020 12:51 PM > *To:* users@groovy.apache.org; Paul King > *Subject:* Re: [ANNOUNCE] Groovy 2.4.20, 2.5.13, and 3.0.5 Windows > installers released > > > > Combo! > > > > Le jeu. 23 juil. 2020 à 12:13, Paul King a écrit : > &g

Re: 3.0.x Windows installers released

2020-09-29 Thread Keegan Witt
eling like I'm going to have to re-introduce some kind of binary wrapper. -Keegan On Tue, Sep 29, 2020 at 2:33 AM Keegan Witt wrote: > 1. > That's correct. There were a few discussions about why I thought we > should do this. Here's a short summary: Most of the modules included you &

GMavenPlus 1.10.1 Released

2020-09-20 Thread Keegan Witt
https://github.com/groovy/GMavenPlus/releases/tag/1.10.1 Bugs None Enhancements - Ability to override classes used to generate GroovyDoc (#91 ) - Ability to override GStringTemplates used for GroovyDoc (#105

Re: Installation Problem on Windows

2020-08-11 Thread Keegan Witt
I'm sorry you had trouble. Was the issue with PATH? Or with vbs/bat file associations? -Keegan On Tue, Aug 11, 2020 at 11:10 AM Kristine wrote: > > Fixed by editing environment variables >

[ANNOUNCE] Groovy 2.4.20, 2.5.13, and 3.0.5 Windows installers released

2020-07-22 Thread Keegan Witt
2.4.20: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.4.20.msi 2.5.13: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-2.5.13.msi 3.0.5: https://bintray.com/groovy/Distributions/download_file?file_path=groovy-3.0.5.msi -Keegan

GMavenPlus 1.9.1 Released

2020-07-26 Thread Keegan Witt
Bugs None Enhancements - Add a property to skip script execution (#162 ) Potentially breaking changesNone Notes None *Getting help / reporting bugs* As usual, let me know of any bugs you encounter either on our user mailing list

  1   2   >