Re: [ANNOUNCE] Apache Groovy 3.0.0-alpha-2 released

2018-04-19 Thread Daniel Sun
For gradle user:

group 'me.sunlan'
version '1.0-SNAPSHOT'

apply plugin: 'java'

sourceCompatibility = 1.8

repositories {
mavenCentral()
}

dependencies {
compile group: 'org.codehaus.groovy', name: 'groovy-all', version:
'3.0.0-alpha-2'
}


Cheers,
Daniel.Sun




--
Sent from: http://groovy.329449.n5.nabble.com/Groovy-Users-f329450.html


Re: [ANNOUNCE] Apache Groovy 3.0.0-alpha-2 released

2018-04-19 Thread Daniel Sun
`pom` is not required. FYI:


http://maven.apache.org/POM/4.0.0;
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd;>
4.0.0

me.sunlan
try-groovy-via-mvn
1.0-SNAPSHOT



org.codehaus.groovy
groovy-all
3.0.0-alpha-2





Cheers,
Daniel.Sun



--
Sent from: http://groovy.329449.n5.nabble.com/Groovy-Users-f329450.html


Re: [ANNOUNCE] Apache Groovy 3.0.0-alpha-2 released

2018-04-19 Thread Daniel Sun
Hi  Francesco,

  You should still be able to use groovy-all, but the relevant
individual JARs will be downloaded(not the original 
 fat jar file groovy-all.jar).


org.codehaus.groovy
groovy-all
3.0.0-alpha-2
pom


 Cheers,
Daniel.Sun



--
Sent from: http://groovy.329449.n5.nabble.com/Groovy-Users-f329450.html


Re: [ANNOUNCE] Apache Groovy 3.0.0-alpha-2 released

2018-04-19 Thread Francesco Chicchiriccò
On 2018/04/18 16:45:01, "Daniel.Sun"  wrote: 
> Hi Francesco,
> 
> In order to cater to Java9+, the fat jar, i.e. groovy-all.jar is not
> provided any more. The groovy-all.pom you are using  relies on other Groovy
> module jars, so when you use the dependency groovy-all, which actually
> provides all individual module jars :-)

Thanks Daniel,
I took chance to replace groovy-all with the individual JARs:

https://github.com/apache/syncope/commit/a482f0baecad903cb94a33f96feecc2358562df0

Regards.