DCausse has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/341826 )

Change subject: Elastic 5.1.2 plugins
......................................................................


Elastic 5.1.2 plugins

Change-Id: Ia2aee6509f73e9a95574208400bbdbf88976e776
---
D .mvn/wrapper/maven-wrapper.jar
A .mvnhelper/.mvn/wrapper/maven-wrapper.jar
R .mvnhelper/.mvn/wrapper/maven-wrapper.properties
R .mvnhelper/gpg-keymap.properties
R .mvnhelper/mvnw
R .mvnhelper/mvnw.cmd
R .mvnhelper/pom.xml
R .mvnhelper/update-plugins.bash
D analysis-icu/analysis-icu-2.3.5.jar
A analysis-icu/analysis-icu-5.1.2.jar
D analysis-icu/lucene-analyzers-icu-5.5.0.jar
A analysis-icu/lucene-analyzers-icu-6.3.0.jar
M analysis-icu/plugin-descriptor.properties
A analysis-stempel/analysis-stempel-5.1.2.jar
A analysis-stempel/lucene-analyzers-stempel-6.3.0.jar
A analysis-stempel/plugin-descriptor.properties
D 
experimental-highlighter-elasticsearch-plugin/experimental-highlighter-core-2.3.5.jar
A 
experimental-highlighter-elasticsearch-plugin/experimental-highlighter-core-5.1.2.jar
D 
experimental-highlighter-elasticsearch-plugin/experimental-highlighter-elasticsearch-plugin-2.3.5.jar
A 
experimental-highlighter-elasticsearch-plugin/experimental-highlighter-elasticsearch-plugin-5.1.2.jar
D 
experimental-highlighter-elasticsearch-plugin/experimental-highlighter-lucene-2.3.5.jar
A 
experimental-highlighter-elasticsearch-plugin/experimental-highlighter-lucene-5.1.2.jar
M experimental-highlighter-elasticsearch-plugin/plugin-descriptor.properties
D extra/extra-2.3.5.jar
A extra/extra-5.1.2.jar
A extra/guava-20.0.jar
M extra/plugin-descriptor.properties
D swift-repository-plugin/commons-codec-1.6.jar
D swift-repository-plugin/commons-io-2.3.jar
D swift-repository-plugin/commons-lang-2.6.jar
D swift-repository-plugin/httpclient-4.2.1.jar
D swift-repository-plugin/httpcore-4.2.1.jar
D swift-repository-plugin/jackson-core-asl-1.9.7.jar
D swift-repository-plugin/jackson-mapper-asl-1.9.7.jar
D swift-repository-plugin/jcl-over-slf4j-1.7.2.jar
D swift-repository-plugin/joss-0.9.12.jar
D swift-repository-plugin/log4j-1.2.17.jar
D swift-repository-plugin/plugin-descriptor.properties
D swift-repository-plugin/plugin-security.policy
D swift-repository-plugin/slf4j-api-1.7.2.jar
D swift-repository-plugin/swift-repository-plugin-2.3.5.jar
41 files changed, 86 insertions(+), 101 deletions(-)

Approvals:
  DCausse: Verified; Looks good to me, approved



diff --git a/.mvn/wrapper/maven-wrapper.jar b/.mvn/wrapper/maven-wrapper.jar
deleted file mode 100644
index 1d0a148..0000000
--- a/.mvn/wrapper/maven-wrapper.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat 0e472561e3847ad172f57bbee8061002c01f8e86                49519
diff --git a/.mvnhelper/.mvn/wrapper/maven-wrapper.jar 
b/.mvnhelper/.mvn/wrapper/maven-wrapper.jar
new file mode 100644
index 0000000..1ca6702
--- /dev/null
+++ b/.mvnhelper/.mvn/wrapper/maven-wrapper.jar
@@ -0,0 +1 @@
+#$# git-fat 67e3c88a6db245e68791839884720b69003bf047                48930
diff --git a/.mvn/wrapper/maven-wrapper.properties 
b/.mvnhelper/.mvn/wrapper/maven-wrapper.properties
similarity index 100%
rename from .mvn/wrapper/maven-wrapper.properties
rename to .mvnhelper/.mvn/wrapper/maven-wrapper.properties
diff --git a/gpg-keymap.properties b/.mvnhelper/gpg-keymap.properties
similarity index 66%
rename from gpg-keymap.properties
rename to .mvnhelper/gpg-keymap.properties
index 0c06cdc..6d31663 100644
--- a/gpg-keymap.properties
+++ b/.mvnhelper/gpg-keymap.properties
@@ -1,4 +1,4 @@
 com.ibm.icu=0x44CE7BF2825EA2CD
 com.google.guava=0xABE9F3126BB741C1
-org.apache.lucene=0x51A0FAF76BC6507
+org.apache.lucene=0x51A0FAF76BC6507,0xDC92616F177050F6
 org.wikimedia.search*=0xA01B7AEAE1A5E2F3
diff --git a/mvnw b/.mvnhelper/mvnw
similarity index 100%
rename from mvnw
rename to .mvnhelper/mvnw
diff --git a/mvnw.cmd b/.mvnhelper/mvnw.cmd
similarity index 100%
rename from mvnw.cmd
rename to .mvnhelper/mvnw.cmd
diff --git a/pom.xml b/.mvnhelper/pom.xml
similarity index 97%
rename from pom.xml
rename to .mvnhelper/pom.xml
index fe27961..2260d17 100644
--- a/pom.xml
+++ b/.mvnhelper/pom.xml
@@ -9,8 +9,8 @@
     <version>1.0-SNAPSHOT</version>
 
     <properties>
-        <elasticsearch.version>5.2.2</elasticsearch.version>
-        <lucene.version>6.4.1</lucene.version>
+        <elasticsearch.version>5.1.2</elasticsearch.version>
+        <lucene.version>6.3.0</lucene.version>
     </properties>
 
     <dependencies>
diff --git a/update-plugins.bash b/.mvnhelper/update-plugins.bash
similarity index 86%
rename from update-plugins.bash
rename to .mvnhelper/update-plugins.bash
index fb79fad..351bf93 100755
--- a/update-plugins.bash
+++ b/.mvnhelper/update-plugins.bash
@@ -2,10 +2,14 @@
 
 set -e
 
-GIT_REPO="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-ELASTICSEARCH_VERSION=`grep '<elasticsearch.version>' ${GIT_REPO}/pom.xml | 
sed -e 's/.*<elasticsearch.version>\(.*\)<\/elasticsearch.version>.*/\1/'`
+
+MVN_DATA="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+GIT_REPO="$( cd $MVN_DATA/.. && pwd)"
+cd $MVN_DATA
+MVN=mvn
+ELASTICSEARCH_VERSION=`grep '<elasticsearch.version>' ${MVN_DATA}/pom.xml | 
sed -e 's/.*<elasticsearch.version>\(.*\)<\/elasticsearch.version>.*/\1/'`
 if [ -z "$ELASTICSEARCH_VERSION" ]; then
-  echo "No elastic version defined in $GIT_REPO/pom.xml";
+  echo "No elastic version defined in $MVN_DATA/pom.xml";
   exit 1;
 fi
 
@@ -43,7 +47,7 @@
     plugin_filename=${plugin}-${ELASTICSEARCH_VERSION}.zip
     curl -o ${temp_dir}/${plugin_filename} \
       
https://artifacts.elastic.co/downloads/elasticsearch-plugins/${plugin}/${plugin_filename}
-    ./mvnw install:install-file \
+    $MVN install:install-file \
       -Dfile=${temp_dir}/${plugin_filename} \
       -DgroupId=org.elasticsearch.plugin \
       -DartifactId=${plugin} \
@@ -51,7 +55,7 @@
       -Dpackaging=zip \
       -DgeneratePom=true
     unzip ${temp_dir}/${plugin_filename} -d ${temp_dir}
-    ./mvnw install:install-file \
+    $MVN install:install-file \
       -Dfile=${temp_dir}/elasticsearch/${plugin}-${ELASTICSEARCH_VERSION}.jar \
       -DgroupId=org.elasticsearch.plugin \
       -DartifactId=${plugin} \
@@ -63,7 +67,7 @@
 }
 
 function deploy_jars_to_archiva {
-  ./mvnw -Dmdep.copyPom=true -DincludeScope=runtime clean 
dependency:copy-dependencies
+  $MVN -Dmdep.copyPom=true -DincludeScope=runtime clean 
dependency:copy-dependencies
 
   echo "The following files are going to be uploaded to archiva"
   ls target/dependency
@@ -71,7 +75,7 @@
   read
 
   for pom in target/dependency/*.pom; do
-    ./mvnw deploy:deploy-file \
+    $MVN deploy:deploy-file \
       -DrepositoryId=archiva.wikimedia.org \
       -Durl=https://archiva.wikimedia.org/repository/mirrored \
       -Dfile="${pom%%.pom}.jar" \
@@ -97,12 +101,12 @@
 }
 
 function update_git_deployment_repo {
-  ./mvnw -DoutputDirectory=target/plugins clean dependency:copy
+  $MVN -DoutputDirectory=target/plugins clean dependency:copy
 
-  for plugin in `ls ${GIT_REPO}/target/plugins`; do
+  for plugin in `ls ${MVN_DATA}/target/plugins`; do
     rm -rf ${temp_dir}/plugin
     mkdir -p ${temp_dir}/plugin
-    unzip ${GIT_REPO}/target/plugins/${plugin} -d ${temp_dir}/plugin
+    unzip ${MVN_DATA}/target/plugins/${plugin} -d ${temp_dir}/plugin
     plugin_desc=${temp_dir}/plugin/elasticsearch/plugin-descriptor.properties
     plugin_es_version=`grep '^elasticsearch.version=' ${plugin_desc}`
     plugin_es_version=${plugin_es_version##*=}
@@ -138,12 +142,12 @@
 case ${command} in
   upload-archiva)
   install_elastic_plugins_locally
-  ./mvnw clean pgpverify:check
+  $MVN clean pgpverify:check
   deploy_jars_to_archiva
   ;;
 
   prepare-commit)
-  ./mvnw clean pgpverify:check
+  $MVN clean pgpverify:check
   update_git_deployment_repo
   ;;
 
diff --git a/analysis-icu/analysis-icu-2.3.5.jar 
b/analysis-icu/analysis-icu-2.3.5.jar
deleted file mode 100644
index ebdfbc2..0000000
--- a/analysis-icu/analysis-icu-2.3.5.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat e0d736546f27a158dc9e092a6ea99badb1d0abb0                24489
diff --git a/analysis-icu/analysis-icu-5.1.2.jar 
b/analysis-icu/analysis-icu-5.1.2.jar
new file mode 100644
index 0000000..774dbca
--- /dev/null
+++ b/analysis-icu/analysis-icu-5.1.2.jar
@@ -0,0 +1 @@
+#$# git-fat bdb335d9d9c27d61ac4c25dd12085f7b7d73401d                22500
diff --git a/analysis-icu/lucene-analyzers-icu-5.5.0.jar 
b/analysis-icu/lucene-analyzers-icu-5.5.0.jar
deleted file mode 100644
index 8a135b7..0000000
--- a/analysis-icu/lucene-analyzers-icu-5.5.0.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat 69a6e72d322b6643f1b419e6c9cc46623a2404e9                78907
diff --git a/analysis-icu/lucene-analyzers-icu-6.3.0.jar 
b/analysis-icu/lucene-analyzers-icu-6.3.0.jar
new file mode 100644
index 0000000..7a4cf22
--- /dev/null
+++ b/analysis-icu/lucene-analyzers-icu-6.3.0.jar
@@ -0,0 +1 @@
+#$# git-fat 467d808656db028faa3cbc86d386dbf6164a835c                79583
diff --git a/analysis-icu/plugin-descriptor.properties 
b/analysis-icu/plugin-descriptor.properties
index 5d99917..aaf0a02 100644
--- a/analysis-icu/plugin-descriptor.properties
+++ b/analysis-icu/plugin-descriptor.properties
@@ -1,30 +1,18 @@
 # Elasticsearch plugin descriptor file
-# This file must exist as 'plugin-descriptor.properties' at
-# the root directory of all plugins.
+# This file must exist as 'plugin-descriptor.properties' in a folder named 
`elasticsearch`
+# inside all plugins.
 #
-# A plugin can be 'site', 'jvm', or both.
-#
-### example site plugin for "foo":
+### example plugin for "foo"
 #
 # foo.zip <-- zip file for the plugin, with this structure:
-#   _site/ <-- the contents that will be served
-#   plugin-descriptor.properties <-- example contents below:
+#|____elasticsearch/
+#| |____   <arbitrary name1>.jar <-- classes, resources, dependencies
+#| |____   <arbitrary nameN>.jar <-- any number of jars
+#| |____   plugin-descriptor.properties <-- example contents below:
 #
-# site=true
-# description=My cool plugin
-# version=1.0
-#
-### example jvm plugin for "foo"
-#
-# foo.zip <-- zip file for the plugin, with this structure:
-#   <arbitrary name1>.jar <-- classes, resources, dependencies
-#   <arbitrary nameN>.jar <-- any number of jars
-#   plugin-descriptor.properties <-- example contents below:
-#
-# jvm=true
 # classname=foo.bar.BazPlugin
 # description=My cool plugin
-# version=2.0.0-rc1
+# version=2.0
 # elasticsearch.version=2.0
 # java.version=1.7
 #
@@ -34,25 +22,10 @@
 description=The ICU Analysis plugin integrates Lucene ICU module into 
elasticsearch, adding ICU relates analysis components.
 #
 # 'version': plugin's version
-version=2.3.5
+version=5.1.2
 #
 # 'name': the plugin name
 name=analysis-icu
-
-### mandatory elements for site plugins:
-#
-# 'site': set to true to indicate contents of the _site/
-#  directory in the root of the plugin should be served.
-site=false
-#
-### mandatory elements for jvm plugins :
-#
-# 'jvm': true if the 'classname' class should be loaded
-#  from jar files in the root directory of the plugin.
-#  Note that only jar files in the root directory are
-#  added to the classpath for the plugin! If you need
-#  other resources, package them into a resources jar.
-jvm=true
 #
 # 'classname': the name of the class to load, fully-qualified.
 classname=org.elasticsearch.plugin.analysis.icu.AnalysisICUPlugin
@@ -61,20 +34,7 @@
 # use the system property java.specification.version
 # version string must be a sequence of nonnegative decimal integers
 # separated by "."'s and may have leading zeros
-java.version=1.7
+java.version=1.8
 #
 # 'elasticsearch.version' version of elasticsearch compiled against
-# You will have to release a new version of the plugin for each new
-# elasticsearch release. This version is checked when the plugin
-# is loaded so Elasticsearch will refuse to start in the presence of
-# plugins with the incorrect elasticsearch.version.
-elasticsearch.version=2.3.5
-#
-### deprecated elements for jvm plugins :
-#
-# 'isolated': true if the plugin should have its own classloader.
-# passing false is deprecated, and only intended to support plugins 
-# that have hard dependencies against each other. If this is
-# not specified, then the plugin is isolated by default.
-isolated=true
-#
+elasticsearch.version=5.1.2
diff --git a/analysis-stempel/analysis-stempel-5.1.2.jar 
b/analysis-stempel/analysis-stempel-5.1.2.jar
new file mode 100644
index 0000000..5be0525
--- /dev/null
+++ b/analysis-stempel/analysis-stempel-5.1.2.jar
@@ -0,0 +1 @@
+#$# git-fat f7f10453f5b420c3263093fcb043aaa4b837a579                 8985
diff --git a/analysis-stempel/lucene-analyzers-stempel-6.3.0.jar 
b/analysis-stempel/lucene-analyzers-stempel-6.3.0.jar
new file mode 100644
index 0000000..ef24f28
--- /dev/null
+++ b/analysis-stempel/lucene-analyzers-stempel-6.3.0.jar
@@ -0,0 +1 @@
+#$# git-fat bcf535520b92821cf04486031214d35d7405571c               518347
diff --git a/analysis-stempel/plugin-descriptor.properties 
b/analysis-stempel/plugin-descriptor.properties
new file mode 100644
index 0000000..fd5c48d
--- /dev/null
+++ b/analysis-stempel/plugin-descriptor.properties
@@ -0,0 +1,40 @@
+# Elasticsearch plugin descriptor file
+# This file must exist as 'plugin-descriptor.properties' in a folder named 
`elasticsearch`
+# inside all plugins.
+#
+### example plugin for "foo"
+#
+# foo.zip <-- zip file for the plugin, with this structure:
+#|____elasticsearch/
+#| |____   <arbitrary name1>.jar <-- classes, resources, dependencies
+#| |____   <arbitrary nameN>.jar <-- any number of jars
+#| |____   plugin-descriptor.properties <-- example contents below:
+#
+# classname=foo.bar.BazPlugin
+# description=My cool plugin
+# version=2.0
+# elasticsearch.version=2.0
+# java.version=1.7
+#
+### mandatory elements for all plugins:
+#
+# 'description': simple summary of the plugin
+description=The Stempel (Polish) Analysis plugin integrates Lucene stempel 
(polish) analysis module into elasticsearch.
+#
+# 'version': plugin's version
+version=5.1.2
+#
+# 'name': the plugin name
+name=analysis-stempel
+#
+# 'classname': the name of the class to load, fully-qualified.
+classname=org.elasticsearch.plugin.analysis.stempel.AnalysisStempelPlugin
+#
+# 'java.version' version of java the code is built against
+# use the system property java.specification.version
+# version string must be a sequence of nonnegative decimal integers
+# separated by "."'s and may have leading zeros
+java.version=1.8
+#
+# 'elasticsearch.version' version of elasticsearch compiled against
+elasticsearch.version=5.1.2
diff --git 
a/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-core-2.3.5.jar
 
b/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-core-2.3.5.jar
deleted file mode 100644
index 4fd5809..0000000
--- 
a/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-core-2.3.5.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat e06ac6385e3b9b67268b5ed34b1c14227bfc94f7               148107
diff --git 
a/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-core-5.1.2.jar
 
b/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-core-5.1.2.jar
new file mode 100644
index 0000000..0f7437a
--- /dev/null
+++ 
b/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-core-5.1.2.jar
@@ -0,0 +1 @@
+#$# git-fat ee654e6b7e2bb8c3a31dbb776d6a11ad68eeb38c               148157
diff --git 
a/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-elasticsearch-plugin-2.3.5.jar
 
b/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-elasticsearch-plugin-2.3.5.jar
deleted file mode 100644
index 672c2f6..0000000
--- 
a/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-elasticsearch-plugin-2.3.5.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat 8bcdf614fb239ca2b80fbea5cc3c98a687dd55bc                40448
diff --git 
a/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-elasticsearch-plugin-5.1.2.jar
 
b/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-elasticsearch-plugin-5.1.2.jar
new file mode 100644
index 0000000..e66286c
--- /dev/null
+++ 
b/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-elasticsearch-plugin-5.1.2.jar
@@ -0,0 +1 @@
+#$# git-fat e5d7e8cec84274bb8bd20d6149c4c52574d5629e                36761
diff --git 
a/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-lucene-2.3.5.jar
 
b/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-lucene-2.3.5.jar
deleted file mode 100644
index a67513f..0000000
--- 
a/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-lucene-2.3.5.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat 313f9704f12e62318950424efbb39a51416c33ed                46567
diff --git 
a/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-lucene-5.1.2.jar
 
b/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-lucene-5.1.2.jar
new file mode 100644
index 0000000..b5f566b
--- /dev/null
+++ 
b/experimental-highlighter-elasticsearch-plugin/experimental-highlighter-lucene-5.1.2.jar
@@ -0,0 +1 @@
+#$# git-fat 3d28549306e8bbba85418e9b0d334582fa8544ed                46499
diff --git 
a/experimental-highlighter-elasticsearch-plugin/plugin-descriptor.properties 
b/experimental-highlighter-elasticsearch-plugin/plugin-descriptor.properties
index 7f06b90..f2bce68 100644
--- a/experimental-highlighter-elasticsearch-plugin/plugin-descriptor.properties
+++ b/experimental-highlighter-elasticsearch-plugin/plugin-descriptor.properties
@@ -1,7 +1,7 @@
 name=experimental-highlighter
 description=Experimental Highlighter plugin
-version=2.3.5
+version=5.1.2
 jvm=true
 
classname=org.wikimedia.highlighter.experimental.elasticsearch.plugin.ExperimentalHighlighterPlugin
-java.version=1.7
-elasticsearch.version=2.3.5
+java.version=1.8
+elasticsearch.version=5.1.2
diff --git a/extra/extra-2.3.5.jar b/extra/extra-2.3.5.jar
deleted file mode 100644
index a2ac792..0000000
--- a/extra/extra-2.3.5.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat 5802b52906c98680e13515c2edf325831fc9ce9f               121054
diff --git a/extra/extra-5.1.2.jar b/extra/extra-5.1.2.jar
new file mode 100644
index 0000000..57fce32
--- /dev/null
+++ b/extra/extra-5.1.2.jar
@@ -0,0 +1 @@
+#$# git-fat 069cd93bdf78e5b9824103113e190378e94f75f9               128189
diff --git a/extra/guava-20.0.jar b/extra/guava-20.0.jar
new file mode 100644
index 0000000..dc2b277
--- /dev/null
+++ b/extra/guava-20.0.jar
@@ -0,0 +1 @@
+#$# git-fat 89507701249388e1ed5ddcf8c41f4ce1be7831ef              2442625
diff --git a/extra/plugin-descriptor.properties 
b/extra/plugin-descriptor.properties
index af87b34..d6e5a98 100644
--- a/extra/plugin-descriptor.properties
+++ b/extra/plugin-descriptor.properties
@@ -1,7 +1,7 @@
 name=extra
 description=Extra queries and filters for Elasticsearch.
-version=2.3.5
+version=5.1.2
 jvm=true
 classname=org.wikimedia.search.extra.ExtraPlugin
-java.version=1.7
-elasticsearch.version=2.3.5
\ No newline at end of file
+java.version=1.8
+elasticsearch.version=5.1.2
\ No newline at end of file
diff --git a/swift-repository-plugin/commons-codec-1.6.jar 
b/swift-repository-plugin/commons-codec-1.6.jar
deleted file mode 100644
index 38f0707..0000000
--- a/swift-repository-plugin/commons-codec-1.6.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat b7f0fc8f61ecadeb3695f0b9464755eee44374d4               232771
diff --git a/swift-repository-plugin/commons-io-2.3.jar 
b/swift-repository-plugin/commons-io-2.3.jar
deleted file mode 100644
index 6bd9a9e..0000000
--- a/swift-repository-plugin/commons-io-2.3.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat cd8d6ffc833cc63c30d712a180f4663d8f55799b               182650
diff --git a/swift-repository-plugin/commons-lang-2.6.jar 
b/swift-repository-plugin/commons-lang-2.6.jar
deleted file mode 100644
index 9aae4e5..0000000
--- a/swift-repository-plugin/commons-lang-2.6.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat 0ce1edb914c94ebc388f086c6827e8bdeec71ac2               284220
diff --git a/swift-repository-plugin/httpclient-4.2.1.jar 
b/swift-repository-plugin/httpclient-4.2.1.jar
deleted file mode 100644
index e2d88cb..0000000
--- a/swift-repository-plugin/httpclient-4.2.1.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat b69bd03af60bf487b3ae1209a644ecac587bf6fc               427021
diff --git a/swift-repository-plugin/httpcore-4.2.1.jar 
b/swift-repository-plugin/httpcore-4.2.1.jar
deleted file mode 100644
index 815e105..0000000
--- a/swift-repository-plugin/httpcore-4.2.1.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat 2d503272bf0a8b5f92d64db78b4ba9abbaccc6fd               223374
diff --git a/swift-repository-plugin/jackson-core-asl-1.9.7.jar 
b/swift-repository-plugin/jackson-core-asl-1.9.7.jar
deleted file mode 100644
index 34d91e4..0000000
--- a/swift-repository-plugin/jackson-core-asl-1.9.7.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat 2dd41e7570f5c73e63a6a1311671a60c817e1989               228552
diff --git a/swift-repository-plugin/jackson-mapper-asl-1.9.7.jar 
b/swift-repository-plugin/jackson-mapper-asl-1.9.7.jar
deleted file mode 100644
index 3a4dffe..0000000
--- a/swift-repository-plugin/jackson-mapper-asl-1.9.7.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat 3bc2efad5ceb9e24e44f731d4282b5df3ea6d23f               780301
diff --git a/swift-repository-plugin/jcl-over-slf4j-1.7.2.jar 
b/swift-repository-plugin/jcl-over-slf4j-1.7.2.jar
deleted file mode 100644
index 166f44f..0000000
--- a/swift-repository-plugin/jcl-over-slf4j-1.7.2.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat 358c500a1262d77e87167cbd0fdfb3ae8eca4fca                16457
diff --git a/swift-repository-plugin/joss-0.9.12.jar 
b/swift-repository-plugin/joss-0.9.12.jar
deleted file mode 100644
index 2f7f81b..0000000
--- a/swift-repository-plugin/joss-0.9.12.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat 5fdc087b7025b7627fc2e5c14bb78f8d7aa775fa               289115
diff --git a/swift-repository-plugin/log4j-1.2.17.jar 
b/swift-repository-plugin/log4j-1.2.17.jar
deleted file mode 100644
index f79dad1..0000000
--- a/swift-repository-plugin/log4j-1.2.17.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat 5af35056b4d257e4b64b9e8069c0746e8b08629f               489884
diff --git a/swift-repository-plugin/plugin-descriptor.properties 
b/swift-repository-plugin/plugin-descriptor.properties
deleted file mode 100644
index b67a11c..0000000
--- a/swift-repository-plugin/plugin-descriptor.properties
+++ /dev/null
@@ -1,7 +0,0 @@
-name=swift-repository
-description=Repository plugin for Elasticsearch backed by Swift
-version=2.3.5
-jvm=true
-classname=org.wikimedia.elasticsearch.swift.SwiftRepositoryPlugin
-java.version=1.7
-elasticsearch.version=2.3.5
diff --git a/swift-repository-plugin/plugin-security.policy 
b/swift-repository-plugin/plugin-security.policy
deleted file mode 100644
index 2ba78f5..0000000
--- a/swift-repository-plugin/plugin-security.policy
+++ /dev/null
@@ -1,3 +0,0 @@
-grant {
-  permission java.lang.reflect.ReflectPermission "suppressAccessChecks";
-};
\ No newline at end of file
diff --git a/swift-repository-plugin/slf4j-api-1.7.2.jar 
b/swift-repository-plugin/slf4j-api-1.7.2.jar
deleted file mode 100644
index f26d062..0000000
--- a/swift-repository-plugin/slf4j-api-1.7.2.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat 0081d61b7f33ebeab314e07de0cc596f8e858d97                26083
diff --git a/swift-repository-plugin/swift-repository-plugin-2.3.5.jar 
b/swift-repository-plugin/swift-repository-plugin-2.3.5.jar
deleted file mode 100644
index 780ac2f..0000000
--- a/swift-repository-plugin/swift-repository-plugin-2.3.5.jar
+++ /dev/null
@@ -1 +0,0 @@
-#$# git-fat 7c9f26282f859191956b73ea78b0c992f1d7769a                25538

-- 
To view, visit https://gerrit.wikimedia.org/r/341826
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia2aee6509f73e9a95574208400bbdbf88976e776
Gerrit-PatchSet: 4
Gerrit-Project: operations/software/elasticsearch/plugins
Gerrit-Branch: master
Gerrit-Owner: DCausse <[email protected]>
Gerrit-Reviewer: DCausse <[email protected]>
Gerrit-Reviewer: EBernhardson <[email protected]>
Gerrit-Reviewer: Gehel <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to