Skip to content

Commit

Permalink
Remove changes from other branches
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosdelest committed Jan 10, 2024
1 parent b90d6ad commit 130cc82
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions x-pack/plugin/ml/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import org.elasticsearch.gradle.VersionProperties
import org.elasticsearch.gradle.internal.dra.DraResolvePlugin
import org.elasticsearch.gradle.internal.info.BuildParams

apply plugin: 'elasticsearch.internal-es-plugin'
apply plugin: 'elasticsearch.internal-cluster-test'
Expand Down Expand Up @@ -73,6 +74,7 @@ esplugin.bundleSpec.exclude 'platform/licenses/**'
}

dependencies {
testImplementation project(path: ':x-pack:plugin:inference')
compileOnly project(':modules:lang-painless:spi')
compileOnly project(path: xpackModule('core'))
compileOnly project(path: xpackModule('autoscaling'))
Expand Down Expand Up @@ -113,6 +115,12 @@ artifacts {
archives tasks.named("jar")
}

if (BuildParams.isSnapshotBuild() == false) {
tasks.named("test").configure {
systemProperty 'es.semantic_text_feature_flag_enabled', 'true'
}
}

tasks.register("extractNativeLicenses", Copy) {
dependsOn configurations.nativeBundle
into "${buildDir}/extractedNativeLicenses"
Expand Down

0 comments on commit 130cc82

Please sign in to comment.