Skip to content

Commit a174727

Browse files
committed
added pom file
1 parent d74dc5f commit a174727

File tree

1 file changed

+75
-0
lines changed

1 file changed

+75
-0
lines changed

pom.xml

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>com.yru.lib</groupId>
7+
<artifactId>elastic-lib</artifactId>
8+
<version>0.0.1-SNAPSHOT</version>
9+
<packaging>jar</packaging>
10+
11+
<name>common-lib</name>
12+
<url>http://maven.apache.org</url>
13+
14+
<properties>
15+
<maven.compiler.target>1.8</maven.compiler.target>
16+
<maven.compiler.source>1.8</maven.compiler.source>
17+
</properties>
18+
19+
<dependencies>
20+
21+
<dependency>
22+
<groupId>org.elasticsearch.client</groupId>
23+
<artifactId>elasticsearch-rest-high-level-client</artifactId>
24+
<version>7.1.1</version>
25+
</dependency>
26+
27+
<!-- https://mvnrepository.com/artifact/org.elasticsearch/elasticsearch -->
28+
<dependency>
29+
<groupId>org.elasticsearch</groupId>
30+
<artifactId>elasticsearch</artifactId>
31+
<version>7.1.1</version>
32+
</dependency>
33+
34+
<dependency>
35+
<groupId>com.fasterxml.jackson.core</groupId>
36+
<artifactId>jackson-databind</artifactId>
37+
<version>2.11.1</version>
38+
</dependency>
39+
40+
<dependency>
41+
<groupId>com.google.code.gson</groupId>
42+
<artifactId>gson</artifactId>
43+
<version>2.8.6</version>
44+
</dependency>
45+
<!-- https://mvnrepository.com/artifact/org.elasticsearch/elasticsearch-x-content -->
46+
<!-- <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch-x-content</artifactId>
47+
<version>7.1.1</version> </dependency> -->
48+
<!-- https://mvnrepository.com/artifact/org.locationtech.spatial4j/spatial4j -->
49+
<dependency>
50+
<groupId>org.locationtech.spatial4j</groupId>
51+
<artifactId>spatial4j</artifactId>
52+
<version>0.7</version>
53+
</dependency>
54+
55+
56+
<dependency>
57+
<groupId>junit</groupId>
58+
<artifactId>junit</artifactId>
59+
<version>3.8.1</version>
60+
<scope>test</scope>
61+
</dependency>
62+
</dependencies>
63+
<build>
64+
<plugins>
65+
<plugin>
66+
<artifactId>maven-compiler-plugin</artifactId>
67+
<configuration>
68+
<source>1.8</source>
69+
<target>1.8</target>
70+
</configuration>
71+
</plugin>
72+
</plugins>
73+
</build>
74+
75+
</project>

0 commit comments

Comments
 (0)