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
8 changes: 4 additions & 4 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Requirements to build the full project:

### Install the required JDKs

Download and install Eclipse Temurin JDK versions 8, 11, 17 and 21, and GraalVM 17.
Download and install JDK versions 8, 11, 17 and 21, and GraalVM 17 for your OS.

#### macOS

Expand Down Expand Up @@ -179,17 +179,17 @@ scoop install git

#### macOS

Download and install Docker Desktop from the offical website:<br/>
Download and install Docker Desktop from the official website:<br/>
https://docs.docker.com/desktop/setup/install/mac-install/

#### Linux

Download and install Docker Desktop from the offical website:<br/>
Download and install Docker Desktop from the official website:<br/>
https://docs.docker.com/desktop/setup/install/linux/

#### Windows

Download and install Docker Desktop from the offical website:<br/>
Download and install Docker Desktop from the official website:<br/>
https://docs.docker.com/desktop/setup/install/windows-install/

<details>
Expand Down
4 changes: 2 additions & 2 deletions dd-java-agent/agent-iast/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

tasks.withType(AbstractCompile).configureEach {
Expand Down
4 changes: 2 additions & 2 deletions dd-java-agent/benchmark-integration/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ apply from: "$rootDir/gradle/java.gradle"

description = 'Integration Level Agent benchmarks.'

sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

subprojects { sub ->
sub.apply plugin: 'com.gradleup.shadow'
Expand Down
7 changes: 7 additions & 0 deletions dd-java-agent/instrumentation/javax-xml/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ repositories {
}
}

configurations.all {
// shut up about broken xml-api pom relocation
resolutionStrategy {
force 'xml-apis:xml-apis:1.4.01'
}
}

dependencies {
testRuntimeOnly project(':dd-java-agent:instrumentation:iast-instrumenter')
testImplementation group: 'xalan', name: 'xalan', version: '2.7.0'
Expand Down
7 changes: 7 additions & 0 deletions dd-java-agent/instrumentation/owasp-esapi-2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ muzzle {
}
}

configurations.all {
// shut up about broken xml-api pom relocation
resolutionStrategy {
force 'xml-apis:xml-apis:1.4.01'
}
}

apply from: "$rootDir/gradle/java.gradle"
apply plugin: 'call-site-instrumentation'

Expand Down