2015-11-23 17:18:07 -05:00
|
|
|
if (project.projectDir.name != 'extra-plugin-x-plugins') {
|
|
|
|
throw new GradleException('You must checkout x-plugins in a directory named extra-plugin-x-plugins')
|
2015-11-16 15:45:03 -05:00
|
|
|
}
|
|
|
|
|
2015-11-20 15:02:25 -05:00
|
|
|
/*
|
2015-10-29 14:44:48 -04:00
|
|
|
<repository>
|
|
|
|
<id>elasticsearch-releases</id>
|
|
|
|
<url>http://maven.elasticsearch.org/releases</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>daily</updatePolicy>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>elasticsearch-internal-snapshots</id>
|
|
|
|
<url>http://maven.elasticsearch.org/artifactory/internal-snapshots</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
subprojects {
|
|
|
|
task artifacts {
|
|
|
|
group = "Help"
|
|
|
|
description = "Displays the artifacts associated with each configuration of " + project
|
|
|
|
doFirst {
|
|
|
|
configurations.findAll().each { config ->
|
|
|
|
println "${config}:"
|
|
|
|
config.allArtifacts.getFiles().each { file -> println "" + file}
|
|
|
|
println ' '
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|