- Timestamp:
- 02/04/23 00:39:48 (22 months ago)
- Branches:
- master
- Children:
- 2269653
- Parents:
- ac25203
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pom.xml
rac25203 reb226b2 17 17 <java.version>17</java.version> 18 18 </properties> 19 19 20 <dependencies> 20 21 21 <dependency> 22 <groupId>org.springframework.boot</groupId> 23 <artifactId>spring-boot-starter-data-jpa</artifactId> 24 </dependency> 22 25 <dependency> 23 26 <groupId>org.springframework.boot</groupId> … … 27 30 <groupId>org.springframework.boot</groupId> 28 31 <artifactId>spring-boot-starter-web</artifactId> 32 </dependency> 33 <dependency> 34 <groupId>javax.servlet</groupId> 35 <artifactId>javax.servlet-api</artifactId> 36 <version>4.0.1</version> 37 <scope>provided</scope> 38 </dependency> 39 <dependency> 40 <groupId>org.thymeleaf.extras</groupId> 41 <artifactId>thymeleaf-extras-springsecurity5</artifactId> 42 <version>3.0.4.RELEASE</version> 29 43 </dependency> 30 44 … … 37 51 <groupId>org.projectlombok</groupId> 38 52 <artifactId>lombok</artifactId> 53 <version>1.18.24</version> 54 <scope>provided</scope> 39 55 <optional>true</optional> 40 56 </dependency> … … 46 62 <dependency> 47 63 <groupId>org.springframework.boot</groupId> 48 <artifactId>spring-boot-starter-data-jpa</artifactId> 49 </dependency> 50 <dependency> 51 <groupId>org.springframework.security</groupId> 52 <artifactId>spring-security-core</artifactId> 64 <artifactId>spring-boot-starter-security</artifactId> 53 65 </dependency> 54 66 <dependency> 55 67 <groupId>org.springframework.security</groupId> 56 68 <artifactId>spring-security-config</artifactId> 57 <version>5.7.3</version> 58 <scope>compile</scope> 59 69 <version>3.2.0.RELEASE</version> 60 70 </dependency> 61 71 </dependencies> 72 62 73 63 74 <build>
Note:
See TracChangeset
for help on using the changeset viewer.