|
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.4.0</version> |
9 | | - <relativePath/> <!-- lookup parent from repository --> |
10 | | - </parent> |
11 | | - <groupId>uz.javadev</groupId> |
12 | | - <artifactId>minio-file</artifactId> |
13 | | - <version>0.0.1-SNAPSHOT</version> |
14 | | - <name>minio-file</name> |
15 | | - <description>minio-file</description> |
16 | | - <url/> |
17 | | - <licenses> |
18 | | - <license/> |
19 | | - </licenses> |
20 | | - <developers> |
21 | | - <developer/> |
22 | | - </developers> |
23 | | - <scm> |
24 | | - <connection/> |
25 | | - <developerConnection/> |
26 | | - <tag/> |
27 | | - <url/> |
28 | | - </scm> |
29 | | - <properties> |
30 | | - <java.version>17</java.version> |
31 | | - </properties> |
32 | | - <dependencies> |
33 | | - <dependency> |
34 | | - <groupId>org.springframework.boot</groupId> |
35 | | - <artifactId>spring-boot-starter-data-jpa</artifactId> |
36 | | - </dependency> |
37 | | - <dependency> |
38 | | - <groupId>org.springframework.boot</groupId> |
39 | | - <artifactId>spring-boot-starter-web</artifactId> |
40 | | - </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.1.0</version> |
| 9 | + </parent> |
| 10 | + <groupId>uz.javadev</groupId> |
| 11 | + <artifactId>minio-file</artifactId> |
| 12 | + <version>0.0.1</version> |
| 13 | + <name>minio-file</name> |
| 14 | + <description>minio-file</description> |
41 | 15 |
|
42 | | - <dependency> |
43 | | - <groupId>org.postgresql</groupId> |
44 | | - <artifactId>postgresql</artifactId> |
45 | | - <scope>runtime</scope> |
46 | | - </dependency> |
47 | | - <dependency> |
48 | | - <groupId>org.projectlombok</groupId> |
49 | | - <artifactId>lombok</artifactId> |
50 | | - <optional>true</optional> |
51 | | - </dependency> |
52 | | - <dependency> |
53 | | - <groupId>org.springframework.boot</groupId> |
54 | | - <artifactId>spring-boot-starter-test</artifactId> |
55 | | - <scope>test</scope> |
56 | | - </dependency> |
57 | | - </dependencies> |
| 16 | + <properties> |
| 17 | + <java.version>17</java.version> |
| 18 | + <mapstruct.version>1.5.5.Final</mapstruct.version> |
| 19 | + <minio.version>8.5.2</minio.version> |
| 20 | + <swagger.version>2.0.2</swagger.version> |
| 21 | + </properties> |
| 22 | + <dependencies> |
| 23 | + <dependency> |
| 24 | + <groupId>org.springframework.boot</groupId> |
| 25 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 26 | + </dependency> |
| 27 | + <dependency> |
| 28 | + <groupId>org.springframework.boot</groupId> |
| 29 | + <artifactId>spring-boot-starter-web</artifactId> |
| 30 | + </dependency> |
58 | 31 |
|
59 | | - <build> |
60 | | - <plugins> |
61 | | - <plugin> |
62 | | - <groupId>org.apache.maven.plugins</groupId> |
63 | | - <artifactId>maven-compiler-plugin</artifactId> |
64 | | - <configuration> |
65 | | - <annotationProcessorPaths> |
66 | | - <path> |
67 | | - <groupId>org.projectlombok</groupId> |
68 | | - <artifactId>lombok</artifactId> |
69 | | - </path> |
70 | | - </annotationProcessorPaths> |
71 | | - </configuration> |
72 | | - </plugin> |
73 | | - <plugin> |
74 | | - <groupId>org.springframework.boot</groupId> |
75 | | - <artifactId>spring-boot-maven-plugin</artifactId> |
76 | | - <configuration> |
77 | | - <excludes> |
78 | | - <exclude> |
79 | | - <groupId>org.projectlombok</groupId> |
80 | | - <artifactId>lombok</artifactId> |
81 | | - </exclude> |
82 | | - </excludes> |
83 | | - </configuration> |
84 | | - </plugin> |
85 | | - </plugins> |
86 | | - </build> |
| 32 | + <dependency> |
| 33 | + <groupId>org.postgresql</groupId> |
| 34 | + <artifactId>postgresql</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>org.springframework.boot</groupId> |
| 44 | + <artifactId>spring-boot-starter-test</artifactId> |
| 45 | + <scope>test</scope> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.springdoc</groupId> |
| 49 | + <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
| 50 | + <version>${swagger.version}</version> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>io.minio</groupId> |
| 54 | + <artifactId>minio</artifactId> |
| 55 | + <version>${minio.version}</version> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.mapstruct</groupId> |
| 59 | + <artifactId>mapstruct</artifactId> |
| 60 | + <version>${mapstruct.version}</version> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>org.mapstruct</groupId> |
| 64 | + <artifactId>mapstruct-processor</artifactId> |
| 65 | + <version>${mapstruct.version}</version> |
| 66 | + <scope>provided</scope> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>jakarta.validation</groupId> |
| 70 | + <artifactId>jakarta.validation-api</artifactId> |
| 71 | + <version>3.0.2</version> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>org.springframework.boot</groupId> |
| 75 | + <artifactId>spring-boot-starter-jdbc</artifactId> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>org.springframework.boot</groupId> |
| 79 | + <artifactId>spring-boot-starter-logging</artifactId> |
| 80 | + </dependency> |
| 81 | + </dependencies> |
| 82 | + |
| 83 | + <build> |
| 84 | + <plugins> |
| 85 | + <plugin> |
| 86 | + <groupId>org.springframework.boot</groupId> |
| 87 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 88 | + <configuration> |
| 89 | + <excludes> |
| 90 | + <exclude> |
| 91 | + <groupId>org.projectlombok</groupId> |
| 92 | + <artifactId>lombok</artifactId> |
| 93 | + </exclude> |
| 94 | + </excludes> |
| 95 | + </configuration> |
| 96 | + </plugin> |
| 97 | + <plugin> |
| 98 | + <groupId>org.apache.maven.plugins</groupId> |
| 99 | + <artifactId>maven-compiler-plugin</artifactId> |
| 100 | + <version>${maven-compiler-plugin.version}</version> |
| 101 | + <configuration> |
| 102 | + <source>${java.version}</source> |
| 103 | + <target>${java.version}</target> |
| 104 | + <annotationProcessorPaths> |
| 105 | + <path> |
| 106 | + <groupId>org.mapstruct</groupId> |
| 107 | + <artifactId>mapstruct-processor</artifactId> |
| 108 | + <version>${mapstruct.version}</version> |
| 109 | + </path> |
| 110 | + <path> |
| 111 | + <groupId>org.projectlombok</groupId> |
| 112 | + <artifactId>lombok</artifactId> |
| 113 | + <version>${lombok.version}</version> |
| 114 | + </path> |
| 115 | + <path> |
| 116 | + <groupId>org.projectlombok</groupId> |
| 117 | + <artifactId>lombok-mapstruct-binding</artifactId> |
| 118 | + <version>0.2.0</version> |
| 119 | + </path> |
| 120 | + </annotationProcessorPaths> |
| 121 | + </configuration> |
| 122 | + </plugin> |
| 123 | + </plugins> |
| 124 | + </build> |
87 | 125 |
|
88 | 126 | </project> |
0 commit comments