Added a layout based on Bootstrap-4.x with the help of webjars
[demos/testing] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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.3.4.RELEASE</version>
9                 <relativePath/> <!-- lookup parent from repository -->
10         </parent>
11         <groupId>de.juplo.demo</groupId>
12         <artifactId>exception-handling</artifactId>
13         <version>0.0.1-SNAPSHOT</version>
14         <name>Testing Exception-Handling</name>
15         <description>Example-project, that showcases, how to test exception-handling in the springframework</description>
16
17         <properties>
18                 <java.version>11</java.version>
19                 <bootstrap.version>4.5.2</bootstrap.version>
20         </properties>
21
22         <dependencies>
23                 <dependency>
24                         <groupId>org.springframework.boot</groupId>
25                         <artifactId>spring-boot-starter-thymeleaf</artifactId>
26                 </dependency>
27                 <dependency>
28                         <groupId>org.springframework.boot</groupId>
29                         <artifactId>spring-boot-starter-web</artifactId>
30                 </dependency>
31                 <dependency>
32                         <groupId>org.springframework.boot</groupId>
33                         <artifactId>spring-boot-devtools</artifactId>
34                         <optional>true</optional>
35                 </dependency>
36                 <dependency>
37                         <groupId>org.webjars</groupId>
38                         <artifactId>bootstrap</artifactId>
39                         <version>${bootstrap.version}</version>
40                         <scope>runtime</scope>
41                 </dependency>
42
43                 <dependency>
44                         <groupId>org.springframework.boot</groupId>
45                         <artifactId>spring-boot-starter-test</artifactId>
46                         <scope>test</scope>
47                         <exclusions>
48                                 <exclusion>
49                                         <groupId>org.junit.vintage</groupId>
50                                         <artifactId>junit-vintage-engine</artifactId>
51                                 </exclusion>
52                         </exclusions>
53                 </dependency>
54                 <dependency>
55                         <groupId>org.jsoup</groupId>
56                         <artifactId>jsoup</artifactId>
57                         <version>1.13.1</version>
58                         <scope>test</scope>
59                 </dependency>
60                 <dependency>
61                         <groupId>org.springframework.boot</groupId>
62                         <artifactId>spring-boot-starter-webflux</artifactId>
63                         <scope>test</scope>
64                 </dependency>
65         </dependencies>
66
67         <build>
68                 <plugins>
69                         <plugin>
70                                 <groupId>org.springframework.boot</groupId>
71                                 <artifactId>spring-boot-maven-plugin</artifactId>
72                         </plugin>
73                         <plugin>
74                                 <groupId>org.apache.maven.plugins</groupId>
75                                 <artifactId>maven-failsafe-plugin</artifactId>
76                         </plugin>
77                 </plugins>
78         </build>
79
80 </project>