source: petify-backend/pom.xml@ ae83647

Last change on this file since ae83647 was ae83647, checked in by veronika-ils <ilioskaveronika@…>, 2 days ago

add functionality so that users can change passwords

  • Property mode set to 100644
File size: 4.5 KB
RevLine 
[92e7c7a]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>4.0.0</version>
9 <relativePath/>
10 </parent>
11 <groupId>com.petify</groupId>
12 <artifactId>petify</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>petify</name>
15 <description>petify</description>
16 <url/>
17 <licenses>
18 <license/>
19 </licenses>
20 <developers>
21 <developer/>
22 </developers>
23 <scm>
24 <connection/>
25 <developerConnection/>
26 <tag/>
27 <url/>
28 </scm>
29 <properties>
30 <java.version>17</java.version>
31 </properties>
32 <dependencies>
33 <dependency>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-starter-data-jpa</artifactId>
36 </dependency>
37 <dependency>
38 <groupId>org.springframework.boot</groupId>
39 <artifactId>spring-boot-starter-security</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>org.springframework.boot</groupId>
43 <artifactId>spring-boot-starter-security-oauth2-client</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.springframework.boot</groupId>
47 <artifactId>spring-boot-starter-webmvc</artifactId>
48 </dependency>
[ae83647]49 <dependency>
50 <groupId>org.springframework.boot</groupId>
51 <artifactId>spring-boot-starter-mail</artifactId>
52 </dependency>
[92e7c7a]53
54 <dependency>
55 <groupId>org.postgresql</groupId>
56 <artifactId>postgresql</artifactId>
57 <scope>runtime</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.flywaydb</groupId>
61 <artifactId>flyway-core</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.flywaydb</groupId>
65 <artifactId>flyway-database-postgresql</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>com.zaxxer</groupId>
69 <artifactId>HikariCP</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>org.projectlombok</groupId>
73 <artifactId>lombok</artifactId>
74 <optional>true</optional>
75 </dependency>
76 <dependency>
77 <groupId>org.springframework.boot</groupId>
78 <artifactId>spring-boot-starter-data-jpa-test</artifactId>
79 <scope>test</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.springframework.boot</groupId>
83 <artifactId>spring-boot-starter-security-oauth2-client-test</artifactId>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.springframework.boot</groupId>
88 <artifactId>spring-boot-starter-security-test</artifactId>
89 <scope>test</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.springframework.boot</groupId>
93 <artifactId>spring-boot-starter-webmvc-test</artifactId>
94 <scope>test</scope>
95 </dependency>
96 <dependency>
97 <groupId>org.springframework.boot</groupId>
98 <artifactId>spring-boot-starter-actuator</artifactId>
99 </dependency>
100
101 </dependencies>
102
103 <build>
104 <plugins>
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-compiler-plugin</artifactId>
108 <configuration>
109 <annotationProcessorPaths>
110 <path>
111 <groupId>org.projectlombok</groupId>
112 <artifactId>lombok</artifactId>
113 </path>
114 </annotationProcessorPaths>
115 </configuration>
116 </plugin>
117 <plugin>
118 <groupId>org.springframework.boot</groupId>
119 <artifactId>spring-boot-maven-plugin</artifactId>
120 <configuration>
121 <excludes>
122 <exclude>
123 <groupId>org.projectlombok</groupId>
124 <artifactId>lombok</artifactId>
125 </exclude>
126 </excludes>
127 </configuration>
128 </plugin>
129 </plugins>
130 </build>
131
132</project>
Note: See TracBrowser for help on using the repository browser.