[de70cd4] | 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>
|
---|
[a51a591] | 8 | <version>2.7.4</version>
|
---|
[de70cd4] | 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>
|
---|
[a51a591] | 17 | <java.version>17.0.5</java.version>
|
---|
| 18 | <!-- <spring-security.version>5.6.1</spring-security.version>-->
|
---|
[de70cd4] | 19 | </properties>
|
---|
| 20 | <dependencies>
|
---|
| 21 | <dependency>
|
---|
| 22 | <groupId>org.springframework.boot</groupId>
|
---|
| 23 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
---|
| 24 | </dependency>
|
---|
| 25 | <dependency>
|
---|
[a51a591] | 26 | <groupId>org.thymeleaf.extras</groupId>
|
---|
| 27 | <artifactId>thymeleaf-extras-springsecurity5</artifactId>
|
---|
[de70cd4] | 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>
|
---|
[a51a591] | 38 | <groupId>javax.servlet</groupId>
|
---|
| 39 | <artifactId>javax.servlet-api</artifactId>
|
---|
| 40 | <version>4.0.1</version>
|
---|
| 41 | <scope>provided</scope>
|
---|
[de70cd4] | 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>
|
---|
[a51a591] | 51 | <version>1.18.24</version>
|
---|
| 52 | <scope>provided</scope>
|
---|
[de70cd4] | 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>
|
---|
[a51a591] | 60 | <!-- <dependency>-->
|
---|
| 61 | <!-- <groupId>org.springframework.boot</groupId>-->
|
---|
| 62 | <!-- <artifactId>spring-boot-starter-security</artifactId>-->
|
---|
| 63 | <!-- </dependency>-->
|
---|
[de70cd4] | 64 | </dependencies>
|
---|
| 65 |
|
---|
[a51a591] | 66 |
|
---|
[de70cd4] | 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>
|
---|
[a51a591] | 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>
|
---|
[de70cd4] | 90 | </plugins>
|
---|
| 91 | </build>
|
---|
| 92 |
|
---|
| 93 | </project>
|
---|