-
Notifications
You must be signed in to change notification settings - Fork 1
/
dependency-reduced-pom.xml
139 lines (138 loc) · 5.96 KB
/
dependency-reduced-pom.xml
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>my.elasticsearch.test</groupId>
<artifactId>es-shaded</artifactId>
<name>es-shaded</name>
<version>1.0-SNAPSHOT</version>
<url>http://maven.apache.org</url>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>com.carrotsearch:hppc</include>
<include>com.fasterxml.jackson.core:jackson-core</include>
<include>com.fasterxml.jackson.dataformat:jackson-dataformat-cbor</include>
<include>com.fasterxml.jackson.dataformat:jackson-dataformat-smile</include>
<include>com.fasterxml.jackson.dataformat:jackson-dataformat-yaml</include>
<include>com.google.guava:guava</include>
<include>commons-cli:commons-cli</include>
<include>com.ning:compress-lzf</include>
<include>com.spatial4j:spatial4j</include>
<include>com.tdunning:t-digest</include>
<include>com.twitter:jsr166e</include>
<include>io.netty:netty</include>
<include>joda-time:joda-time</include>
<include>net.sf.trove4j:trove4j</include>
<include>org.apache.lucene:lucene-analyzers-common</include>
<include>org.apache.lucene:lucene-backward-codecs</include>
<include>org.apache.lucene:lucene-core</include>
<include>org.apache.lucene:lucene-grouping</include>
<include>org.apache.lucene:lucene-highlighter</include>
<include>org.apache.lucene:lucene-join</include>
<include>org.apache.lucene:lucene-memory</include>
<include>org.apache.lucene:lucene-misc</include>
<include>org.apache.lucene:lucene-queries</include>
<include>org.apache.lucene:lucene-queryparser</include>
<include>org.apache.lucene:lucene-sandbox</include>
<include>org.apache.lucene:lucene-spatial3d</include>
<include>org.apache.lucene:lucene-spatial</include>
<include>org.apache.lucene:lucene-suggest</include>
<include>org.elasticsearch:elasticsearch</include>
<include>org.elasticsearch:securesm</include>
<include>org.hdrhistogram:HdrHistogram</include>
<include>org.joda:joda-convert</include>
<include>org.mvel:mvel2</include>
<include>org.yaml:snakeyaml</include>
<include>com.github.spullara.mustache.java:compiler</include>
</includes>
<excludes />
</artifactSet>
<relocations>
<relocation>
<pattern>org.apache.commons.cli</pattern>
<shadedPattern>my.elasticsearch.commonscli</shadedPattern>
</relocation>
<relocation>
<pattern>com.google.common</pattern>
<shadedPattern>my.elasticsearch.google.common</shadedPattern>
</relocation>
<relocation>
<pattern>com.google.thirdparty</pattern>
<shadedPattern>my.elasticsearch.google.thirdparty</shadedPattern>
</relocation>
<relocation>
<pattern>org.jboss.netty</pattern>
<shadedPattern>my.elasticsearch.common.netty</shadedPattern>
</relocation>
</relocations>
<transformers>
<transformer />
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/license/**</exclude>
<exclude>META-INF/*</exclude>
<exclude>META-INF/maven/**</exclude>
<exclude>LICENSE</exclude>
<exclude>NOTICE</exclude>
<exclude>/*.txt</exclude>
<exclude>build.properties</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<releases>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>elasticsearch-releases</id>
<url>http://maven.elasticsearch.org/releases</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.elasticsearch.plugin</groupId>
<artifactId>shield</artifactId>
<version>2.3.4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.floragunn</groupId>
<artifactId>search-guard-ssl</artifactId>
<version>2.3.4.14</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.floragunn</groupId>
<artifactId>search-guard-2</artifactId>
<version>2.3.4.3</version>
<scope>compile</scope>
</dependency>
</dependencies>
<properties>
<elasticsearch.version>2.3.4</elasticsearch.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>