Revize 2964b75c
Přidáno uživatelem Ondřej Váně před asi 4 roky(ů)
pom.xml | ||
---|---|---|
20 | 20 |
<dependencies> |
21 | 21 |
<dependency> |
22 | 22 |
<groupId>org.springframework.boot</groupId> |
23 |
<artifactId>spring-boot-starter-web</artifactId>
|
|
23 |
<artifactId>spring-boot-starter</artifactId> |
|
24 | 24 |
</dependency> |
25 | 25 |
|
26 | 26 |
<dependency> |
27 | 27 |
<groupId>org.springframework.boot</groupId> |
28 |
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
29 |
<scope>provided</scope>
|
|
28 |
<artifactId>spring-boot-starter-test</artifactId>
|
|
29 |
<scope>test</scope>
|
|
30 | 30 |
</dependency> |
31 | 31 |
<dependency> |
32 | 32 |
<groupId>org.springframework.boot</groupId> |
33 |
<artifactId>spring-boot-starter-test</artifactId> |
|
34 |
<scope>test</scope> |
|
33 |
<artifactId>spring-boot-starter-web</artifactId> |
|
34 |
</dependency> |
|
35 |
<dependency> |
|
36 |
<groupId>mysql</groupId> |
|
37 |
<artifactId>mysql-connector-java</artifactId> |
|
38 |
<scope>runtime</scope> |
|
39 |
</dependency> |
|
40 |
<dependency> |
|
41 |
<groupId>org.springframework.boot</groupId> |
|
42 |
<artifactId>spring-boot-starter-data-jpa</artifactId> |
|
43 |
</dependency> |
|
44 |
<dependency> |
|
45 |
<groupId>org.springframework.boot</groupId> |
|
46 |
<artifactId>spring-boot-starter-web</artifactId> |
|
47 |
</dependency> |
|
48 |
<dependency> |
|
49 |
<groupId>org.springframework.boot</groupId> |
|
50 |
<artifactId>spring-boot-starter-thymeleaf</artifactId> |
|
35 | 51 |
</dependency> |
36 | 52 |
</dependencies> |
37 | 53 |
|
... | ... | |
42 | 58 |
<artifactId>spring-boot-maven-plugin</artifactId> |
43 | 59 |
</plugin> |
44 | 60 |
</plugins> |
61 |
<resources> |
|
62 |
<resource> |
|
63 |
<directory>src/main/java/resources</directory> |
|
64 |
<includes> |
|
65 |
<include>queries/*.sql</include> |
|
66 |
</includes> |
|
67 |
</resource> |
|
68 |
</resources> |
|
45 | 69 |
</build> |
46 | 70 |
|
47 | 71 |
</project> |
Také k dispozici: Unified diff
Migration project from local storage to git