1
|
<?xml version="1.0" encoding="UTF-8"?>
|
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
4
|
<modelVersion>4.0.0</modelVersion>
|
5
|
|
6
|
<parent>
|
7
|
<groupId>org.springframework.boot</groupId>
|
8
|
<artifactId>spring-boot-starter-parent</artifactId>
|
9
|
<version>2.2.5.RELEASE</version>
|
10
|
<relativePath/> <!-- lookup parent from repository -->
|
11
|
</parent>
|
12
|
|
13
|
<groupId>cz.zcu.kiv.aswi</groupId>
|
14
|
<artifactId>fulltextsearch</artifactId>
|
15
|
<version>0.0.1-SNAPSHOT</version>
|
16
|
<packaging>jar</packaging>
|
17
|
<name>Fulltext Search</name>
|
18
|
|
19
|
<properties>
|
20
|
<java.version>11</java.version>
|
21
|
</properties>
|
22
|
|
23
|
<dependencies>
|
24
|
<dependency>
|
25
|
<groupId>org.springframework.boot</groupId>
|
26
|
<artifactId>spring-boot-starter-web</artifactId>
|
27
|
</dependency>
|
28
|
|
29
|
<dependency>
|
30
|
<groupId>org.springframework.boot</groupId>
|
31
|
<artifactId>spring-boot-starter</artifactId>
|
32
|
</dependency>
|
33
|
|
34
|
<!-- exclude junit 4 -->
|
35
|
<dependency>
|
36
|
<groupId>org.springframework.boot</groupId>
|
37
|
<artifactId>spring-boot-starter-test</artifactId>
|
38
|
<scope>test</scope>
|
39
|
<exclusions>
|
40
|
<exclusion>
|
41
|
<groupId>junit</groupId>
|
42
|
<artifactId>junit</artifactId>
|
43
|
</exclusion>
|
44
|
</exclusions>
|
45
|
</dependency>
|
46
|
|
47
|
<!-- junit 5 -->
|
48
|
<dependency>
|
49
|
<groupId>org.junit.jupiter</groupId>
|
50
|
<artifactId>junit-jupiter-engine</artifactId>
|
51
|
<version>${junit-jupiter.version}</version>
|
52
|
<scope>test</scope>
|
53
|
</dependency>
|
54
|
|
55
|
<dependency>
|
56
|
<groupId>org.springframework</groupId>
|
57
|
<artifactId>spring-web</artifactId>
|
58
|
<version>5.2.4.RELEASE</version>
|
59
|
</dependency>
|
60
|
|
61
|
<!-- JAXB -->
|
62
|
<dependency>
|
63
|
<groupId>javax.xml.bind</groupId>
|
64
|
<artifactId>jaxb-api</artifactId>
|
65
|
<version>2.3.1</version>
|
66
|
</dependency>
|
67
|
<dependency>
|
68
|
<groupId>org.glassfish.jaxb</groupId>
|
69
|
<artifactId>jaxb-runtime</artifactId>
|
70
|
<version>2.3.2</version>
|
71
|
</dependency>
|
72
|
|
73
|
<!-- SolrJ -->
|
74
|
<dependency>
|
75
|
<groupId>org.apache.solr</groupId>
|
76
|
<artifactId>solr-solrj</artifactId>
|
77
|
<version>8.5.0</version>
|
78
|
</dependency>
|
79
|
</dependencies>
|
80
|
|
81
|
<build>
|
82
|
<plugins>
|
83
|
<plugin>
|
84
|
<groupId>org.springframework.boot</groupId>
|
85
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
86
|
</plugin>
|
87
|
</plugins>
|
88
|
</build>
|
89
|
|
90
|
</project>
|