Build: Remove refs to x-pack-elasticsearch (elastic/x-pack-elasticsearch#3863)
These were removed before, but sql added a bunch of new hard references to the project name. Original commit: elastic/x-pack-elasticsearch@2eb156fd67
This commit is contained in:
parent
8ee3de122b
commit
7d71c3f1cc
|
@ -1,4 +1,4 @@
|
||||||
evaluationDependsOn(':x-pack-elasticsearch:plugin:core')
|
evaluationDependsOn(xpackModule('core'))
|
||||||
|
|
||||||
apply plugin: 'elasticsearch.esplugin'
|
apply plugin: 'elasticsearch.esplugin'
|
||||||
esplugin {
|
esplugin {
|
||||||
|
@ -7,8 +7,6 @@ esplugin {
|
||||||
classname 'org.elasticsearch.xpack.sql.plugin.SqlPlugin'
|
classname 'org.elasticsearch.xpack.sql.plugin.SqlPlugin'
|
||||||
requiresKeystore true
|
requiresKeystore true
|
||||||
extendedPlugins = ['x-pack-core']
|
extendedPlugins = ['x-pack-core']
|
||||||
licenseFile project(':x-pack-elasticsearch').file('LICENSE.txt')
|
|
||||||
noticeFile project(':x-pack-elasticsearch').file('NOTICE.txt')
|
|
||||||
}
|
}
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
|
|
|
@ -14,8 +14,8 @@ dependencies {
|
||||||
* don't shadow properly.
|
* don't shadow properly.
|
||||||
*
|
*
|
||||||
* Note: we've temporarily disabled shading. */
|
* Note: we've temporarily disabled shading. */
|
||||||
compile project(':x-pack-elasticsearch:plugin:sql:sql-shared-client')
|
compile xpackProject('plugin:sql:sql-shared-client')
|
||||||
compile project(':x-pack-elasticsearch:plugin:sql:sql-proto')
|
compile xpackProject('plugin:sql:sql-proto')
|
||||||
runtime "com.fasterxml.jackson.core:jackson-core:${versions.jackson}"
|
runtime "com.fasterxml.jackson.core:jackson-core:${versions.jackson}"
|
||||||
testCompile "org.elasticsearch.test:framework:${version}"
|
testCompile "org.elasticsearch.test:framework:${version}"
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,8 +14,8 @@ description = 'Command line interface to Elasticsearch that speaks SQL'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile "org.jline:jline:3.3.1"
|
compile "org.jline:jline:3.3.1"
|
||||||
compile project(':x-pack-elasticsearch:plugin:sql:sql-shared-client')
|
compile xpackProject('plugin:sql:sql-shared-client')
|
||||||
compile project(':x-pack-elasticsearch:plugin:sql:sql-proto')
|
compile xpackProject('plugin:sql:sql-proto')
|
||||||
compile "org.elasticsearch:elasticsearch-cli:${version}"
|
compile "org.elasticsearch:elasticsearch-cli:${version}"
|
||||||
|
|
||||||
runtime "org.fusesource.jansi:jansi:1.16"
|
runtime "org.fusesource.jansi:jansi:1.16"
|
||||||
|
|
|
@ -10,7 +10,7 @@ apply plugin: 'elasticsearch.build'
|
||||||
description = 'Code shared between jdbc and cli'
|
description = 'Code shared between jdbc and cli'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':x-pack-elasticsearch:plugin:sql:sql-proto')
|
compile xpackProject('plugin:sql:sql-proto')
|
||||||
compile "com.fasterxml.jackson.core:jackson-core:${versions.jackson}"
|
compile "com.fasterxml.jackson.core:jackson-core:${versions.jackson}"
|
||||||
testCompile "org.elasticsearch.test:framework:${version}"
|
testCompile "org.elasticsearch.test:framework:${version}"
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,7 +30,7 @@ if (project.rootProject.vagrantSupported) {
|
||||||
}
|
}
|
||||||
|
|
||||||
integTestCluster {
|
integTestCluster {
|
||||||
plugin ':x-pack-elasticsearch:plugin'
|
plugin xpackProject('plugin').path
|
||||||
|
|
||||||
setting 'xpack.security.http.ssl.enabled', 'false'
|
setting 'xpack.security.http.ssl.enabled', 'false'
|
||||||
setting 'xpack.security.authc.token.enabled', 'true'
|
setting 'xpack.security.authc.token.enabled', 'true'
|
||||||
|
|
|
@ -9,7 +9,8 @@ dependencies {
|
||||||
compile "org.elasticsearch.test:framework:${version}"
|
compile "org.elasticsearch.test:framework:${version}"
|
||||||
|
|
||||||
// TODO: Restore shading when https://github.com/elastic/elasticsearch/pull/27955 gets in
|
// TODO: Restore shading when https://github.com/elastic/elasticsearch/pull/27955 gets in
|
||||||
compile(project(':x-pack-elasticsearch:plugin:sql:jdbc'))
|
testCompile "org.elasticsearch.plugin:x-pack-core:${version}"
|
||||||
|
compile xpackProject('plugin:sql:jdbc')
|
||||||
compile "net.sourceforge.csvjdbc:csvjdbc:1.0.34"
|
compile "net.sourceforge.csvjdbc:csvjdbc:1.0.34"
|
||||||
runtime "com.h2database:h2:1.4.194"
|
runtime "com.h2database:h2:1.4.194"
|
||||||
// used for running debug tests
|
// used for running debug tests
|
||||||
|
@ -62,13 +63,13 @@ subprojects {
|
||||||
* dependencies but we don't really want them because they cause
|
* dependencies but we don't really want them because they cause
|
||||||
* all kinds of trouble with the jar hell checks. So we suppress
|
* all kinds of trouble with the jar hell checks. So we suppress
|
||||||
* them explicitly for non-es projects. */
|
* them explicitly for non-es projects. */
|
||||||
testCompile(project(':x-pack-elasticsearch:qa:sql')) {
|
testCompile(xpackProject('qa:sql')) {
|
||||||
transitive = false
|
transitive = false
|
||||||
}
|
}
|
||||||
testCompile "org.elasticsearch.test:framework:${version}"
|
testCompile "org.elasticsearch.test:framework:${version}"
|
||||||
|
|
||||||
// JDBC testing dependencies
|
// JDBC testing dependencies
|
||||||
testRuntime(project(':x-pack-elasticsearch:plugin:sql:jdbc'))
|
testRuntime(xpackProject('plugin:sql:jdbc'))
|
||||||
// TODO: Restore shading when https://github.com/elastic/elasticsearch/pull/27955 gets in
|
// TODO: Restore shading when https://github.com/elastic/elasticsearch/pull/27955 gets in
|
||||||
testRuntime("net.sourceforge.csvjdbc:csvjdbc:1.0.34") {
|
testRuntime("net.sourceforge.csvjdbc:csvjdbc:1.0.34") {
|
||||||
transitive = false
|
transitive = false
|
||||||
|
@ -80,8 +81,8 @@ subprojects {
|
||||||
transitive = false
|
transitive = false
|
||||||
}
|
}
|
||||||
|
|
||||||
cliFixture project(':x-pack-elasticsearch:test:sql-cli-fixture')
|
cliFixture xpackProject('test:sql-cli-fixture')
|
||||||
cliJar(project(':x-pack-elasticsearch:plugin:sql:sql-cli')) {
|
cliJar(xpackProject('plugin:sql:sql-cli')) {
|
||||||
// We only need the jar file because it bundles all of its dependencies
|
// We only need the jar file because it bundles all of its dependencies
|
||||||
transitive = false
|
transitive = false
|
||||||
}
|
}
|
||||||
|
@ -92,7 +93,7 @@ subprojects {
|
||||||
apply plugin: 'elasticsearch.rest-test'
|
apply plugin: 'elasticsearch.rest-test'
|
||||||
|
|
||||||
task cliFixture(type: org.elasticsearch.gradle.test.AntFixture) {
|
task cliFixture(type: org.elasticsearch.gradle.test.AntFixture) {
|
||||||
Project cli = project(':x-pack-elasticsearch:plugin:sql:sql-cli')
|
Project cli = xpackProject('plugin:sql:sql-cli')
|
||||||
dependsOn project.configurations.cliFixture
|
dependsOn project.configurations.cliFixture
|
||||||
dependsOn project.configurations.cliJar
|
dependsOn project.configurations.cliJar
|
||||||
executable = new File(project.runtimeJavaHome, 'bin/java')
|
executable = new File(project.runtimeJavaHome, 'bin/java')
|
||||||
|
@ -103,7 +104,7 @@ subprojects {
|
||||||
|
|
||||||
integTestCluster {
|
integTestCluster {
|
||||||
distribution = 'zip'
|
distribution = 'zip'
|
||||||
plugin project(':x-pack-elasticsearch:plugin').path
|
plugin xpackProject('plugin').path
|
||||||
setting 'xpack.monitoring.enabled', 'false'
|
setting 'xpack.monitoring.enabled', 'false'
|
||||||
setting 'xpack.ml.enabled', 'false'
|
setting 'xpack.ml.enabled', 'false'
|
||||||
setting 'xpack.watcher.enabled', 'false'
|
setting 'xpack.watcher.enabled', 'false'
|
||||||
|
@ -118,7 +119,7 @@ subprojects {
|
||||||
|
|
||||||
task runqa(type: RunTask) {
|
task runqa(type: RunTask) {
|
||||||
distribution = 'zip'
|
distribution = 'zip'
|
||||||
plugin project(':x-pack-elasticsearch:plugin').path
|
plugin xpackProject('plugin').path
|
||||||
setting 'xpack.monitoring.enabled', 'false'
|
setting 'xpack.monitoring.enabled', 'false'
|
||||||
setting 'xpack.ml.enabled', 'false'
|
setting 'xpack.ml.enabled', 'false'
|
||||||
setting 'xpack.watcher.enabled', 'false'
|
setting 'xpack.watcher.enabled', 'false'
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
testCompile project(path: ':x-pack-elasticsearch:plugin:core', configuration: 'runtime')
|
testCompile "org.elasticsearch.plugin:x-pack-core:${version}"
|
||||||
}
|
}
|
||||||
|
|
||||||
Project mainProject = project
|
Project mainProject = project
|
||||||
|
@ -18,7 +18,7 @@ subprojects {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
testCompile project(path: ':x-pack-elasticsearch:plugin:core', configuration: 'runtime')
|
testCompile "org.elasticsearch.plugin:x-pack-core:${version}"
|
||||||
}
|
}
|
||||||
|
|
||||||
integTestCluster {
|
integTestCluster {
|
||||||
|
|
Loading…
Reference in New Issue