source: pom.xml

Last change on this file was a51a591, checked in by colovik <j.colovik@…>, 14 months ago

final

  • Property mode set to 100644
File size: 3.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>Eventrra</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>Eventrra</name>
15 <description>Eventrra</description>
16 <properties>
17 <java.version>17.0.5</java.version>
18<!-- <spring-security.version>5.6.1</spring-security.version>-->
19 </properties>
20 <dependencies>
21 <dependency>
22 <groupId>org.springframework.boot</groupId>
23 <artifactId>spring-boot-starter-data-jpa</artifactId>
24 </dependency>
25 <dependency>
26 <groupId>org.thymeleaf.extras</groupId>
27 <artifactId>thymeleaf-extras-springsecurity5</artifactId>
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 </dependency>
37 <dependency>
38 <groupId>javax.servlet</groupId>
39 <artifactId>javax.servlet-api</artifactId>
40 <version>4.0.1</version>
41 <scope>provided</scope>
42 </dependency>
43 <dependency>
44 <groupId>org.postgresql</groupId>
45 <artifactId>postgresql</artifactId>
46 <scope>runtime</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.projectlombok</groupId>
50 <artifactId>lombok</artifactId>
51 <version>1.18.24</version>
52 <scope>provided</scope>
53 <optional>true</optional>
54 </dependency>
55 <dependency>
56 <groupId>org.springframework.boot</groupId>
57 <artifactId>spring-boot-starter-test</artifactId>
58 <scope>test</scope>
59 </dependency>
60<!-- <dependency>-->
61<!-- <groupId>org.springframework.boot</groupId>-->
62<!-- <artifactId>spring-boot-starter-security</artifactId>-->
63<!-- </dependency>-->
64 </dependencies>
65
66
67 <build>
68 <plugins>
69 <plugin>
70 <groupId>org.springframework.boot</groupId>
71 <artifactId>spring-boot-maven-plugin</artifactId>
72 <configuration>
73 <excludes>
74 <exclude>
75 <groupId>org.projectlombok</groupId>
76 <artifactId>lombok</artifactId>
77 </exclude>
78 </excludes>
79 </configuration>
80 </plugin>
81 <plugin>
82 <groupId>com.google.cloud.tools</groupId>
83 <artifactId>appengine-maven-plugin</artifactId>
84 <version>2.2.0</version>
85 <configuration>
86 <version>1</version>
87 <projectId>GCLOUD_CONFIG</projectId>
88 </configuration>
89 </plugin>
90 </plugins>
91 </build>
92
93</project>
Note: See TracBrowser for help on using the repository browser.