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.3.1</version>
|
---|
9 | <relativePath/>
|
---|
10 | </parent>
|
---|
11 | <groupId>it.project</groupId>
|
---|
12 | <artifactId>CookCraft</artifactId>
|
---|
13 | <version>0.0.1-SNAPSHOT</version>
|
---|
14 | <packaging>war</packaging>
|
---|
15 | <name>CookCraft</name>
|
---|
16 | <description>CookCraft</description>
|
---|
17 | <properties>
|
---|
18 | <java.version>17</java.version>
|
---|
19 | </properties>
|
---|
20 | <dependencies>
|
---|
21 | <dependency>
|
---|
22 | <groupId>org.springframework.boot</groupId>
|
---|
23 | <artifactId>spring-boot-starter-data-jdbc</artifactId>
|
---|
24 | </dependency>
|
---|
25 | <dependency>
|
---|
26 | <groupId>org.springframework.boot</groupId>
|
---|
27 | <artifactId>spring-boot-starter-security</artifactId>
|
---|
28 | </dependency>
|
---|
29 | <dependency>
|
---|
30 | <groupId>org.springframework.boot</groupId>
|
---|
31 | <artifactId>spring-boot-starter-web</artifactId>
|
---|
32 | </dependency>
|
---|
33 | <dependency>
|
---|
34 | <groupId>org.springframework.boot</groupId>
|
---|
35 | <artifactId>spring-boot-devtools</artifactId>
|
---|
36 | <scope>runtime</scope>
|
---|
37 | </dependency>
|
---|
38 | <dependency>
|
---|
39 | <groupId>org.postgresql</groupId>
|
---|
40 | <artifactId>postgresql</artifactId>
|
---|
41 | <scope>runtime</scope>
|
---|
42 | </dependency>
|
---|
43 | <dependency>
|
---|
44 | <groupId>org.springframework.boot</groupId>
|
---|
45 | <artifactId>spring-boot-starter-tomcat</artifactId>
|
---|
46 | <scope>provided</scope>
|
---|
47 | </dependency>
|
---|
48 | <dependency>
|
---|
49 | <groupId>org.springframework.boot</groupId>
|
---|
50 | <artifactId>spring-boot-starter-test</artifactId>
|
---|
51 | <scope>test</scope>
|
---|
52 | </dependency>
|
---|
53 | <dependency>
|
---|
54 | <groupId>org.projectlombok</groupId>
|
---|
55 | <artifactId>lombok</artifactId>
|
---|
56 | <scope>provided</scope>
|
---|
57 | </dependency>
|
---|
58 | <dependency>
|
---|
59 | <groupId>org.springframework.security</groupId>
|
---|
60 | <artifactId>spring-security-test</artifactId>
|
---|
61 | <scope>test</scope>
|
---|
62 | </dependency>
|
---|
63 | <dependency>
|
---|
64 | <groupId>org.springframework.boot</groupId>
|
---|
65 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
---|
66 | </dependency>
|
---|
67 | <dependency>
|
---|
68 | <groupId>io.jsonwebtoken</groupId>
|
---|
69 | <artifactId>jjwt-api</artifactId>
|
---|
70 | <version>0.11.5</version>
|
---|
71 | </dependency>
|
---|
72 | <dependency>
|
---|
73 | <groupId>io.jsonwebtoken</groupId>
|
---|
74 | <artifactId>jjwt-impl</artifactId>
|
---|
75 | <version>0.11.5</version>
|
---|
76 | </dependency>
|
---|
77 | <dependency>
|
---|
78 | <groupId>io.jsonwebtoken</groupId>
|
---|
79 | <artifactId>jjwt-jackson</artifactId>
|
---|
80 | <version>0.11.5</version>
|
---|
81 | </dependency>
|
---|
82 | <dependency>
|
---|
83 | <groupId>com.sendgrid</groupId>
|
---|
84 | <artifactId>sendgrid-java</artifactId>
|
---|
85 | </dependency>
|
---|
86 | <dependency>
|
---|
87 | <groupId>io.github.cdimascio</groupId>
|
---|
88 | <artifactId>dotenv-java</artifactId>
|
---|
89 | <version>2.2.0</version>
|
---|
90 | </dependency>
|
---|
91 | <dependency>
|
---|
92 | <groupId>org.springframework.boot</groupId>
|
---|
93 | <artifactId>spring-boot-starter-oauth2-client</artifactId>
|
---|
94 | </dependency>
|
---|
95 | </dependencies>
|
---|
96 |
|
---|
97 | <build>
|
---|
98 | <plugins>
|
---|
99 | <plugin>
|
---|
100 | <groupId>org.springframework.boot</groupId>
|
---|
101 | <artifactId>spring-boot-maven-plugin</artifactId>
|
---|
102 | </plugin>
|
---|
103 | </plugins>
|
---|
104 | </build>
|
---|
105 | </project> |
---|