Projekt

Obecné

Profil

Stáhnout (2.96 KB) Statistiky
| Větev: | Revize:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0"
3
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5
	<modelVersion>4.0.0</modelVersion>
6
	<parent>
7
		<groupId>org.springframework.boot</groupId>
8
		<artifactId>spring-boot-starter-parent</artifactId>
9
		<version>2.2.0.RELEASE</version>
10
		<relativePath /> <!-- lookup parent from repository -->
11
	</parent>
12
	<groupId>vldc.aswi</groupId>
13
	<artifactId>aswi</artifactId>
14
	<version>0.0.1-SNAPSHOT</version>
15
	<packaging>war</packaging>
16
	<name>pia</name>
17
	<description>Simulation of contignent table - web app</description>
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-configuration-processor</artifactId>
32
			<optional>true</optional>
33
		</dependency>
34

    
35
		<dependency>
36
			<groupId>org.springframework.boot</groupId>
37
			<artifactId>spring-boot-starter-thymeleaf</artifactId>
38
		</dependency>
39

    
40
		<dependency>
41
			<groupId>org.springframework.boot</groupId>
42
			<artifactId>spring-boot-starter-data-jpa</artifactId>
43
		</dependency>
44

    
45
		<dependency>
46
			<groupId>org.springframework.security</groupId>
47
			<artifactId>spring-security-web</artifactId>
48
		</dependency>
49

    
50
		<dependency>
51
			<groupId>org.springframework.security</groupId>
52
			<artifactId>spring-security-config</artifactId>
53
		</dependency>
54
		
55
		<dependency>
56
			<groupId>org.thymeleaf.extras</groupId>
57
			<artifactId>thymeleaf-extras-springsecurity5</artifactId>
58
		</dependency>
59

    
60
		<dependency>
61
			<groupId>javax.transaction</groupId>
62
			<artifactId>javax.transaction-api</artifactId>
63
		</dependency>
64

    
65
		<dependency>
66
			<groupId>javax.persistence</groupId>
67
			<artifactId>javax.persistence-api</artifactId>
68
		</dependency>
69

    
70
		<dependency>
71
			<groupId>org.projectlombok</groupId>
72
			<artifactId>lombok</artifactId>
73
		</dependency>
74
		
75
		<dependency>
76
			<groupId>com.h2database</groupId>
77
			<artifactId>h2</artifactId>
78
			<scope>runtime</scope>
79
		</dependency>
80
		
81
		<dependency>
82
			<groupId>org.springframework.boot</groupId>
83
			<artifactId>spring-boot-starter-test</artifactId>
84
			<scope>test</scope>
85
			<exclusions>
86
				<exclusion>
87
					<groupId>org.junit.vintage</groupId>
88
					<artifactId>junit-vintage-engine</artifactId>
89
				</exclusion>
90
			</exclusions>
91
		</dependency>
92

    
93
		<dependency>
94
			<groupId>com.oracle.ojdbc</groupId>
95
			<artifactId>ojdbc8</artifactId>
96
			<scope>19.3.0.0</scope>
97
		</dependency>
98

    
99
		<dependency>
100
			<groupId>cn.easyproject</groupId>
101
			<artifactId>orai18n</artifactId>
102
			<version>12.1.0.2.0</version>
103
		</dependency>
104
	</dependencies>
105

    
106

    
107
	<build>
108
		<plugins>
109
			<plugin>
110
				<groupId>org.springframework.boot</groupId>
111
				<artifactId>spring-boot-maven-plugin</artifactId>
112
			</plugin>
113
		</plugins>
114
	</build>
115

    
116
</project>
(4-4/4)