Skip to content

Commit a3a92b4

Browse files
update: to 1.2.0
update gradle version to 7.5.1 add to default java compiler args '-parameters'
1 parent 4c02ccd commit a3a92b4

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
build
2+
lib
23
.gradle
34
.idea
45
gradle.properties

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ plugins {
55
id 'maven-publish'
66
}
77

8-
version = '1.1.0'
8+
version = '1.2.0'
99
group = 'com.chillycheesy'
1010

11+
sourceCompatibility = 16
12+
targetCompatibility = 16
13+
1114
repositories {
1215
mavenCentral()
1316
}
Lines changed: 1 addition & 1 deletion
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.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/main/groovy/com/chillycheesy/modulo/ModuloApplicationPlugin.groovy

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,8 @@ class ModuloApplicationPlugin implements Plugin<Project> {
3131
project.processResources.dependsOn generateModuleYmlTask
3232
deployModuleTask.dependsOn project.assemble
3333
runModuloServerTask.dependsOn deployModuleTask
34+
35+
project.compileJava.options.compilerArgs << '-parameters'
36+
project.compileTestJava.options.compilerArgs << '-parameters'
3437
}
3538
}

0 commit comments

Comments
 (0)