Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion agent/agent-for-testing/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ tasks {
dependsOn(relocateJavaagentLibs)
isolateClasses(relocateJavaagentLibs.get().outputs.files)

into("$buildDir/isolated/javaagentLibs")
into(layout.buildDirectory.dir("isolated/javaagentLibs"))
}

// 3. the relocated and isolated javaagent libs are merged together with the bootstrap libs (which undergo relocation
Expand Down
2 changes: 1 addition & 1 deletion agent/agent/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ tasks {
dependsOn(relocateJavaagentLibs)
isolateClasses(relocateJavaagentLibs.get().outputs.files)

into("$buildDir/isolated/javaagentLibs")
into(layout.buildDirectory.dir("isolated/javaagentLibs"))
}

// 3. the relocated and isolated javaagent libs are merged together with the bootstrap libs (which undergo relocation
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ai.smoke-test.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ configurations.all {
}

tasks {
task<Test>("smokeTest") {
register<Test>("smokeTest") {
useJUnitPlatform()

// this is just to force building the agent first
Expand Down
4 changes: 3 additions & 1 deletion etw/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ sourceSets {
}
}

archivesBaseName = "applicationinsights-java-etw-provider"
base {
archivesName = "applicationinsights-java-etw-provider"
}

logger.info "project ${project.path} prop: ai.etw.native.build=${System.properties['ai.etw.native.build']}"

Expand Down
5 changes: 0 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,5 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=512m

# org.gradle.warning.mode=fail

# To allow caching more tasks in buildSrc project
# This property is not mentioned in Gradle documentation
# See https://github.com/gradle/gradle/issues/15214 for background info
systemProp.org.gradle.kotlin.dsl.precompiled.accessors.strict=true

# Workaround https://youtrack.jetbrains.com/issue/KT-34862
kotlin.incremental=false