Projekt

Obecné

Profil

Stáhnout (3.46 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>aswi</name>
17
	<description>Simulation of contignent table - web app</description>
18

    
19
	<dependencies>
20
		<dependency>
21
			<groupId>org.springframework.boot</groupId>
22
			<artifactId>spring-boot-starter-web</artifactId>
23
		</dependency>
24

    
25
		<dependency>
26
			<groupId>org.springframework.boot</groupId>
27
			<artifactId>spring-boot-configuration-processor</artifactId>
28
			<optional>true</optional>
29
		</dependency>
30

    
31
		<dependency>
32
			<groupId>org.springframework.boot</groupId>
33
			<artifactId>spring-boot-starter-thymeleaf</artifactId>
34
		</dependency>
35

    
36
        <dependency>
37
            <groupId>nz.net.ultraq.thymeleaf</groupId>
38
            <artifactId>thymeleaf-layout-dialect</artifactId>
39
        </dependency>
40

    
41
		<dependency>
42
			<groupId>org.springframework.boot</groupId>
43
			<artifactId>spring-boot-starter-web</artifactId>
44
		</dependency>
45

    
46
		<dependency>
47
			<groupId>org.springframework.boot</groupId>
48
			<artifactId>spring-boot-starter-data-jpa</artifactId>
49
		</dependency>
50

    
51
		<dependency>
52
			<groupId>org.springframework.security</groupId>
53
			<artifactId>spring-security-web</artifactId>
54
		</dependency>
55

    
56
		<dependency>
57
			<groupId>org.springframework.security</groupId>
58
			<artifactId>spring-security-config</artifactId>
59
		</dependency>
60
		
61
		<dependency>
62
			<groupId>org.thymeleaf.extras</groupId>
63
			<artifactId>thymeleaf-extras-springsecurity5</artifactId>
64
		</dependency>
65

    
66
		<dependency>
67
			<groupId>javax.transaction</groupId>
68
			<artifactId>javax.transaction-api</artifactId>
69
		</dependency>
70

    
71
		<dependency>
72
			<groupId>javax.persistence</groupId>
73
			<artifactId>javax.persistence-api</artifactId>
74
		</dependency>
75

    
76
		<dependency>
77
			<groupId>org.projectlombok</groupId>
78
			<artifactId>lombok</artifactId>
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

    
105
		<dependency>
106
			<groupId>org.apache.poi</groupId>
107
			<artifactId>poi-ooxml</artifactId>
108
			<version>4.1.2</version>
109
		</dependency>
110

    
111
		<dependency>
112
			<groupId>com.github.librepdf</groupId>
113
			<artifactId>openpdf</artifactId>
114
			<version>1.3.14</version>
115
		</dependency>
116

    
117
		<dependency>
118
			<groupId>com.github.dhorions</groupId>
119
			<artifactId>boxable</artifactId>
120
			<version>1.5</version>
121
		</dependency>
122
	</dependencies>
123

    
124
	<build>
125
		<plugins>
126
			<plugin>
127
				<groupId>org.springframework.boot</groupId>
128
				<artifactId>spring-boot-maven-plugin</artifactId>
129
			</plugin>
130
		</plugins>
131
	</build>
132

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