Skip to content

Commit 35758d0

Browse files
author
Davide Melfi
committed
chore: fixing build of test function
1 parent b79ff9c commit 35758d0

File tree

1 file changed

+7
-3
lines changed
  • experimental/aws-lambda-java-profiler/integration_tests/helloworld

1 file changed

+7
-3
lines changed

experimental/aws-lambda-java-profiler/integration_tests/helloworld/build.gradle

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
apply plugin: 'java'
1+
plugins {
2+
id 'java'
3+
}
24

35
repositories {
46
mavenCentral()
57
}
68

7-
sourceCompatibility = 21
8-
targetCompatibility = 21
9+
java {
10+
sourceCompatibility = JavaVersion.VERSION_21
11+
targetCompatibility = JavaVersion.VERSION_21
12+
}
913

1014
dependencies {
1115
implementation (

0 commit comments

Comments
 (0)