[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>
|
---|
| 8 | <version>3.0.2</version>
|
---|
| 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>
|
---|
| 17 | <java.version>17</java.version>
|
---|
| 18 | </properties>
|
---|
| 19 | <dependencies>
|
---|
[2463d33] | 20 |
|
---|
[1bcb2a8] | 21 | <dependency>
|
---|
| 22 | <groupId>org.springframework.boot</groupId>
|
---|
| 23 | <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
---|
| 24 | </dependency>
|
---|
| 25 | <dependency>
|
---|
| 26 | <groupId>org.springframework.boot</groupId>
|
---|
| 27 | <artifactId>spring-boot-starter-web</artifactId>
|
---|
| 28 | </dependency>
|
---|
| 29 |
|
---|
| 30 | <dependency>
|
---|
| 31 | <groupId>org.postgresql</groupId>
|
---|
| 32 | <artifactId>postgresql</artifactId>
|
---|
| 33 | <scope>runtime</scope>
|
---|
| 34 | </dependency>
|
---|
| 35 | <dependency>
|
---|
| 36 | <groupId>org.projectlombok</groupId>
|
---|
| 37 | <artifactId>lombok</artifactId>
|
---|
| 38 | <optional>true</optional>
|
---|
| 39 | </dependency>
|
---|
| 40 | <dependency>
|
---|
| 41 | <groupId>org.springframework.boot</groupId>
|
---|
| 42 | <artifactId>spring-boot-starter-test</artifactId>
|
---|
| 43 | <scope>test</scope>
|
---|
| 44 | </dependency>
|
---|
[2463d33] | 45 | <dependency>
|
---|
| 46 | <groupId>org.springframework.boot</groupId>
|
---|
| 47 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
---|
| 48 | </dependency>
|
---|
[1bcb2a8] | 49 | </dependencies>
|
---|
| 50 |
|
---|
| 51 | <build>
|
---|
| 52 | <plugins>
|
---|
| 53 | <plugin>
|
---|
| 54 | <groupId>org.springframework.boot</groupId>
|
---|
| 55 | <artifactId>spring-boot-maven-plugin</artifactId>
|
---|
| 56 | <configuration>
|
---|
| 57 | <excludes>
|
---|
| 58 | <exclude>
|
---|
| 59 | <groupId>org.projectlombok</groupId>
|
---|
| 60 | <artifactId>lombok</artifactId>
|
---|
| 61 | </exclude>
|
---|
| 62 | </excludes>
|
---|
| 63 | </configuration>
|
---|
| 64 | </plugin>
|
---|
[2463d33] | 65 | <plugin>
|
---|
| 66 | <groupId>com.google.cloud.tools</groupId>
|
---|
| 67 | <artifactId>appengine-maven-plugin</artifactId>
|
---|
| 68 | <version>2.2.0</version>
|
---|
| 69 | <configuration>
|
---|
| 70 | <version>1</version>
|
---|
| 71 | <projectId>GCLOUD_CONFIG</projectId>
|
---|
| 72 | </configuration>
|
---|
| 73 | </plugin>
|
---|
[1bcb2a8] | 74 | </plugins>
|
---|
| 75 | </build>
|
---|
| 76 |
|
---|
| 77 | </project>
|
---|