Projekt

Obecné

Profil

Stáhnout (1.83 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>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
	</dependencies>
61

    
62
	<build>
63
		<plugins>
64
			<plugin>
65
				<groupId>org.springframework.boot</groupId>
66
				<artifactId>spring-boot-maven-plugin</artifactId>
67
			</plugin>
68
		</plugins>
69
	</build>
70

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