Revize 7011e007
Přidáno uživatelem Petr Urban před asi 2 roky(ů)
pom.xml | ||
---|---|---|
1 | 1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 | 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 |
|
|
12 |
<groupId>cz.zcu.fav.kiv</groupId> |
|
13 |
<artifactId>anti-pattern-detection-app</artifactId> |
|
14 |
<version>1.2.0</version> |
|
15 |
<packaging>war</packaging> |
|
16 |
<name>anti-pattern-detection-app</name> |
|
17 |
<description>Basic web application for anti pattern detection</description> |
|
18 |
|
|
19 |
<properties> |
|
20 |
<java.version>11</java.version> |
|
21 |
<spring.boot.version>2.6.9</spring.boot.version> |
|
22 |
<org.reflections.version>0.10.2</org.reflections.version> |
|
23 |
<org.jsoup.version>1.15.4</org.jsoup.version> |
|
24 |
<com.fasterxml.jackson.core.version>2.14.2</com.fasterxml.jackson.core.version> |
|
25 |
<org.junit.jupiter.version>5.9.2</org.junit.jupiter.version> |
|
26 |
<org.apache.maven.plugins.version>3.0.0-M7</org.apache.maven.plugins.version> |
|
27 |
</properties> |
|
28 |
|
|
29 |
<dependencies> |
|
30 |
|
|
31 |
<dependency> |
|
32 |
<groupId>org.springframework.boot</groupId> |
|
33 |
<artifactId>spring-boot-starter</artifactId> |
|
34 |
<version>3.0.4</version> |
|
35 |
</dependency> |
|
36 |
|
|
37 |
<dependency> |
|
38 |
<groupId>org.springframework.boot</groupId> |
|
39 |
<artifactId>spring-boot-starter-test</artifactId> |
|
40 |
<version>3.0.4</version> |
|
41 |
<scope>test</scope> |
|
42 |
</dependency> |
|
43 |
|
|
44 |
<dependency> |
|
45 |
<groupId>org.springframework.boot</groupId> |
|
46 |
<artifactId>spring-boot-starter-web</artifactId> |
|
47 |
<version>3.0.4</version> |
|
48 |
</dependency> |
|
49 |
|
|
50 |
<dependency> |
|
51 |
<groupId>mysql</groupId> |
|
52 |
<artifactId>mysql-connector-java</artifactId> |
|
53 |
<version>8.0.32</version> |
|
54 |
<scope>runtime</scope> |
|
55 |
</dependency> |
|
56 |
|
|
57 |
<dependency> |
|
58 |
<groupId>org.springframework.boot</groupId> |
|
59 |
<artifactId>spring-boot-starter-data-jpa</artifactId> |
|
60 |
<version>3.0.4</version> |
|
61 |
</dependency> |
|
62 |
|
|
63 |
<dependency> |
|
64 |
<groupId>org.springframework.boot</groupId> |
|
65 |
<artifactId>spring-boot-starter-thymeleaf</artifactId> |
|
66 |
<version>3.0.4</version> |
|
67 |
</dependency> |
|
68 |
|
|
69 |
<dependency> |
|
70 |
<groupId>org.reflections</groupId> |
|
71 |
<artifactId>reflections</artifactId> |
|
72 |
<version>${org.reflections.version}</version> |
|
73 |
</dependency> |
|
74 |
|
|
75 |
<!-- jsoup HTML parser library @ https://jsoup.org/ --> |
|
76 |
<dependency> |
|
77 |
<groupId>org.jsoup</groupId> |
|
78 |
<artifactId>jsoup</artifactId> |
|
79 |
<version>${org.jsoup.version}</version> |
|
80 |
</dependency> |
|
81 |
|
|
82 |
<!-- Jackson libraries for parsing json files --> |
|
83 |
<dependency> |
|
84 |
<groupId>com.fasterxml.jackson.core</groupId> |
|
85 |
<artifactId>jackson-core</artifactId> |
|
86 |
<version>${com.fasterxml.jackson.core.version}</version> |
|
87 |
</dependency> |
|
88 |
|
|
89 |
<dependency> |
|
90 |
<groupId>com.fasterxml.jackson.core</groupId> |
|
91 |
<artifactId>jackson-annotations</artifactId> |
|
92 |
<version>${com.fasterxml.jackson.core.version}</version> |
|
93 |
</dependency> |
|
94 |
|
|
95 |
<dependency> |
|
96 |
<groupId>com.fasterxml.jackson.core</groupId> |
|
97 |
<artifactId>jackson-databind</artifactId> |
|
98 |
<version>${com.fasterxml.jackson.core.version}</version> |
|
99 |
</dependency> |
|
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 |
|
|
12 |
<groupId>cz.zcu.fav.kiv</groupId> |
|
13 |
<artifactId>anti-pattern-detection-app</artifactId> |
|
14 |
<version>1.2.0</version> |
|
15 |
<packaging>war</packaging> |
|
16 |
<name>anti-pattern-detection-app</name> |
|
17 |
<description>Basic web application for anti pattern detection</description> |
|
18 |
|
|
19 |
<properties> |
|
20 |
<java.version>11</java.version> |
|
21 |
<spring.boot.version>2.6.9</spring.boot.version> |
|
22 |
<org.reflections.version>0.10.2</org.reflections.version> |
|
23 |
<org.jsoup.version>1.15.2</org.jsoup.version> |
|
24 |
<com.fasterxml.jackson.core.version>2.13.3</com.fasterxml.jackson.core.version> |
|
25 |
<org.junit.jupiter.version>5.4.0</org.junit.jupiter.version> |
|
26 |
<org.apache.maven.plugins.version>3.0.0-M7</org.apache.maven.plugins.version> |
|
27 |
</properties> |
|
28 |
|
|
29 |
<dependencies> |
|
30 |
|
|
31 |
<dependency> |
|
32 |
<groupId>org.springframework.boot</groupId> |
|
33 |
<artifactId>spring-boot-starter</artifactId> |
|
34 |
</dependency> |
|
35 |
|
|
36 |
<dependency> |
|
37 |
<groupId>org.springframework.boot</groupId> |
|
38 |
<artifactId>spring-boot-starter-test</artifactId> |
|
39 |
<scope>test</scope> |
|
40 |
</dependency> |
|
41 |
|
|
42 |
<dependency> |
|
43 |
<groupId>org.springframework.boot</groupId> |
|
44 |
<artifactId>spring-boot-starter-web</artifactId> |
|
45 |
</dependency> |
|
46 |
|
|
47 |
<!-- <dependency>--> |
|
48 |
<!-- <groupId>org.springframework.boot</groupId>--> |
|
49 |
<!-- <artifactId>spring-boot-starter-security</artifactId>--> |
|
50 |
<!-- </dependency>--> |
|
51 |
|
|
52 |
<dependency> |
|
53 |
<groupId>mysql</groupId> |
|
54 |
<artifactId>mysql-connector-java</artifactId> |
|
55 |
<scope>runtime</scope> |
|
56 |
</dependency> |
|
57 |
|
|
58 |
<dependency> |
|
59 |
<groupId>org.springframework.boot</groupId> |
|
60 |
<artifactId>spring-boot-starter-data-jpa</artifactId> |
|
61 |
</dependency> |
|
62 |
|
|
63 |
<dependency> |
|
64 |
<groupId>org.springframework.boot</groupId> |
|
65 |
<artifactId>spring-boot-starter-thymeleaf</artifactId> |
|
66 |
</dependency> |
|
67 |
|
|
68 |
<dependency> |
|
69 |
<groupId>org.reflections</groupId> |
|
70 |
<artifactId>reflections</artifactId> |
|
71 |
<version>${org.reflections.version}</version> |
|
72 |
</dependency> |
|
73 |
|
|
74 |
<!-- jsoup HTML parser library @ https://jsoup.org/ --> |
|
75 |
<dependency> |
|
76 |
<groupId>org.jsoup</groupId> |
|
77 |
<artifactId>jsoup</artifactId> |
|
78 |
<version>${org.jsoup.version}</version> |
|
79 |
</dependency> |
|
80 |
|
|
81 |
<!-- Jackson libraries for parsing json files --> |
|
82 |
<dependency> |
|
83 |
<groupId>com.fasterxml.jackson.core</groupId> |
|
84 |
<artifactId>jackson-core</artifactId> |
|
85 |
<version>${com.fasterxml.jackson.core.version}</version> |
|
86 |
</dependency> |
|
87 |
|
|
88 |
<dependency> |
|
89 |
<groupId>com.fasterxml.jackson.core</groupId> |
|
90 |
<artifactId>jackson-annotations</artifactId> |
|
91 |
<version>${com.fasterxml.jackson.core.version}</version> |
|
92 |
</dependency> |
|
93 |
|
|
94 |
<dependency> |
|
95 |
<groupId>com.fasterxml.jackson.core</groupId> |
|
96 |
<artifactId>jackson-databind</artifactId> |
|
97 |
<version>${com.fasterxml.jackson.core.version}</version> |
|
98 |
</dependency> |
|
100 | 99 |
|
101 | 100 |
|
102 | 101 |
|
... | ... | |
109 | 108 |
<scope>test</scope> |
110 | 109 |
</dependency> |
111 | 110 |
|
112 |
<dependency>
|
|
113 |
<groupId>org.junit.jupiter</groupId>
|
|
114 |
<artifactId>junit-jupiter-engine</artifactId>
|
|
115 |
<version>${org.junit.jupiter.version}</version>
|
|
116 |
<scope>test</scope>
|
|
117 |
</dependency>
|
|
111 |
<dependency>
|
|
112 |
<groupId>org.junit.jupiter</groupId>
|
|
113 |
<artifactId>junit-jupiter-engine</artifactId>
|
|
114 |
<version>${org.junit.jupiter.version}</version>
|
|
115 |
<scope>test</scope>
|
|
116 |
</dependency>
|
|
118 | 117 |
|
119 | 118 |
|
120 |
<!-- UI TESTING -->
|
|
121 |
<dependency>
|
|
122 |
<groupId>org.seleniumhq.selenium</groupId>
|
|
123 |
<artifactId>selenium-java</artifactId>
|
|
124 |
<version>4.8.1</version> <!-- HIGHER VERSION 4+ are not compatible with webdrivermanager plugin -->
|
|
125 |
</dependency>
|
|
119 |
<!-- UI TESTING -->
|
|
120 |
<dependency>
|
|
121 |
<groupId>org.seleniumhq.selenium</groupId>
|
|
122 |
<artifactId>selenium-java</artifactId>
|
|
123 |
<version>3.141.59</version> <!-- HIGHER VERSION 4+ are not compatible with webdrivermanager plugin -->
|
|
124 |
</dependency>
|
|
126 | 125 |
|
127 | 126 |
<dependency> |
128 | 127 |
<groupId>io.github.bonigarcia</groupId> |
... | ... | |
130 | 129 |
<version>5.2.0</version> |
131 | 130 |
<scope>test</scope> |
132 | 131 |
</dependency> |
133 |
<!-- Spring TESTING --> |
|
132 |
|
|
134 | 133 |
<dependency> |
135 | 134 |
<groupId>org.springframework.security</groupId> |
136 | 135 |
<artifactId>spring-security-test</artifactId> |
137 | 136 |
<scope>test</scope> |
138 | 137 |
</dependency> |
139 |
<dependency> |
|
140 |
<groupId>io.github.bonigarcia</groupId> |
|
141 |
<artifactId>webdrivermanager</artifactId> |
|
142 |
<version>5.3.2</version> |
|
143 |
<scope>test</scope> |
|
144 |
</dependency> |
|
145 |
|
|
146 |
<dependency> |
|
147 |
<groupId>org.springframework.boot</groupId> |
|
148 |
<artifactId>spring-boot-starter-security</artifactId> |
|
149 |
<version>3.0.4</version> |
|
150 |
</dependency> |
|
151 |
<dependency> |
|
152 |
<groupId>org.springframework.security</groupId> |
|
153 |
<artifactId>spring-security-core</artifactId> |
|
154 |
<version>6.0.2</version> |
|
155 |
</dependency> |
|
156 |
|
|
157 |
</dependencies> |
|
158 |
|
|
159 |
<build> |
|
160 |
<pluginManagement> |
|
161 |
<plugins> |
|
162 |
|
|
163 |
<plugin> |
|
164 |
<groupId>org.springframework.boot</groupId> |
|
165 |
<artifactId>spring-boot-maven-plugin</artifactId> |
|
166 |
</plugin> |
|
167 |
|
|
168 |
<plugin> |
|
169 |
<groupId>org.apache.maven.plugins</groupId> |
|
170 |
<artifactId>maven-surefire-plugin</artifactId> |
|
171 |
<version>${org.apache.maven.plugins.version}</version> |
|
172 |
<configuration> |
|
173 |
<skipTests>false</skipTests> |
|
174 |
</configuration> |
|
175 |
</plugin> |
|
176 |
|
|
177 |
<plugin> |
|
178 |
<groupId>org.apache.maven.plugins</groupId> |
|
179 |
<artifactId>maven-failsafe-plugin</artifactId> |
|
180 |
<version>${org.apache.maven.plugins.version}</version> |
|
181 |
</plugin> |
|
182 |
|
|
183 |
</plugins> |
|
184 |
</pluginManagement> |
|
185 |
</build> |
|
138 |
|
|
139 |
</dependencies> |
|
140 |
|
|
141 |
<build> |
|
142 |
<plugins> |
|
143 |
|
|
144 |
<plugin> |
|
145 |
<groupId>org.springframework.boot</groupId> |
|
146 |
<artifactId>spring-boot-maven-plugin</artifactId> |
|
147 |
</plugin> |
|
148 |
|
|
149 |
<plugin> |
|
150 |
<groupId>org.apache.maven.plugins</groupId> |
|
151 |
<artifactId>maven-surefire-plugin</artifactId> |
|
152 |
<version>${org.apache.maven.plugins.version}</version> |
|
153 |
<configuration> |
|
154 |
<skipTests>false</skipTests> |
|
155 |
</configuration> |
|
156 |
</plugin> |
|
157 |
|
|
158 |
<plugin> |
|
159 |
<groupId>org.apache.maven.plugins</groupId> |
|
160 |
<artifactId>maven-failsafe-plugin</artifactId> |
|
161 |
<version>${org.apache.maven.plugins.version}</version> |
|
162 |
</plugin> |
|
163 |
|
|
164 |
</plugins> |
|
165 |
</build> |
|
186 | 166 |
|
187 | 167 |
</project> |
Také k dispozici: Unified diff
new: #10245 ReactJS routing, přihlašovací formulář
desc: zprovozněn registrační formulář uživatele včetně poupravení user modulu