Projekt

Obecné

Profil

Stáhnout (1.45 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
	<parent>
6
		<groupId>org.springframework.boot</groupId>
7
		<artifactId>spring-boot-starter-parent</artifactId>
8
		<version>2.4.4</version>
9
		<relativePath/> <!-- lookup parent from repository -->
10
	</parent>
11
	<groupId>cz.zcu.fav.kiv</groupId>
12
	<artifactId>anti-pattern-detection-app</artifactId>
13
	<version>0.0.1-SNAPSHOT</version>
14
	<packaging>war</packaging>
15
	<name>anti-pattern-detection-app</name>
16
	<description>Basic web application for anti pattern detection</description>
17
	<properties>
18
		<java.version>11</java.version>
19
	</properties>
20
	<dependencies>
21
		<dependency>
22
			<groupId>org.springframework.boot</groupId>
23
			<artifactId>spring-boot-starter-web</artifactId>
24
		</dependency>
25

    
26
		<dependency>
27
			<groupId>org.springframework.boot</groupId>
28
			<artifactId>spring-boot-starter-tomcat</artifactId>
29
			<scope>provided</scope>
30
		</dependency>
31
		<dependency>
32
			<groupId>org.springframework.boot</groupId>
33
			<artifactId>spring-boot-starter-test</artifactId>
34
			<scope>test</scope>
35
		</dependency>
36
	</dependencies>
37

    
38
	<build>
39
		<plugins>
40
			<plugin>
41
				<groupId>org.springframework.boot</groupId>
42
				<artifactId>spring-boot-maven-plugin</artifactId>
43
			</plugin>
44
		</plugins>
45
	</build>
46

    
47
</project>
(5-5/5)