From 49bf73a16509fdaa143e4b14a8c0ef0eed05beb7 Mon Sep 17 00:00:00 2001 From: James Baiera Date: Wed, 15 Jul 2020 17:13:03 -0400 Subject: [PATCH] Return developers tag to pom generation (#1499) The developers tag was removed from the pom file of all artifacts, but is required for release on nexus. Re-add the tag back in but with generic developer content. --- .../org/elasticsearch/hadoop/gradle/BuildPlugin.groovy | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/buildSrc/src/main/groovy/org/elasticsearch/hadoop/gradle/BuildPlugin.groovy b/buildSrc/src/main/groovy/org/elasticsearch/hadoop/gradle/BuildPlugin.groovy index 226ffd81d..fba4aca32 100644 --- a/buildSrc/src/main/groovy/org/elasticsearch/hadoop/gradle/BuildPlugin.groovy +++ b/buildSrc/src/main/groovy/org/elasticsearch/hadoop/gradle/BuildPlugin.groovy @@ -462,6 +462,12 @@ class BuildPlugin implements Plugin { connection = 'scm:git:git://github.com/elastic/elasticsearch-hadoop' developerConnection = 'scm:git:git://github.com/elastic/elasticsearch-hadoop' } + developers { + developer { + name = 'Elastic' + url = 'https://www.elastic.co' + } + } } groupId = "org.elasticsearch"