Skip to content

Commit 8544a32

Browse files
authored
Simplify Kotlin DSL setup (#531)
Upgradle to Gradle 6.9.1 for new Kotlin DSL capabilities. Use better dependency declaration between Groovy/Java. Remove environment variables for action: - CI is set to true in Github action runs anyway. - The memory settings shouldn't be necessary any more.
1 parent 440ae31 commit 8544a32

File tree

8 files changed

+89
-104
lines changed

8 files changed

+89
-104
lines changed

.github/workflows/testing.yml

-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ on:
99
permissions:
1010
contents: read
1111

12-
env:
13-
GRADLE_OPTS: "-Xms128m"
14-
CI: true
15-
1612
jobs:
1713
build:
1814
runs-on: ubuntu-latest

build.gradle

+26-22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
buildscript {
2+
repositories {
3+
maven { url "https://plugins.gradle.org/m2/" } // Mirrors jcenter() and mavenCentral()
4+
}
5+
6+
dependencies {
7+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
8+
classpath "com.gradle.publish:plugin-publish-plugin:0.11.0"
9+
classpath "com.github.ben-manes:gradle-versions-plugin:0.12.0"
10+
}
11+
}
12+
13+
plugins {
14+
id "org.gradle.kotlin.kotlin-dsl" version "1.4.9"
15+
}
16+
117
println """\
218
Welcome to Gradle $gradle.gradleVersion - http://www.gradle.org
319
Gradle home is set to: $gradle.gradleHomeDir
@@ -11,10 +27,8 @@ apply plugin: 'codenarc'
1127
apply plugin: 'idea'
1228
apply plugin: 'eclipse'
1329
apply plugin: 'groovy'
14-
apply plugin: 'kotlin'
1530
apply plugin: 'maven'
1631
apply plugin: 'signing'
17-
apply plugin: 'java-gradle-plugin'
1832
apply plugin: 'com.jfrog.bintray'
1933
apply plugin: 'com.gradle.plugin-publish'
2034
apply plugin: 'com.github.ben-manes.versions'
@@ -24,19 +38,6 @@ version = '0.8.18-SNAPSHOT'
2438

2539
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
2640

27-
buildscript {
28-
repositories {
29-
maven { url "https://plugins.gradle.org/m2/" } // Mirrors jcenter() and mavenCentral()
30-
}
31-
32-
dependencies {
33-
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
34-
classpath "com.gradle.publish:plugin-publish-plugin:0.11.0"
35-
classpath "com.github.ben-manes:gradle-versions-plugin:0.12.0"
36-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.20"
37-
}
38-
}
39-
4041
repositories {
4142
maven { url "https://plugins.gradle.org/m2/" }
4243
maven { url "https://repo.gradle.org/gradle/libs-releases-local/" }
@@ -52,7 +53,6 @@ configurations {
5253
}
5354

5455
dependencies {
55-
compileOnly "org.gradle:gradle-kotlin-dsl:1.0.4"
5656
compileOnly "com.android.tools.build:gradle:3.5.0"
5757

5858
compile 'com.google.guava:guava:27.0.1-jre'
@@ -93,6 +93,10 @@ artifacts {
9393
archives javadocJar
9494
}
9595

96+
codenarc {
97+
toolVersion = "1.4"
98+
}
99+
96100
// The Gradle plugin portal doesn't allow signature files.
97101
if (!gradle.startParameter.taskNames.intersect(['publishPlugins'])) {
98102
signing {
@@ -178,10 +182,10 @@ if (System.env.CI == 'true') {
178182
// Required in order to support building a mixed kotlin/groovy project. With out this,
179183
// we would get a cyclic dependency error, since both compileKotlin and compileGroovy
180184
// depend on compileJava.
181-
// https://discuss.gradle.org/t/kotlin-groovy-and-java-compilation/14903/10
182-
project.afterEvaluate {
183-
compileGroovy.dependsOn = compileGroovy.taskDependencies.mutableValues - 'compileJava'
184-
compileKotlin.dependsOn compileGroovy
185-
compileKotlin.classpath += files(compileGroovy.destinationDir)
186-
classes.dependsOn compileKotlin
185+
// See https://github.com/gradle/gradle/pull/11513 and https://discuss.gradle.org/t/kotlin-groovy-and-java-compilation/14903/10
186+
tasks.named('compileGroovy') {
187+
classpath = sourceSets.main.compileClasspath
188+
}
189+
tasks.named('compileKotlin') {
190+
compileKotlin.classpath += files(compileGroovy.destinationDirectory)
187191
}

gradle/wrapper/gradle-wrapper.jar

4.68 KB
Binary file not shown.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.1-bin.zip
34
zipStoreBase=GRADLE_USER_HOME
45
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0-bin.zip

gradlew

+33-20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
#!/usr/bin/env sh
22

3+
#
4+
# Copyright 2015 the original author or authors.
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# https://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
#
18+
319
##############################################################################
420
##
521
## Gradle start up script for UN*X
@@ -28,7 +44,7 @@ APP_NAME="Gradle"
2844
APP_BASE_NAME=`basename "$0"`
2945

3046
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31-
DEFAULT_JVM_OPTS=""
47+
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
3248

3349
# Use the maximum available, or set MAX_FD != -1 to use that value.
3450
MAX_FD="maximum"
@@ -66,6 +82,7 @@ esac
6682

6783
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
6884

85+
6986
# Determine the Java command to use to start the JVM.
7087
if [ -n "$JAVA_HOME" ] ; then
7188
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
@@ -109,10 +126,11 @@ if $darwin; then
109126
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
110127
fi
111128

112-
# For Cygwin, switch paths to Windows format before running java
113-
if $cygwin ; then
129+
# For Cygwin or MSYS, switch paths to Windows format before running java
130+
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
114131
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
115132
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
133+
116134
JAVACMD=`cygpath --unix "$JAVACMD"`
117135

118136
# We build the pattern for arguments to be converted via cygpath
@@ -138,19 +156,19 @@ if $cygwin ; then
138156
else
139157
eval `echo args$i`="\"$arg\""
140158
fi
141-
i=$((i+1))
159+
i=`expr $i + 1`
142160
done
143161
case $i in
144-
(0) set -- ;;
145-
(1) set -- "$args0" ;;
146-
(2) set -- "$args0" "$args1" ;;
147-
(3) set -- "$args0" "$args1" "$args2" ;;
148-
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
149-
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
150-
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
151-
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
152-
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
153-
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
162+
0) set -- ;;
163+
1) set -- "$args0" ;;
164+
2) set -- "$args0" "$args1" ;;
165+
3) set -- "$args0" "$args1" "$args2" ;;
166+
4) set -- "$args0" "$args1" "$args2" "$args3" ;;
167+
5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
168+
6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
169+
7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
170+
8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
171+
9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
154172
esac
155173
fi
156174

@@ -159,14 +177,9 @@ save () {
159177
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
160178
echo " "
161179
}
162-
APP_ARGS=$(save "$@")
180+
APP_ARGS=`save "$@"`
163181

164182
# Collect all arguments for the java command, following the shell quoting and substitution rules
165183
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
166184

167-
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
168-
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
169-
cd "$(dirname "$0")"
170-
fi
171-
172185
exec "$JAVACMD" "$@"

gradlew.bat

+24-19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
@rem
2+
@rem Copyright 2015 the original author or authors.
3+
@rem
4+
@rem Licensed under the Apache License, Version 2.0 (the "License");
5+
@rem you may not use this file except in compliance with the License.
6+
@rem You may obtain a copy of the License at
7+
@rem
8+
@rem https://www.apache.org/licenses/LICENSE-2.0
9+
@rem
10+
@rem Unless required by applicable law or agreed to in writing, software
11+
@rem distributed under the License is distributed on an "AS IS" BASIS,
12+
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
@rem See the License for the specific language governing permissions and
14+
@rem limitations under the License.
15+
@rem
16+
117
@if "%DEBUG%" == "" @echo off
218
@rem ##########################################################################
319
@rem
@@ -13,15 +29,18 @@ if "%DIRNAME%" == "" set DIRNAME=.
1329
set APP_BASE_NAME=%~n0
1430
set APP_HOME=%DIRNAME%
1531

32+
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
33+
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
34+
1635
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
17-
set DEFAULT_JVM_OPTS=
36+
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
1837

1938
@rem Find java.exe
2039
if defined JAVA_HOME goto findJavaFromJavaHome
2140

2241
set JAVA_EXE=java.exe
2342
%JAVA_EXE% -version >NUL 2>&1
24-
if "%ERRORLEVEL%" == "0" goto init
43+
if "%ERRORLEVEL%" == "0" goto execute
2544

2645
echo.
2746
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
@@ -35,7 +54,7 @@ goto fail
3554
set JAVA_HOME=%JAVA_HOME:"=%
3655
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
3756

38-
if exist "%JAVA_EXE%" goto init
57+
if exist "%JAVA_EXE%" goto execute
3958

4059
echo.
4160
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
@@ -45,28 +64,14 @@ echo location of your Java installation.
4564

4665
goto fail
4766

48-
:init
49-
@rem Get command-line arguments, handling Windows variants
50-
51-
if not "%OS%" == "Windows_NT" goto win9xME_args
52-
53-
:win9xME_args
54-
@rem Slurp the command line arguments.
55-
set CMD_LINE_ARGS=
56-
set _SKIP=2
57-
58-
:win9xME_args_slurp
59-
if "x%~1" == "x" goto execute
60-
61-
set CMD_LINE_ARGS=%*
62-
6367
:execute
6468
@rem Setup the command line
6569

6670
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
6771

72+
6873
@rem Execute Gradle
69-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
74+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
7075

7176
:end
7277
@rem End local scope for the variables with windows NT shell

src/main/groovy/com/google/protobuf/gradle/KtDslCompatibilityUtils.java

-34
This file was deleted.

src/main/kotlin/com/google/protobuf/gradle/ProtobufConfiguratorExts.kt

+5-4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import org.gradle.api.tasks.SourceSet
99
import org.gradle.kotlin.dsl.NamedDomainObjectContainerScope
1010
import org.gradle.kotlin.dsl.closureOf
1111
import org.gradle.kotlin.dsl.get
12+
import org.gradle.kotlin.dsl.invoke
1213

1314
/**
1415
* Applies the supplied action to the project's instance of [ProtobufConfigurator].
@@ -120,7 +121,7 @@ fun ProtobufConfigurator.protoc(action: ExecutableLocator.() -> Unit) {
120121

121122
fun ProtobufConfigurator.plugins(action: NamedDomainObjectContainerScope<ExecutableLocator>.() -> Unit) {
122123
plugins(closureOf<NamedDomainObjectContainer<ExecutableLocator>> {
123-
KtDslCompatibilityUtils.configureNamedDomainObjectContainer<ExecutableLocator>(this, action)
124+
this.invoke(action)
124125
})
125126
}
126127

@@ -130,13 +131,13 @@ fun ProtobufConfigurator.generateProtoTasks(action: ProtobufConfigurator.Generat
130131

131132
fun GenerateProtoTask.builtins(action: NamedDomainObjectContainerScope<GenerateProtoTask.PluginOptions>.()->Unit) {
132133
builtins(closureOf<NamedDomainObjectContainer<GenerateProtoTask.PluginOptions>> {
133-
KtDslCompatibilityUtils.configureNamedDomainObjectContainer<GenerateProtoTask.PluginOptions>(this, action)
134+
this.invoke(action)
134135
})
135136
}
136137

137138
fun GenerateProtoTask.plugins(action: NamedDomainObjectContainerScope<GenerateProtoTask.PluginOptions>.()-> Unit) {
138139
plugins(closureOf<NamedDomainObjectContainer<GenerateProtoTask.PluginOptions>> {
139-
KtDslCompatibilityUtils.configureNamedDomainObjectContainer<GenerateProtoTask.PluginOptions>(this, action)
140+
this.invoke(action)
140141
})
141142
}
142143

@@ -164,7 +165,7 @@ fun GenerateProtoTask.plugins(action: NamedDomainObjectContainerScope<GeneratePr
164165
* @return [Unit]
165166
*/
166167
fun <T : Any> NamedDomainObjectContainerScope<T>.id(id: String, action: (T.() -> Unit)? = null) {
167-
action?.let { create(id, closureOf(it)) }
168+
action?.let { create(id, it) }
168169
?: create(id)
169170
}
170171

0 commit comments

Comments
 (0)