Projekt

Obecné

Profil

Stáhnout (3.51 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>8</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>nz.net.ultraq.thymeleaf</groupId>
42
            <artifactId>thymeleaf-layout-dialect</artifactId>
43
        </dependency>
44

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

    
50
		<dependency>
51
			<groupId>org.springframework.boot</groupId>
52
			<artifactId>spring-boot-starter-data-jpa</artifactId>
53
		</dependency>
54

    
55
		<dependency>
56
			<groupId>org.springframework.security</groupId>
57
			<artifactId>spring-security-web</artifactId>
58
		</dependency>
59

    
60
		<dependency>
61
			<groupId>org.springframework.security</groupId>
62
			<artifactId>spring-security-config</artifactId>
63
		</dependency>
64
		
65
		<dependency>
66
			<groupId>org.thymeleaf.extras</groupId>
67
			<artifactId>thymeleaf-extras-springsecurity5</artifactId>
68
		</dependency>
69

    
70
		<dependency>
71
			<groupId>javax.transaction</groupId>
72
			<artifactId>javax.transaction-api</artifactId>
73
		</dependency>
74

    
75
		<dependency>
76
			<groupId>javax.persistence</groupId>
77
			<artifactId>javax.persistence-api</artifactId>
78
		</dependency>
79

    
80
		<dependency>
81
			<groupId>org.projectlombok</groupId>
82
			<artifactId>lombok</artifactId>
83
		</dependency>
84
		
85
		<dependency>
86
			<groupId>com.h2database</groupId>
87
			<artifactId>h2</artifactId>
88
			<scope>runtime</scope>
89
		</dependency>
90
		
91
		<dependency>
92
			<groupId>org.springframework.boot</groupId>
93
			<artifactId>spring-boot-starter-test</artifactId>
94
			<scope>test</scope>
95
			<exclusions>
96
				<exclusion>
97
					<groupId>org.junit.vintage</groupId>
98
					<artifactId>junit-vintage-engine</artifactId>
99
				</exclusion>
100
			</exclusions>
101
		</dependency>
102

    
103
		<dependency>
104
			<groupId>com.oracle.ojdbc</groupId>
105
			<artifactId>ojdbc8</artifactId>
106
			<scope>19.3.0.0</scope>
107
		</dependency>
108

    
109
		<dependency>
110
			<groupId>cn.easyproject</groupId>
111
			<artifactId>orai18n</artifactId>
112
			<version>12.1.0.2.0</version>
113
		</dependency>
114

    
115
		<dependency>
116
			<groupId>org.apache.poi</groupId>
117
			<artifactId>poi-ooxml</artifactId>
118
			<version>4.1.2</version>
119
		</dependency>
120

    
121
		<dependency>
122
			<groupId>com.github.librepdf</groupId>
123
			<artifactId>openpdf</artifactId>
124
			<version>1.3.14</version>
125
		</dependency>
126
	</dependencies>
127

    
128
	<build>
129
		<plugins>
130
			<plugin>
131
				<groupId>org.springframework.boot</groupId>
132
				<artifactId>spring-boot-maven-plugin</artifactId>
133
			</plugin>
134
		</plugins>
135
	</build>
136

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