| [92e7c7a] | 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>4.0.0</version>
|
|---|
| 9 | <relativePath/>
|
|---|
| 10 | </parent>
|
|---|
| 11 | <groupId>com.petify</groupId>
|
|---|
| 12 | <artifactId>petify</artifactId>
|
|---|
| 13 | <version>0.0.1-SNAPSHOT</version>
|
|---|
| 14 | <name>petify</name>
|
|---|
| 15 | <description>petify</description>
|
|---|
| 16 | <url/>
|
|---|
| 17 | <licenses>
|
|---|
| 18 | <license/>
|
|---|
| 19 | </licenses>
|
|---|
| 20 | <developers>
|
|---|
| 21 | <developer/>
|
|---|
| 22 | </developers>
|
|---|
| 23 | <scm>
|
|---|
| 24 | <connection/>
|
|---|
| 25 | <developerConnection/>
|
|---|
| 26 | <tag/>
|
|---|
| 27 | <url/>
|
|---|
| 28 | </scm>
|
|---|
| 29 | <properties>
|
|---|
| 30 | <java.version>17</java.version>
|
|---|
| 31 | </properties>
|
|---|
| 32 | <dependencies>
|
|---|
| 33 | <dependency>
|
|---|
| 34 | <groupId>org.springframework.boot</groupId>
|
|---|
| 35 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
|---|
| 36 | </dependency>
|
|---|
| 37 | <dependency>
|
|---|
| 38 | <groupId>org.springframework.boot</groupId>
|
|---|
| 39 | <artifactId>spring-boot-starter-security</artifactId>
|
|---|
| 40 | </dependency>
|
|---|
| 41 | <dependency>
|
|---|
| 42 | <groupId>org.springframework.boot</groupId>
|
|---|
| 43 | <artifactId>spring-boot-starter-security-oauth2-client</artifactId>
|
|---|
| 44 | </dependency>
|
|---|
| 45 | <dependency>
|
|---|
| 46 | <groupId>org.springframework.boot</groupId>
|
|---|
| 47 | <artifactId>spring-boot-starter-webmvc</artifactId>
|
|---|
| 48 | </dependency>
|
|---|
| 49 |
|
|---|
| 50 | <dependency>
|
|---|
| 51 | <groupId>org.postgresql</groupId>
|
|---|
| 52 | <artifactId>postgresql</artifactId>
|
|---|
| 53 | <scope>runtime</scope>
|
|---|
| 54 | </dependency>
|
|---|
| 55 | <dependency>
|
|---|
| 56 | <groupId>org.flywaydb</groupId>
|
|---|
| 57 | <artifactId>flyway-core</artifactId>
|
|---|
| 58 | </dependency>
|
|---|
| 59 | <dependency>
|
|---|
| 60 | <groupId>org.flywaydb</groupId>
|
|---|
| 61 | <artifactId>flyway-database-postgresql</artifactId>
|
|---|
| 62 | </dependency>
|
|---|
| 63 | <dependency>
|
|---|
| 64 | <groupId>com.zaxxer</groupId>
|
|---|
| 65 | <artifactId>HikariCP</artifactId>
|
|---|
| 66 | </dependency>
|
|---|
| 67 | <dependency>
|
|---|
| 68 | <groupId>org.projectlombok</groupId>
|
|---|
| 69 | <artifactId>lombok</artifactId>
|
|---|
| 70 | <optional>true</optional>
|
|---|
| 71 | </dependency>
|
|---|
| 72 | <dependency>
|
|---|
| 73 | <groupId>org.springframework.boot</groupId>
|
|---|
| 74 | <artifactId>spring-boot-starter-data-jpa-test</artifactId>
|
|---|
| 75 | <scope>test</scope>
|
|---|
| 76 | </dependency>
|
|---|
| 77 | <dependency>
|
|---|
| 78 | <groupId>org.springframework.boot</groupId>
|
|---|
| 79 | <artifactId>spring-boot-starter-security-oauth2-client-test</artifactId>
|
|---|
| 80 | <scope>test</scope>
|
|---|
| 81 | </dependency>
|
|---|
| 82 | <dependency>
|
|---|
| 83 | <groupId>org.springframework.boot</groupId>
|
|---|
| 84 | <artifactId>spring-boot-starter-security-test</artifactId>
|
|---|
| 85 | <scope>test</scope>
|
|---|
| 86 | </dependency>
|
|---|
| 87 | <dependency>
|
|---|
| 88 | <groupId>org.springframework.boot</groupId>
|
|---|
| 89 | <artifactId>spring-boot-starter-webmvc-test</artifactId>
|
|---|
| 90 | <scope>test</scope>
|
|---|
| 91 | </dependency>
|
|---|
| 92 | <dependency>
|
|---|
| 93 | <groupId>org.springframework.boot</groupId>
|
|---|
| 94 | <artifactId>spring-boot-starter-actuator</artifactId>
|
|---|
| 95 | </dependency>
|
|---|
| 96 |
|
|---|
| 97 | </dependencies>
|
|---|
| 98 |
|
|---|
| 99 | <build>
|
|---|
| 100 | <plugins>
|
|---|
| 101 | <plugin>
|
|---|
| 102 | <groupId>org.apache.maven.plugins</groupId>
|
|---|
| 103 | <artifactId>maven-compiler-plugin</artifactId>
|
|---|
| 104 | <configuration>
|
|---|
| 105 | <annotationProcessorPaths>
|
|---|
| 106 | <path>
|
|---|
| 107 | <groupId>org.projectlombok</groupId>
|
|---|
| 108 | <artifactId>lombok</artifactId>
|
|---|
| 109 | </path>
|
|---|
| 110 | </annotationProcessorPaths>
|
|---|
| 111 | </configuration>
|
|---|
| 112 | </plugin>
|
|---|
| 113 | <plugin>
|
|---|
| 114 | <groupId>org.springframework.boot</groupId>
|
|---|
| 115 | <artifactId>spring-boot-maven-plugin</artifactId>
|
|---|
| 116 | <configuration>
|
|---|
| 117 | <excludes>
|
|---|
| 118 | <exclude>
|
|---|
| 119 | <groupId>org.projectlombok</groupId>
|
|---|
| 120 | <artifactId>lombok</artifactId>
|
|---|
| 121 | </exclude>
|
|---|
| 122 | </excludes>
|
|---|
| 123 | </configuration>
|
|---|
| 124 | </plugin>
|
|---|
| 125 | </plugins>
|
|---|
| 126 | </build>
|
|---|
| 127 |
|
|---|
| 128 | </project>
|
|---|