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.2-SNAPSHOT</version>
|
16
|
<packaging>jar</packaging>
|
17
|
<name>Fulltext Search</name>
|
18
|
|
19
|
<properties>
|
20
|
<java.version>11</java.version>
|
21
|
</properties>
|
22
|
|
23
|
<repositories>
|
24
|
<repository>
|
25
|
<id>javaxt.com</id>
|
26
|
<url>http://www.javaxt.com/maven</url>
|
27
|
</repository>
|
28
|
</repositories>
|
29
|
|
30
|
<dependencies>
|
31
|
<dependency>
|
32
|
<groupId>org.springframework.boot</groupId>
|
33
|
<artifactId>spring-boot-starter-web</artifactId>
|
34
|
</dependency>
|
35
|
|
36
|
<dependency>
|
37
|
<groupId>org.springframework.boot</groupId>
|
38
|
<artifactId>spring-boot-starter</artifactId>
|
39
|
</dependency>
|
40
|
|
41
|
<!-- exclude junit 4 -->
|
42
|
<dependency>
|
43
|
<groupId>org.springframework.boot</groupId>
|
44
|
<artifactId>spring-boot-starter-test</artifactId>
|
45
|
<scope>test</scope>
|
46
|
<exclusions>
|
47
|
<exclusion>
|
48
|
<groupId>junit</groupId>
|
49
|
<artifactId>junit</artifactId>
|
50
|
</exclusion>
|
51
|
</exclusions>
|
52
|
</dependency>
|
53
|
|
54
|
<!-- junit 5 -->
|
55
|
<dependency>
|
56
|
<groupId>org.junit.jupiter</groupId>
|
57
|
<artifactId>junit-jupiter-engine</artifactId>
|
58
|
<version>${junit-jupiter.version}</version>
|
59
|
<scope>test</scope>
|
60
|
</dependency>
|
61
|
|
62
|
<dependency>
|
63
|
<groupId>org.springframework</groupId>
|
64
|
<artifactId>spring-web</artifactId>
|
65
|
<version>5.2.4.RELEASE</version>
|
66
|
</dependency>
|
67
|
|
68
|
<!-- JAXB -->
|
69
|
<dependency>
|
70
|
<groupId>javax.xml.bind</groupId>
|
71
|
<artifactId>jaxb-api</artifactId>
|
72
|
<version>2.3.1</version>
|
73
|
</dependency>
|
74
|
<dependency>
|
75
|
<groupId>org.glassfish.jaxb</groupId>
|
76
|
<artifactId>jaxb-runtime</artifactId>
|
77
|
<version>2.3.2</version>
|
78
|
</dependency>
|
79
|
|
80
|
<!-- SolrJ -->
|
81
|
<dependency>
|
82
|
<groupId>org.apache.solr</groupId>
|
83
|
<artifactId>solr-solrj</artifactId>
|
84
|
<version>8.5.0</version>
|
85
|
</dependency>
|
86
|
|
87
|
<dependency>
|
88
|
<groupId>javaxt</groupId>
|
89
|
<artifactId>javaxt-core</artifactId>
|
90
|
<version>1.10.0</version>
|
91
|
</dependency>
|
92
|
|
93
|
</dependencies>
|
94
|
|
95
|
<build>
|
96
|
<plugins>
|
97
|
<plugin>
|
98
|
<groupId>org.springframework.boot</groupId>
|
99
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
100
|
</plugin>
|
101
|
</plugins>
|
102
|
</build>
|
103
|
|
104
|
</project>
|