mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-07 21:48:39 +00:00
We have eclipse settings added to all projects when running gradle eclipse, but buildSrc is its own special project that is not encapsulated by allprojects blocks. This adds eclipse settings to buildSrc.
93 lines
2.7 KiB
Groovy
93 lines
2.7 KiB
Groovy
/*
|
|
* Licensed to Elasticsearch under one or more contributor
|
|
* license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright
|
|
* ownership. Elasticsearch licenses this file to you under
|
|
* the Apache License, Version 2.0 (the "License"); you may
|
|
* not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
// we must use buildscript + apply so that an external plugin
|
|
// can apply this file, since the plugins directive is not
|
|
// supported through file includes
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.bmuschko:gradle-nexus-plugin:2.3.1'
|
|
}
|
|
}
|
|
apply plugin: 'groovy'
|
|
apply plugin: 'com.bmuschko.nexus'
|
|
// TODO: move common IDE configuration to a common file to include
|
|
apply plugin: 'idea'
|
|
apply plugin: 'eclipse'
|
|
|
|
group = 'org.elasticsearch.gradle'
|
|
archivesBaseName = 'build-tools'
|
|
|
|
Properties props = new Properties()
|
|
props.load(project.file('version.properties').newDataInputStream())
|
|
version = props.getProperty('elasticsearch')
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
name 'sonatype-snapshots'
|
|
url "https://oss.sonatype.org/content/repositories/snapshots/"
|
|
}
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
compile gradleApi()
|
|
compile localGroovy()
|
|
compile "com.carrotsearch.randomizedtesting:junit4-ant:${props.getProperty('randomizedrunner')}"
|
|
compile("junit:junit:${props.getProperty('junit')}") {
|
|
transitive = false
|
|
}
|
|
compile 'com.netflix.nebula:gradle-extra-configurations-plugin:3.0.3'
|
|
compile 'com.netflix.nebula:gradle-info-plugin:3.0.3'
|
|
compile 'org.eclipse.jgit:org.eclipse.jgit:3.2.0.201312181205-r'
|
|
compile 'com.perforce:p4java:2012.3.551082' // THIS IS SUPPOSED TO BE OPTIONAL IN THE FUTURE....
|
|
compile 'de.thetaphi:forbiddenapis:2.0'
|
|
compile 'com.bmuschko:gradle-nexus-plugin:2.3.1'
|
|
}
|
|
|
|
processResources {
|
|
inputs.file('version.properties')
|
|
from 'version.properties'
|
|
}
|
|
|
|
extraArchive {
|
|
javadoc = false
|
|
tests = false
|
|
}
|
|
|
|
eclipse {
|
|
classpath {
|
|
defaultOutputDir = new File(file('build'), 'eclipse')
|
|
}
|
|
}
|
|
|
|
task copyEclipseSettings(type: Copy) {
|
|
from project.file('src/main/resources/eclipse.settings')
|
|
into '.settings'
|
|
}
|
|
// otherwise .settings is not nuked entirely
|
|
tasks.cleanEclipse {
|
|
delete '.settings'
|
|
}
|
|
tasks.eclipse.dependsOn(cleanEclipse, copyEclipseSettings)
|