|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 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.0.5</version> |
9 |
| - <relativePath/> <!-- lookup parent from repository --> |
10 |
| - </parent> |
11 |
| - <groupId>com.alibou</groupId> |
12 |
| - <artifactId>security</artifactId> |
13 |
| - <version>0.0.1-SNAPSHOT</version> |
14 |
| - <name>security</name> |
15 |
| - <description>Demo project for Spring Boot</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-jpa</artifactId> |
23 |
| - </dependency> |
24 |
| - <dependency> |
25 |
| - <groupId>org.springframework.boot</groupId> |
26 |
| - <artifactId>spring-boot-starter-security</artifactId> |
27 |
| - </dependency> |
28 |
| - <dependency> |
29 |
| - <groupId>org.springframework.boot</groupId> |
30 |
| - <artifactId>spring-boot-starter-web</artifactId> |
31 |
| - </dependency> |
32 |
| - <dependency> |
33 |
| - <groupId>com.mysql</groupId> |
34 |
| - <artifactId>mysql-connector-j</artifactId> |
35 |
| - <scope>runtime</scope> |
36 |
| - </dependency> |
37 |
| - <dependency> |
38 |
| - <groupId>org.projectlombok</groupId> |
39 |
| - <artifactId>lombok</artifactId> |
40 |
| - <optional>true</optional> |
41 |
| - </dependency> |
42 |
| - <dependency> |
43 |
| - <groupId>io.jsonwebtoken</groupId> |
44 |
| - <artifactId>jjwt-api</artifactId> |
45 |
| - <version>0.11.5</version> |
46 |
| - </dependency> |
47 |
| - <dependency> |
48 |
| - <groupId>io.jsonwebtoken</groupId> |
49 |
| - <artifactId>jjwt-impl</artifactId> |
50 |
| - <version>0.11.5</version> |
51 |
| - </dependency> |
52 |
| - <dependency> |
53 |
| - <groupId>io.jsonwebtoken</groupId> |
54 |
| - <artifactId>jjwt-jackson</artifactId> |
55 |
| - <version>0.11.5</version> |
56 |
| - </dependency> |
57 |
| - <dependency> |
58 |
| - <groupId>org.springdoc</groupId> |
59 |
| - <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
60 |
| - <version>2.1.0</version> |
61 |
| - </dependency> |
62 |
| - <dependency> |
63 |
| - <groupId>org.springframework.boot</groupId> |
64 |
| - <artifactId>spring-boot-starter-validation</artifactId> |
65 |
| - </dependency> |
| 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.0.5</version> |
| 9 | + <relativePath/> <!-- lookup parent from repository --> |
| 10 | + </parent> |
| 11 | + <groupId>com.alibou</groupId> |
| 12 | + <artifactId>security</artifactId> |
| 13 | + <version>0.0.1-SNAPSHOT</version> |
| 14 | + <name>security</name> |
| 15 | + <description>Demo project for Spring Boot</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-jpa</artifactId> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>org.springframework.boot</groupId> |
| 26 | + <artifactId>spring-boot-starter-security</artifactId> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>org.springframework.boot</groupId> |
| 30 | + <artifactId>spring-boot-starter-web</artifactId> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>com.mysql</groupId> |
| 34 | + <artifactId>mysql-connector-j</artifactId> |
| 35 | + <scope>runtime</scope> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.projectlombok</groupId> |
| 39 | + <artifactId>lombok</artifactId> |
| 40 | + <optional>true</optional> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>io.jsonwebtoken</groupId> |
| 44 | + <artifactId>jjwt-api</artifactId> |
| 45 | + <version>0.11.5</version> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>io.jsonwebtoken</groupId> |
| 49 | + <artifactId>jjwt-impl</artifactId> |
| 50 | + <version>0.11.5</version> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>io.jsonwebtoken</groupId> |
| 54 | + <artifactId>jjwt-jackson</artifactId> |
| 55 | + <version>0.11.5</version> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.springdoc</groupId> |
| 59 | + <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
| 60 | + <version>2.1.0</version> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>org.springframework.boot</groupId> |
| 64 | + <artifactId>spring-boot-starter-validation</artifactId> |
| 65 | + </dependency> |
66 | 66 |
|
67 |
| - <dependency> |
68 |
| - <groupId>org.springframework.boot</groupId> |
69 |
| - <artifactId>spring-boot-starter-test</artifactId> |
70 |
| - <scope>test</scope> |
71 |
| - </dependency> |
72 |
| - <dependency> |
73 |
| - <groupId>org.springframework.security</groupId> |
74 |
| - <artifactId>spring-security-test</artifactId> |
75 |
| - <scope>test</scope> |
76 |
| - </dependency> |
77 |
| - <dependency> |
78 |
| - <groupId>org.apache.poi</groupId> |
79 |
| - <artifactId>poi-ooxml</artifactId> |
80 |
| - <version>5.2.3</version> |
81 |
| - </dependency> |
82 |
| - </dependencies> |
| 67 | + <dependency> |
| 68 | + <groupId>org.springframework.boot</groupId> |
| 69 | + <artifactId>spring-boot-starter-test</artifactId> |
| 70 | + <scope>test</scope> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>org.springframework.security</groupId> |
| 74 | + <artifactId>spring-security-test</artifactId> |
| 75 | + <scope>test</scope> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>org.apache.poi</groupId> |
| 79 | + <artifactId>poi-ooxml</artifactId> |
| 80 | + <version>5.2.3</version> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>com.google.zxing</groupId> |
| 84 | + <artifactId>core</artifactId> |
| 85 | + <version>3.5.1</version> |
| 86 | + </dependency> |
83 | 87 |
|
84 |
| - <build> |
85 |
| - <plugins> |
86 |
| - <plugin> |
87 |
| - <groupId>org.springframework.boot</groupId> |
88 |
| - <artifactId>spring-boot-maven-plugin</artifactId> |
89 |
| - <configuration> |
90 |
| - <excludes> |
91 |
| - <exclude> |
92 |
| - <groupId>org.projectlombok</groupId> |
93 |
| - <artifactId>lombok</artifactId> |
94 |
| - </exclude> |
95 |
| - </excludes> |
96 |
| - </configuration> |
97 |
| - </plugin> |
98 |
| - </plugins> |
99 |
| - </build> |
| 88 | + <dependency> |
| 89 | + <groupId>com.google.zxing</groupId> |
| 90 | + <artifactId>javase</artifactId> |
| 91 | + <version>3.5.0</version> |
| 92 | + </dependency> |
| 93 | + <dependency> |
| 94 | + <groupId>org.passay</groupId> |
| 95 | + <artifactId>passay</artifactId> |
| 96 | + <version>1.6.3</version> |
| 97 | + </dependency> |
| 98 | + </dependencies> |
| 99 | + |
| 100 | + <build> |
| 101 | + <plugins> |
| 102 | + <plugin> |
| 103 | + <groupId>org.springframework.boot</groupId> |
| 104 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 105 | + <configuration> |
| 106 | + <excludes> |
| 107 | + <exclude> |
| 108 | + <groupId>org.projectlombok</groupId> |
| 109 | + <artifactId>lombok</artifactId> |
| 110 | + </exclude> |
| 111 | + </excludes> |
| 112 | + </configuration> |
| 113 | + </plugin> |
| 114 | + </plugins> |
| 115 | + </build> |
100 | 116 |
|
101 | 117 | </project>
|
0 commit comments