Projekt

Obecné

Profil

Stáhnout (2.65 KB) Statistiky
| Větev: | Tag: | Revize:
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>1.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
	<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
		<dependency>
94
			<groupId>org.slf4j</groupId>
95
			<artifactId>slf4j-api</artifactId>
96
			<version>1.7.30</version>
97
		</dependency>
98

    
99
	</dependencies>
100

    
101
	<build>
102
		<plugins>
103
			<plugin>
104
				<groupId>org.springframework.boot</groupId>
105
				<artifactId>spring-boot-maven-plugin</artifactId>
106
			</plugin>
107
		</plugins>
108
	</build>
109

    
110
</project>
(2-2/2)