Skip to content

Commit 979e25b

Browse files
Merge pull request #3 from ChillyCheesy/update/documentation
update: to 1.2.0
2 parents 5ef69a1 + 1c59d35 commit 979e25b

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

.github/workflows/release-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/setup-java@v2
1111
with:
1212
distribution: 'temurin'
13-
java-version: '11'
13+
java-version: '16'
1414
- name: Extract project version
1515
run: |
1616
VERSION=$(./gradlew properties -q | grep "version:" | cut -d ' ' -f 2)

.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)