source: pom.xml@ ac25203

Last change on this file since ac25203 was ac25203, checked in by DenicaKj <dkorvezir@…>, 22 months ago

Spring Security

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