File tree Expand file tree Collapse file tree 5 files changed +6
-9
lines changed Expand file tree Collapse file tree 5 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ tasks {
50
50
dependsOn(relocateJavaagentLibs)
51
51
isolateClasses(relocateJavaagentLibs.get().outputs.files)
52
52
53
- into(" $buildDir / isolated/javaagentLibs" )
53
+ into(layout.buildDirectory.dir( " isolated/javaagentLibs" ) )
54
54
}
55
55
56
56
// 3. the relocated and isolated javaagent libs are merged together with the bootstrap libs (which undergo relocation
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ tasks {
95
95
dependsOn(relocateJavaagentLibs)
96
96
isolateClasses(relocateJavaagentLibs.get().outputs.files)
97
97
98
- into(" $buildDir / isolated/javaagentLibs" )
98
+ into(layout.buildDirectory.dir( " isolated/javaagentLibs" ) )
99
99
}
100
100
101
101
// 3. the relocated and isolated javaagent libs are merged together with the bootstrap libs (which undergo relocation
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ configurations.all {
87
87
}
88
88
89
89
tasks {
90
- task <Test >(" smokeTest" ) {
90
+ register <Test >(" smokeTest" ) {
91
91
useJUnitPlatform()
92
92
93
93
// this is just to force building the agent first
Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ sourceSets {
22
22
}
23
23
}
24
24
25
- archivesBaseName = " applicationinsights-java-etw-provider"
25
+ base {
26
+ archivesName = " applicationinsights-java-etw-provider"
27
+ }
26
28
27
29
logger. info " project ${ project.path} prop: ai.etw.native.build=${ System.properties['ai.etw.native.build']} "
28
30
Original file line number Diff line number Diff line change @@ -12,10 +12,5 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=512m
12
12
13
13
# org.gradle.warning.mode=fail
14
14
15
- # To allow caching more tasks in buildSrc project
16
- # This property is not mentioned in Gradle documentation
17
- # See https://github.com/gradle/gradle/issues/15214 for background info
18
- systemProp.org.gradle.kotlin.dsl.precompiled.accessors.strict =true
19
-
20
15
# Workaround https://youtrack.jetbrains.com/issue/KT-34862
21
16
kotlin.incremental =false
You can’t perform that action at this time.
0 commit comments