We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f177e27 commit 13e66c1Copy full SHA for 13e66c1
authorization/build.gradle.kts
@@ -29,6 +29,12 @@ tasks.getByName<Test>("test") {
29
useJUnitPlatform()
30
}
31
32
+java {
33
+ toolchain {
34
+ languageVersion.set(JavaLanguageVersion.of(11))
35
+ }
36
+}
37
+
38
publishing {
39
publications {
40
create<MavenPublication>("maven") {
model-server/build.gradle.kts
@@ -15,10 +15,11 @@ description = "Model Server offering access to model storage"
15
16
defaultTasks.add("build")
17
18
-/*compileJava {
19
- sourceCompatibility = '11'
20
- targetCompatibility = '11'
21
-}*/
22
23
24
val mpsExtensionsVersion: String by project
25
val modelixCoreVersion: String by rootProject
0 commit comments