mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 18:35:25 +00:00
Currently, running any task while attached to elasticsearch will also try to run that task in all elasticsearch projects. This change causes x-plugins to be moved into a subproject when attached. It does this by dynamically creating a fake root project, and making this root project think it is attached to the existing attachments, along with x-plugins itself. This also fixes buildSrc so attachment to elasticsearch's buildSrc actually works. Original commit: elastic/x-pack-elasticsearch@da0adf1da5
42 lines
907 B
Groovy
42 lines
907 B
Groovy
apply plugin: 'groovy'
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven {
|
|
name 'sonatype-snapshots'
|
|
url 'http://oss.sonatype.org/content/repositories/snapshots/'
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath 'org.elasticsearch.gradle:project-attachment-plugin:1.0.0-SNAPSHOT'
|
|
}
|
|
}
|
|
apply plugin: 'elasticsearch.project-attachment'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
name 'sonatype-snapshots'
|
|
url "https://oss.sonatype.org/content/repositories/snapshots/"
|
|
}
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
runtime 'org.elasticsearch.gradle:project-attachment-plugin:1.0.0-SNAPSHOT'
|
|
runtime 'org.elasticsearch.gradle:build-tools:3.0.0-SNAPSHOT'
|
|
}
|
|
|
|
if ('elasticsearch' in attachments) {
|
|
configurations {
|
|
all {
|
|
resolutionStrategy {
|
|
dependencySubstitution {
|
|
substitute module('org.elasticsearch.gradle:build-tools') with project(':elasticsearch')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|