[d24f17c] | 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.rezevirajmasa</groupId>
|
---|
| 12 | <artifactId>demo</artifactId>
|
---|
| 13 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 14 | <name>demo</name>
|
---|
| 15 | <description>Demo project for Spring Boot</description>
|
---|
| 16 | <properties>
|
---|
| 17 | <java.version>21</java.version>
|
---|
| 18 | </properties>
|
---|
| 19 | <dependencies>
|
---|
| 20 | <dependency>
|
---|
| 21 | <groupId>org.springframework.boot</groupId>
|
---|
| 22 | <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
---|
| 23 | </dependency>
|
---|
| 24 | <dependency>
|
---|
| 25 | <groupId>org.springframework.boot</groupId>
|
---|
| 26 | <artifactId>spring-boot-starter-web</artifactId>
|
---|
| 27 | </dependency>
|
---|
| 28 | <dependency>
|
---|
| 29 | <groupId>org.springframework.boot</groupId>
|
---|
| 30 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
---|
| 31 | </dependency>
|
---|
| 32 | <dependency>
|
---|
| 33 | <groupId>org.projectlombok</groupId>
|
---|
| 34 | <artifactId>lombok</artifactId>
|
---|
| 35 | <optional>true</optional>
|
---|
| 36 | </dependency>
|
---|
| 37 | <dependency>
|
---|
| 38 | <groupId>com.h2database</groupId>
|
---|
| 39 | <artifactId>h2</artifactId>
|
---|
| 40 | </dependency>
|
---|
| 41 | <dependency>
|
---|
| 42 | <groupId>org.postgresql</groupId>
|
---|
| 43 | <artifactId>postgresql</artifactId>
|
---|
| 44 | </dependency>
|
---|
| 45 | <dependency>
|
---|
| 46 | <groupId>org.springframework.boot</groupId>
|
---|
| 47 | <artifactId>spring-boot-starter-security</artifactId>
|
---|
| 48 | </dependency>
|
---|
| 49 | <dependency>
|
---|
| 50 | <groupId>io.jsonwebtoken</groupId>
|
---|
| 51 | <artifactId>jjwt</artifactId>
|
---|
| 52 | <version>0.9.1</version> <!-- Use the latest version available -->
|
---|
| 53 | </dependency>
|
---|
| 54 | <dependency>
|
---|
| 55 | <groupId>org.thymeleaf.extras</groupId>
|
---|
| 56 | <artifactId>thymeleaf-extras-springsecurity6</artifactId>
|
---|
| 57 | <version>3.1.1.RELEASE</version>
|
---|
| 58 | </dependency>
|
---|
| 59 | <dependency>
|
---|
| 60 | <groupId>org.springframework.security</groupId>
|
---|
| 61 | <artifactId>spring-security-test</artifactId>
|
---|
| 62 | <scope>test</scope>
|
---|
| 63 | </dependency>
|
---|
| 64 | <dependency>
|
---|
| 65 | <groupId>org.springframework.boot</groupId>
|
---|
| 66 | <artifactId>spring-boot-starter-test</artifactId>
|
---|
| 67 | <version>3.2.1</version>
|
---|
| 68 | <scope>test</scope>
|
---|
| 69 | </dependency>
|
---|
| 70 | <dependency>
|
---|
| 71 | <groupId>junit</groupId>
|
---|
| 72 | <artifactId>junit</artifactId>
|
---|
| 73 | <version>4.13.2</version>
|
---|
| 74 | </dependency>
|
---|
| 75 | <dependency>
|
---|
| 76 | <groupId>org.mockito</groupId>
|
---|
| 77 | <artifactId>mockito-all</artifactId>
|
---|
| 78 | <version>1.9.5</version>
|
---|
| 79 | <scope>test</scope>
|
---|
| 80 | </dependency>
|
---|
| 81 |
|
---|
| 82 | <dependency>
|
---|
| 83 | <groupId>org.seleniumhq.selenium</groupId>
|
---|
| 84 | <artifactId>selenium-java</artifactId>
|
---|
| 85 | </dependency>
|
---|
| 86 | <dependency>
|
---|
| 87 | <groupId>org.seleniumhq.selenium</groupId>
|
---|
| 88 | <artifactId>htmlunit-driver</artifactId>
|
---|
| 89 | </dependency>
|
---|
| 90 | <dependency>
|
---|
| 91 | <groupId>org.springframework.boot</groupId>
|
---|
| 92 | <artifactId>spring-boot-starter-data-rest</artifactId>
|
---|
| 93 | </dependency>
|
---|
| 94 | </dependencies>
|
---|
| 95 |
|
---|
| 96 | <build>
|
---|
| 97 | <plugins>
|
---|
| 98 | <plugin>
|
---|
| 99 | <groupId>org.springframework.boot</groupId>
|
---|
| 100 | <artifactId>spring-boot-maven-plugin</artifactId>
|
---|
| 101 | </plugin>
|
---|
| 102 | <plugin>
|
---|
| 103 | <groupId>com.github.eirslett</groupId>
|
---|
| 104 | <artifactId>frontend-maven-plugin</artifactId>
|
---|
| 105 | </plugin>
|
---|
| 106 | </plugins>
|
---|
| 107 | </build>
|
---|
| 108 | </project>
|
---|