[fdfbdde] | 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.2.2</version>
|
---|
| 9 | <relativePath/> <!-- lookup parent from repository -->
|
---|
| 10 | </parent>
|
---|
| 11 | <groupId>com.example</groupId>
|
---|
| 12 | <artifactId>task</artifactId>
|
---|
| 13 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 14 | <name>task</name>
|
---|
| 15 | <description>task</description>
|
---|
| 16 | <properties>
|
---|
| 17 | <java.version>17</java.version>
|
---|
| 18 | </properties>
|
---|
| 19 | <dependencies>
|
---|
| 20 | <dependency>
|
---|
| 21 | <groupId>org.springframework.boot</groupId>
|
---|
| 22 | <artifactId>spring-boot-starter-data-jdbc</artifactId>
|
---|
| 23 | </dependency>
|
---|
| 24 | <dependency>
|
---|
| 25 | <groupId>org.springframework.boot</groupId>
|
---|
| 26 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
---|
| 27 | </dependency>
|
---|
| 28 | <dependency>
|
---|
| 29 | <groupId>org.springframework.boot</groupId>
|
---|
| 30 | <artifactId>spring-boot-starter-security</artifactId>
|
---|
| 31 | </dependency>
|
---|
| 32 | <dependency>
|
---|
| 33 | <groupId>org.springframework.boot</groupId>
|
---|
| 34 | <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
---|
| 35 | </dependency>
|
---|
| 36 | <dependency>
|
---|
| 37 | <groupId>org.springframework.boot</groupId>
|
---|
| 38 | <artifactId>spring-boot-starter-web</artifactId>
|
---|
| 39 | </dependency>
|
---|
| 40 | <dependency>
|
---|
| 41 | <groupId>org.thymeleaf.extras</groupId>
|
---|
| 42 | <artifactId>thymeleaf-extras-springsecurity6</artifactId>
|
---|
| 43 | </dependency>
|
---|
| 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>
|
---|
| 53 | <optional>true</optional>
|
---|
| 54 | </dependency>
|
---|
| 55 | <dependency>
|
---|
| 56 | <groupId>org.springframework.boot</groupId>
|
---|
| 57 | <artifactId>spring-boot-devtools</artifactId>
|
---|
| 58 | <scope>runtime</scope>
|
---|
| 59 | <optional>true</optional>
|
---|
| 60 | </dependency>
|
---|
| 61 | <dependency>
|
---|
| 62 | <groupId>org.springframework.boot</groupId>
|
---|
| 63 | <artifactId>spring-boot-starter-test</artifactId>
|
---|
| 64 | <scope>test</scope>
|
---|
| 65 | </dependency>
|
---|
| 66 | <dependency>
|
---|
| 67 | <groupId>org.springframework.security</groupId>
|
---|
| 68 | <artifactId>spring-security-test</artifactId>
|
---|
| 69 | <scope>test</scope>
|
---|
| 70 | </dependency>
|
---|
| 71 | <dependency>
|
---|
| 72 | <groupId>org.hibernate</groupId>
|
---|
| 73 | <artifactId>hibernate-core</artifactId>
|
---|
| 74 | <version>6.2.1.Final</version>
|
---|
| 75 | </dependency>
|
---|
| 76 | </dependencies>
|
---|
| 77 |
|
---|
| 78 | <build>
|
---|
| 79 | <plugins>
|
---|
| 80 | <plugin>
|
---|
| 81 | <groupId>org.springframework.boot</groupId>
|
---|
| 82 | <artifactId>spring-boot-maven-plugin</artifactId>
|
---|
| 83 | <configuration>
|
---|
| 84 | <excludes>
|
---|
| 85 | <exclude>
|
---|
| 86 | <groupId>org.projectlombok</groupId>
|
---|
| 87 | <artifactId>lombok</artifactId>
|
---|
| 88 | </exclude>
|
---|
| 89 | </excludes>
|
---|
| 90 | </configuration>
|
---|
| 91 | </plugin>
|
---|
| 92 | </plugins>
|
---|
| 93 | </build>
|
---|
| 94 |
|
---|
| 95 | </project>
|
---|