source: backend/pom.xml

Last change on this file was badbc79, checked in by Luka Cheshlarov <luka.cheshlarov@…>, 20 months ago

Initial commit

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