Changeset 1ad8e64 for trip-planner
- Timestamp:
- 11/29/21 22:35:07 (3 years ago)
- Branches:
- master
- Children:
- 84d0fbb
- Parents:
- 8d391a1
- Location:
- trip-planner
- Files:
-
- 14 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner/pom.xml
r8d391a1 r1ad8e64 80 80 <version>3.0.3</version> 81 81 </dependency> 82 <!--SPRING SECURITY--> 83 <dependency> 84 <groupId>org.springframework.boot</groupId> 85 <artifactId>spring-boot-starter-security</artifactId> 86 </dependency> 87 <dependency> 88 <groupId>com.google.code.gson</groupId> 89 <artifactId>gson</artifactId> 90 <version>2.8.5</version> 91 </dependency> 92 <dependency> 93 <groupId>io.jsonwebtoken</groupId> 94 <artifactId>jjwt</artifactId> 95 <version>0.9.0</version> 96 </dependency> 97 <dependency> 98 <groupId>org.springframework.boot</groupId> 99 <artifactId>spring-boot-starter-validation</artifactId> 100 </dependency> 82 101 </dependencies> 83 102 -
trip-planner/src/main/java/finki/diplomska/tripplanner/TripPlannerApplication.java
r8d391a1 r1ad8e64 4 4 import org.springframework.boot.SpringApplication; 5 5 import org.springframework.boot.autoconfigure.SpringBootApplication; 6 import org.springframework.context.annotation.Bean; 7 import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; 6 8 7 9 @SpringBootApplication … … 9 11 public class TripPlannerApplication { 10 12 13 @Bean 14 BCryptPasswordEncoder bCryptPasswordEncoder(){ 15 return new BCryptPasswordEncoder(); 16 } 11 17 public static void main(String[] args) { 12 18 SpringApplication.run(TripPlannerApplication.class, args); -
trip-planner/src/main/java/finki/diplomska/tripplanner/models/dto/PlannerDto.java
r8d391a1 r1ad8e64 3 3 import lombok.Data; 4 4 5 import java.util.List;6 5 7 6 @Data
Note:
See TracChangeset
for help on using the changeset viewer.