source: pom.xml@ f02aea4

Last change on this file since f02aea4 was 0e4d807, checked in by Ivona <ivonatapshanovska@…>, 10 months ago

Initial commit

  • Property mode set to 100644
File size: 4.4 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.7.4</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>com.example</groupId>
12 <artifactId>baziProekt</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>baziProekt</name>
15 <description>baziProekt</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-data-jdbc</artifactId>
23 </dependency>
24 <dependency>
25 <groupId>org.springframework.boot</groupId>
26 <artifactId>spring-boot-starter-security</artifactId>
27
28 </dependency>
29 <dependency>
30 <groupId>org.springframework.boot</groupId>
31 <artifactId>spring-boot-starter-thymeleaf</artifactId>
32 </dependency>
33 <dependency>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-starter-web</artifactId>
36
37 </dependency>
38 <dependency>
39 <groupId>org.thymeleaf.extras</groupId>
40 <artifactId>thymeleaf-extras-springsecurity5</artifactId>
41 </dependency>
42
43 <dependency>
44 <groupId>org.springframework.boot</groupId>
45 <artifactId>spring-boot-devtools</artifactId>
46 <scope>runtime</scope>
47 <optional>true</optional>
48 </dependency>
49
50 <dependency>
51 <groupId>org.postgresql</groupId>
52 <artifactId>postgresql</artifactId>
53 <scope>runtime</scope>
54 </dependency>
55 <dependency>
56 <groupId>javax.servlet</groupId>
57 <artifactId>javax.servlet-api</artifactId>
58 <version>4.0.1</version>
59 <scope>provided</scope>
60 </dependency>
61 <dependency>
62 <groupId>org.projectlombok</groupId>
63 <artifactId>lombok</artifactId>
64 <scope>provided</scope>
65 <optional>true</optional>
66 </dependency>
67 <dependency>
68 <groupId>org.springframework.boot</groupId>
69 <artifactId>spring-boot-starter-test</artifactId>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.springframework.security</groupId>
74 <artifactId>spring-security-test</artifactId>
75 <scope>test</scope>
76 </dependency>
77
78 <dependency>
79 <groupId>org.springframework.boot</groupId>
80 <artifactId>spring-boot-starter-data-jpa</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>junit</groupId>
84 <artifactId>junit</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.jetbrains</groupId>
88 <artifactId>annotations</artifactId>
89 <version>RELEASE</version>
90 <scope>compile</scope>
91 </dependency>
92 <dependency>
93 <groupId>org.springframework.security</groupId>
94 <artifactId>spring-security-config</artifactId>
95 <version>5.6.1</version>
96 </dependency>
97
98 </dependencies>
99
100 <build>
101 <plugins>
102 <plugin>
103 <groupId>org.springframework.boot</groupId>
104 <artifactId>spring-boot-maven-plugin</artifactId>
105 <configuration>
106 <excludes>
107 <exclude>
108 <groupId>org.projectlombok</groupId>
109 <artifactId>lombok</artifactId>
110 </exclude>
111 </excludes>
112 </configuration>
113 </plugin>
114 <plugin>
115 <groupId>com.google.cloud.tools</groupId>
116 <artifactId>appengine-maven-plugin</artifactId>
117 <version>2.2.0</version>
118 <configuration>
119 <version>1</version>
120 <projectId>GCLOUD_CONFIG</projectId>
121 </configuration>
122 </plugin>
123 </plugins>
124 </build>
125
126</project>
Note: See TracBrowser for help on using the repository browser.