Skip to content

Commit f87debf

Browse files
Patrick RypallaPatrick Rypalla
authored andcommitted
plugin descriptor changed
1 parent ec45bbb commit f87debf

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
*.class
2-
*.jar
32
*.zip
43
/build/
54
/bin/

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def pluginName = 'elasticsearch-http-basic'
1010
def elasticVersion = '2.3.4'
1111

1212
jar {
13-
jar.baseName = "elasticsearch-http-basic" + version
13+
jar.baseName = "elasticsearch-http-basic"
1414
manifest {
1515
attributes 'Implementation-Title': 'elasticsearch-http-basic',
1616
'Implementation-Version': version
@@ -74,7 +74,7 @@ uploadArchives {
7474

7575
task makePluginDescriptor(type: Copy) {
7676
from 'src/main/templates'
77-
into 'build/tmp/plugin'
77+
into 'src/main/resources'
7878
expand([
7979
'descriptor': [
8080
'name': pluginName,
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
classname=com.asquera.elasticsearch.plugins.http.HttpBasicServerPlugin
2+
name=elasticsearch-http-basic
3+
description=Plugin to enable HTTP basic authentication and/or Ip based authentication
4+
jvm=true
5+
site=false
6+
isolated=true
7+
version=2.3.4
8+
java.version=1.8
9+
elasticsearch.version=2.3.4

0 commit comments

Comments
 (0)