Legend:
- Unmodified
- Added
- Removed
-
pom.xml
r1dd9226 rd14176d 18 18 </properties> 19 19 <dependencies> 20 21 <dependency> 22 <groupId>org.springframework.boot</groupId> 23 <artifactId>spring-boot-starter-thymeleaf</artifactId> 24 </dependency> 25 26 <dependency> 27 <groupId>org.springframework.boot</groupId> 28 <artifactId>spring-boot-starter-web</artifactId> 29 </dependency> 30 20 31 <dependency> 21 32 <groupId>org.springframework.boot</groupId> 22 33 <artifactId>spring-boot-starter-data-jpa</artifactId> 23 34 </dependency> 35 36 <dependency> 37 <groupId>org.flywaydb</groupId> 38 <artifactId>flyway-maven-plugin</artifactId> 39 <version>6.2.3</version> 40 </dependency> 41 42 24 43 <dependency> 25 44 <groupId>org.springframework.boot</groupId> 26 45 <artifactId>spring-boot-starter-security</artifactId> 27 46 </dependency> 28 <dependency> 29 <groupId>org.springframework.boot</groupId> 30 <artifactId>spring-boot-starter-thymeleaf</artifactId> 31 </dependency> 32 <dependency> 33 <groupId>org.springframework.boot</groupId> 34 <artifactId>spring-boot-starter-web</artifactId> 35 </dependency> 47 36 48 <dependency> 37 49 <groupId>org.thymeleaf.extras</groupId> 38 50 <artifactId>thymeleaf-extras-springsecurity5</artifactId> 39 51 </dependency> 52 53 <dependency> 54 <groupId>com.h2database</groupId> 55 <artifactId>h2</artifactId> 56 </dependency> 57 40 58 41 59 <dependency> … … 50 68 <optional>true</optional> 51 69 </dependency> 70 71 <dependency> 72 <groupId>com.auth0</groupId> 73 <artifactId>java-jwt</artifactId> 74 <version>3.7.0</version> 75 </dependency> 76 52 77 <dependency> 53 78 <groupId>org.springframework.boot</groupId> 54 79 <artifactId>spring-boot-starter-test</artifactId> 55 80 <scope>test</scope> 81 <exclusions> 82 <exclusion> 83 <groupId>org.junit.vintage</groupId> 84 <artifactId>junit-vintage-engine</artifactId> 85 </exclusion> 86 </exclusions> 56 87 </dependency> 88 57 89 <dependency> 58 <groupId>org.springframework.security</groupId> 59 <artifactId>spring-security-test</artifactId> 60 <scope>test</scope> 90 <groupId>junit</groupId> 91 <artifactId>junit</artifactId> 61 92 </dependency> 93 94 <dependency> 95 <groupId>org.seleniumhq.selenium</groupId> 96 <artifactId>selenium-java</artifactId> 97 </dependency> 98 99 <dependency> 100 <groupId>org.seleniumhq.selenium</groupId> 101 <artifactId>htmlunit-driver</artifactId> 102 </dependency> 103 62 104 </dependencies> 63 105
Note:
See TracChangeset
for help on using the changeset viewer.