|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" 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.spring.data.com.elastic.data.elastic</groupId> |
7 |
| - <artifactId>spring-data-elasticsearch</artifactId> |
8 |
| - <version>0.0.1-SNAPSHOT</version> |
9 |
| - <packaging>jar</packaging> |
10 |
| - |
11 |
| - <name>spring-data-elasticsearch</name> |
12 |
| - <description>Demo project for Spring Boot using Spring Data ElasticSearch</description> |
13 |
| - |
14 |
| - <parent> |
15 |
| - <groupId>org.springframework.boot</groupId> |
16 |
| - <artifactId>spring-boot-starter-parent</artifactId> |
17 |
| - <version>2.0.0.RELEASE</version> |
18 |
| - <relativePath/> <!-- lookup parent from repository --> |
19 |
| - </parent> |
20 |
| - |
21 |
| - <properties> |
22 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
23 |
| - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
24 |
| - <java.version>1.8</java.version> |
25 |
| - </properties> |
26 |
| - |
27 |
| - <dependencies> |
28 |
| - <dependency> |
29 |
| - <groupId>org.springframework.boot</groupId> |
30 |
| - <artifactId>spring-boot-starter-data-elasticsearch</artifactId> |
31 |
| - </dependency> |
32 |
| - |
33 |
| - <dependency> |
34 |
| - <groupId>org.springframework.boot</groupId> |
35 |
| - <artifactId>spring-boot-starter-test</artifactId> |
36 |
| - <scope>test</scope> |
37 |
| - </dependency> |
38 |
| - |
39 |
| - <dependency> |
40 |
| - <groupId>org.elasticsearch.client</groupId> |
41 |
| - <artifactId>transport</artifactId> |
42 |
| - <version>5.0.0</version> |
43 |
| - </dependency> |
44 |
| - <dependency> |
45 |
| - <groupId>org.apache.logging.log4j</groupId> |
46 |
| - <artifactId>log4j-to-slf4j</artifactId> |
47 |
| - <version>2.7</version> |
48 |
| - </dependency> |
49 |
| - <dependency> |
50 |
| - <groupId>ch.qos.logback</groupId> |
51 |
| - <artifactId>logback-classic</artifactId> |
52 |
| - <version>1.1.7</version> |
53 |
| - </dependency> |
54 |
| - </dependencies> |
55 |
| - |
56 |
| - <build> |
57 |
| - <plugins> |
58 |
| - <plugin> |
59 |
| - <groupId>org.springframework.boot</groupId> |
60 |
| - <artifactId>spring-boot-maven-plugin</artifactId> |
61 |
| - </plugin> |
62 |
| - </plugins> |
63 |
| - </build> |
| 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.spring.data.com.elastic.data.elastic</groupId> |
| 7 | + <artifactId>spring-data-elasticsearch</artifactId> |
| 8 | + <version>0.0.1-SNAPSHOT</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <name>spring-data-elasticsearch</name> |
| 12 | + <description>Demo project for Spring Boot using Spring Data ElasticSearch</description> |
| 13 | + |
| 14 | + <parent> |
| 15 | + <groupId>org.springframework.boot</groupId> |
| 16 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 17 | + <version>2.0.0.RELEASE</version> |
| 18 | + <relativePath/> <!-- lookup parent from repository --> |
| 19 | + </parent> |
| 20 | + |
| 21 | + <properties> |
| 22 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 23 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 24 | + <java.version>1.8</java.version> |
| 25 | + </properties> |
| 26 | + |
| 27 | + <dependencies> |
| 28 | + <dependency> |
| 29 | + <groupId>org.springframework.boot</groupId> |
| 30 | + <artifactId>spring-boot-starter-data-elasticsearch</artifactId> |
| 31 | + </dependency> |
| 32 | + |
| 33 | + <dependency> |
| 34 | + <groupId>org.springframework.boot</groupId> |
| 35 | + <artifactId>spring-boot-starter-test</artifactId> |
| 36 | + <scope>test</scope> |
| 37 | + </dependency> |
| 38 | + |
| 39 | + </dependencies> |
| 40 | + |
| 41 | + <build> |
| 42 | + <plugins> |
| 43 | + <plugin> |
| 44 | + <groupId>org.springframework.boot</groupId> |
| 45 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 46 | + </plugin> |
| 47 | + </plugins> |
| 48 | + </build> |
64 | 49 |
|
65 | 50 |
|
66 | 51 | </project>
|
0 commit comments