This repository has been archived by the owner on May 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.groovy
77 lines (77 loc) · 1.68 KB
/
pom.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
project {
modelVersion '4.0.0'
groupId 'ca.ciralabs'
artifactId 'elastic-auth-plugin'
version '2019.10.31'
description 'Provides authentication support for Elasticsearch'
properties {
'project.build.sourceEncoding' 'UTF-8'
'maven.compiler.source' '11'
'maven.compiler.target' '11'
}
dependencies {
dependency {
groupId 'junit'
artifactId 'junit'
version '4.11'
scope 'test'
}
dependency {
groupId 'org.elasticsearch'
artifactId 'elasticsearch'
version '7.4.0'
scope 'provided'
}
dependency {
groupId 'com.unboundid'
artifactId 'unboundid-ldapsdk'
version '4.0.6'
}
dependency {
groupId 'io.jsonwebtoken'
artifactId 'jjwt-api'
version '0.10.5'
}
dependency {
groupId 'io.jsonwebtoken'
artifactId 'jjwt-impl'
version '0.10.5'
scope 'runtime'
}
dependency {
groupId 'io.jsonwebtoken'
artifactId 'jjwt-jackson'
version '0.10.5'
scope 'runtime'
}
}
build {
resources {
resource {
directory 'src/main/resources'
filtering false
excludes '*.properties'
}
}
plugins {
plugin {
groupId 'org.apache.maven.plugins'
artifactId 'maven-assembly-plugin'
version '2.6'
configuration {
appendAssemblyId false
outputDirectory '${project.build.directory}/releases/'
descriptors '${basedir}/src/main/assemblies/plugin.xml'
}
executions {
execution {
phase 'package'
goals {
goal 'single'
}
}
}
}
}
}
}