mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-10 23:15:04 +00:00
837c593ec2
With gradle, deploying to maven means first generating poms. These are filled in based on dependencies of the project. Recently, we started disallowing transitive dependencies. However, this configuration does not translate to maven poms because maven has no concept of excluding all transitive dependencies. This change adds exclusions for each of the transitive deps of each dependency being added to the maven pom. It does so by creating dummy configurations for each direct dependency (which does not have transitive deps excluded), so that we can iterate the transitive deps when building the pom. Note, this should be simpler (just modifying maven's pom model), but gradle tries to hide that from their api, causing us to need to manipulate the xml directly. https://discuss.gradle.org/t/modifying-maven-pom-generation-to-add-excludes/12744
74 lines
2.2 KiB
Groovy
74 lines
2.2 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.
|
|
*/
|
|
|
|
plugins {
|
|
id 'groovy'
|
|
id 'com.bmuschko.nexus' version '2.3.1'
|
|
}
|
|
// 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')
|
|
}
|
|
}
|