source: pom.xml

Last change on this file was e5fefbd, checked in by Anita Terziska <63020646+Nit4e@…>, 22 months ago

initial commit

  • Property mode set to 100644
File size: 3.3 KB
Line 
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.6.2</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>com.example</groupId>
12 <artifactId>medweb</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>medweb</name>
15 <description>medweb</description>
16 <properties>
17 <java.version>11</java.version>
18
19 <spring-security.version>5.3.4.RELEASE</spring-security.version>
20 <spring.version>5.2.8.RELEASE</spring.version>
21
22 </properties>
23 <dependencies>
24 <dependency>
25 <groupId>org.springframework.boot</groupId>
26 <artifactId>spring-boot-starter-thymeleaf</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>org.springframework.boot</groupId>
30 <artifactId>spring-boot-starter-web</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.springframework.boot</groupId>
34 <artifactId>spring-boot-starter-data-jpa</artifactId>
35 </dependency>
36
37 <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
38 <dependency>
39 <groupId>org.postgresql</groupId>
40 <artifactId>postgresql</artifactId>
41 <version>42.3.1</version>
42 </dependency>
43
44<!-- <dependency>-->
45<!-- <groupId>org.springframework.security</groupId>-->
46<!-- <artifactId>spring-security-core</artifactId>-->
47<!-- <version>${spring-security.version}</version>-->
48<!-- </dependency>-->
49
50 <dependency>
51 <groupId>org.springframework.boot</groupId>
52 <artifactId>spring-boot-starter-security</artifactId>
53 </dependency>
54 <dependency>
55 <groupId>org.thymeleaf.extras</groupId>
56 <artifactId>thymeleaf-extras-springsecurity5</artifactId>
57 </dependency>
58
59 <dependency>
60 <groupId>org.projectlombok</groupId>
61 <artifactId>lombok</artifactId>
62 <optional>true</optional>
63 </dependency>
64 <dependency>
65 <groupId>org.springframework.boot</groupId>
66 <artifactId>spring-boot-starter-test</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.springframework.boot</groupId>
71 <artifactId>spring-boot-starter-data-jpa</artifactId>
72 </dependency>
73 </dependencies>
74
75 <build>
76 <plugins>
77 <plugin>
78 <groupId>org.springframework.boot</groupId>
79 <artifactId>spring-boot-maven-plugin</artifactId>
80 <configuration>
81 <excludes>
82 <exclude>
83 <groupId>org.projectlombok</groupId>
84 <artifactId>lombok</artifactId>
85 </exclude>
86 </excludes>
87 </configuration>
88 </plugin>
89 </plugins>
90 </build>
91
92</project>
Note: See TracBrowser for help on using the repository browser.