[1bcb2a8] | 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>
|
---|
[2269653] | 8 | <version>2.7.4</version>
|
---|
[1bcb2a8] | 9 | <relativePath/> <!-- lookup parent from repository -->
|
---|
| 10 | </parent>
|
---|
| 11 | <groupId>com.example</groupId>
|
---|
| 12 | <artifactId>MovieZone</artifactId>
|
---|
| 13 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 14 | <name>MovieZone</name>
|
---|
| 15 | <description>MovieZone</description>
|
---|
| 16 | <properties>
|
---|
[2269653] | 17 | <java.version>17.0.5</java.version>
|
---|
| 18 | <spring-security.version>5.6.1</spring-security.version>
|
---|
[1bcb2a8] | 19 | </properties>
|
---|
[eb226b2] | 20 | <dependencies>
|
---|
| 21 | <dependency>
|
---|
| 22 | <groupId>org.springframework.boot</groupId>
|
---|
| 23 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
---|
| 24 | </dependency>
|
---|
[2269653] | 25 | <dependency>
|
---|
| 26 | <groupId>org.thymeleaf.extras</groupId>
|
---|
| 27 | <artifactId>thymeleaf-extras-springsecurity5</artifactId>
|
---|
| 28 | </dependency>
|
---|
[1bcb2a8] | 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>
|
---|
[eb226b2] | 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>
|
---|
[2269653] | 43 |
|
---|
[1bcb2a8] | 44 |
|
---|
| 45 | <dependency>
|
---|
| 46 | <groupId>org.postgresql</groupId>
|
---|
| 47 | <artifactId>postgresql</artifactId>
|
---|
| 48 | <scope>runtime</scope>
|
---|
| 49 | </dependency>
|
---|
| 50 | <dependency>
|
---|
| 51 | <groupId>org.projectlombok</groupId>
|
---|
| 52 | <artifactId>lombok</artifactId>
|
---|
[eb226b2] | 53 | <version>1.18.24</version>
|
---|
| 54 | <scope>provided</scope>
|
---|
[1bcb2a8] | 55 | <optional>true</optional>
|
---|
| 56 | </dependency>
|
---|
| 57 | <dependency>
|
---|
| 58 | <groupId>org.springframework.boot</groupId>
|
---|
| 59 | <artifactId>spring-boot-starter-test</artifactId>
|
---|
| 60 | <scope>test</scope>
|
---|
| 61 | </dependency>
|
---|
[2463d33] | 62 | <dependency>
|
---|
| 63 | <groupId>org.springframework.boot</groupId>
|
---|
[eb226b2] | 64 | <artifactId>spring-boot-starter-security</artifactId>
|
---|
[ac25203] | 65 | </dependency>
|
---|
[1bcb2a8] | 66 | </dependencies>
|
---|
| 67 |
|
---|
[eb226b2] | 68 |
|
---|
[1bcb2a8] | 69 | <build>
|
---|
| 70 | <plugins>
|
---|
| 71 | <plugin>
|
---|
| 72 | <groupId>org.springframework.boot</groupId>
|
---|
| 73 | <artifactId>spring-boot-maven-plugin</artifactId>
|
---|
| 74 | <configuration>
|
---|
| 75 | <excludes>
|
---|
| 76 | <exclude>
|
---|
| 77 | <groupId>org.projectlombok</groupId>
|
---|
| 78 | <artifactId>lombok</artifactId>
|
---|
| 79 | </exclude>
|
---|
| 80 | </excludes>
|
---|
| 81 | </configuration>
|
---|
| 82 | </plugin>
|
---|
[2463d33] | 83 | <plugin>
|
---|
| 84 | <groupId>com.google.cloud.tools</groupId>
|
---|
| 85 | <artifactId>appengine-maven-plugin</artifactId>
|
---|
| 86 | <version>2.2.0</version>
|
---|
| 87 | <configuration>
|
---|
| 88 | <version>1</version>
|
---|
| 89 | <projectId>GCLOUD_CONFIG</projectId>
|
---|
| 90 | </configuration>
|
---|
| 91 | </plugin>
|
---|
[1bcb2a8] | 92 | </plugins>
|
---|
| 93 | </build>
|
---|
| 94 |
|
---|
[eb226b2] | 95 | </project> |
---|