|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 5 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
| 6 | + http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 7 | + <modelVersion>4.0.0</modelVersion> |
| 8 | + |
| 9 | + <groupId>com.github.danilkozyrev</groupId> |
| 10 | + <artifactId>file-storage-api</artifactId> |
| 11 | + <version>1.0</version> |
| 12 | + <packaging>jar</packaging> |
| 13 | + |
| 14 | + <parent> |
| 15 | + <groupId>org.springframework.boot</groupId> |
| 16 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 17 | + <version>2.1.6.RELEASE</version> |
| 18 | + </parent> |
| 19 | + |
| 20 | + <properties> |
| 21 | + <java.version>11</java.version> |
| 22 | + <lombok.version>1.18.8</lombok.version> |
| 23 | + <mapstruct.version>1.3.0.Final</mapstruct.version> |
| 24 | + <springfox.version>2.9.2</springfox.version> |
| 25 | + <jaxb.version>2.3.2</jaxb.version> |
| 26 | + </properties> |
| 27 | + |
| 28 | + <dependencies> |
| 29 | + <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web --> |
| 30 | + <dependency> |
| 31 | + <groupId>org.springframework.boot</groupId> |
| 32 | + <artifactId>spring-boot-starter-web</artifactId> |
| 33 | + </dependency> |
| 34 | + |
| 35 | + <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator --> |
| 36 | + <dependency> |
| 37 | + <groupId>org.springframework.boot</groupId> |
| 38 | + <artifactId>spring-boot-starter-actuator</artifactId> |
| 39 | + </dependency> |
| 40 | + |
| 41 | + <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-jpa --> |
| 42 | + <dependency> |
| 43 | + <groupId>org.springframework.boot</groupId> |
| 44 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 45 | + </dependency> |
| 46 | + |
| 47 | + <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation --> |
| 48 | + <dependency> |
| 49 | + <groupId>org.springframework.boot</groupId> |
| 50 | + <artifactId>spring-boot-starter-validation</artifactId> |
| 51 | + </dependency> |
| 52 | + |
| 53 | + <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security --> |
| 54 | + <dependency> |
| 55 | + <groupId>org.springframework.boot</groupId> |
| 56 | + <artifactId>spring-boot-starter-security</artifactId> |
| 57 | + </dependency> |
| 58 | + |
| 59 | + <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test --> |
| 60 | + <dependency> |
| 61 | + <groupId>org.springframework.boot</groupId> |
| 62 | + <artifactId>spring-boot-starter-test</artifactId> |
| 63 | + <scope>test</scope> |
| 64 | + </dependency> |
| 65 | + |
| 66 | + <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor --> |
| 67 | + <dependency> |
| 68 | + <groupId>org.springframework.boot</groupId> |
| 69 | + <artifactId>spring-boot-configuration-processor</artifactId> |
| 70 | + </dependency> |
| 71 | + |
| 72 | + <!-- https://mvnrepository.com/artifact/org.springframework.security.oauth/spring-security-oauth2 --> |
| 73 | + <dependency> |
| 74 | + <groupId>org.springframework.security.oauth</groupId> |
| 75 | + <artifactId>spring-security-oauth2</artifactId> |
| 76 | + <version>2.3.6.RELEASE</version> |
| 77 | + </dependency> |
| 78 | + |
| 79 | + <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok --> |
| 80 | + <dependency> |
| 81 | + <groupId>org.projectlombok</groupId> |
| 82 | + <artifactId>lombok</artifactId> |
| 83 | + <version>${lombok.version}</version> |
| 84 | + <scope>provided</scope> |
| 85 | + </dependency> |
| 86 | + |
| 87 | + <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql --> |
| 88 | + <dependency> |
| 89 | + <groupId>org.postgresql</groupId> |
| 90 | + <artifactId>postgresql</artifactId> |
| 91 | + <scope>runtime</scope> |
| 92 | + </dependency> |
| 93 | + |
| 94 | + <!-- https://mvnrepository.com/artifact/org.passay/passay --> |
| 95 | + <dependency> |
| 96 | + <groupId>org.passay</groupId> |
| 97 | + <artifactId>passay</artifactId> |
| 98 | + <version>1.5.0</version> |
| 99 | + </dependency> |
| 100 | + |
| 101 | + <!-- https://mvnrepository.com/artifact/org.apache.tika/tika-core --> |
| 102 | + <dependency> |
| 103 | + <groupId>org.apache.tika</groupId> |
| 104 | + <artifactId>tika-core</artifactId> |
| 105 | + <version>1.21</version> |
| 106 | + </dependency> |
| 107 | + |
| 108 | + <!-- https://mvnrepository.com/artifact/com.auth0/java-jwt --> |
| 109 | + <dependency> |
| 110 | + <groupId>com.auth0</groupId> |
| 111 | + <artifactId>java-jwt</artifactId> |
| 112 | + <version>3.8.1</version> |
| 113 | + </dependency> |
| 114 | + |
| 115 | + <!-- https://mvnrepository.com/artifact/org.mapstruct/mapstruct --> |
| 116 | + <dependency> |
| 117 | + <groupId>org.mapstruct</groupId> |
| 118 | + <artifactId>mapstruct</artifactId> |
| 119 | + <version>${mapstruct.version}</version> |
| 120 | + </dependency> |
| 121 | + |
| 122 | + <!-- https://mvnrepository.com/artifact/org.mapstruct/mapstruct-processor --> |
| 123 | + <dependency> |
| 124 | + <groupId>org.mapstruct</groupId> |
| 125 | + <artifactId>mapstruct-processor</artifactId> |
| 126 | + <version>${mapstruct.version}</version> |
| 127 | + <scope>provided</scope> |
| 128 | + </dependency> |
| 129 | + |
| 130 | + <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 --> |
| 131 | + <dependency> |
| 132 | + <groupId>io.springfox</groupId> |
| 133 | + <artifactId>springfox-swagger2</artifactId> |
| 134 | + <version>${springfox.version}</version> |
| 135 | + </dependency> |
| 136 | + |
| 137 | + <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui --> |
| 138 | + <dependency> |
| 139 | + <groupId>io.springfox</groupId> |
| 140 | + <artifactId>springfox-swagger-ui</artifactId> |
| 141 | + <version>${springfox.version}</version> |
| 142 | + </dependency> |
| 143 | + |
| 144 | + <!-- https://mvnrepository.com/artifact/jakarta.xml.bind/jakarta.xml.bind-api --> |
| 145 | + <dependency> |
| 146 | + <groupId>jakarta.xml.bind</groupId> |
| 147 | + <artifactId>jakarta.xml.bind-api</artifactId> |
| 148 | + <version>${jaxb.version}</version> |
| 149 | + </dependency> |
| 150 | + |
| 151 | + <!-- https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-runtime --> |
| 152 | + <dependency> |
| 153 | + <groupId>org.glassfish.jaxb</groupId> |
| 154 | + <artifactId>jaxb-runtime</artifactId> |
| 155 | + <version>${jaxb.version}</version> |
| 156 | + </dependency> |
| 157 | + </dependencies> |
| 158 | + |
| 159 | + <build> |
| 160 | + <plugins> |
| 161 | + <plugin> |
| 162 | + <groupId>org.springframework.boot</groupId> |
| 163 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 164 | + </plugin> |
| 165 | + <plugin> |
| 166 | + <groupId>org.apache.maven.plugins</groupId> |
| 167 | + <artifactId>maven-compiler-plugin</artifactId> |
| 168 | + <version>3.8.0</version> |
| 169 | + <configuration> |
| 170 | + <annotationProcessorPaths> |
| 171 | + <path> |
| 172 | + <groupId>org.mapstruct</groupId> |
| 173 | + <artifactId>mapstruct-processor</artifactId> |
| 174 | + <version>${mapstruct.version}</version> |
| 175 | + </path> |
| 176 | + <path> |
| 177 | + <groupId>org.projectlombok</groupId> |
| 178 | + <artifactId>lombok</artifactId> |
| 179 | + <version>${lombok.version}</version> |
| 180 | + </path> |
| 181 | + </annotationProcessorPaths> |
| 182 | + <compilerArgs> |
| 183 | + <compilerArg> |
| 184 | + -Amapstruct.defaultComponentModel=spring |
| 185 | + </compilerArg> |
| 186 | + </compilerArgs> |
| 187 | + </configuration> |
| 188 | + </plugin> |
| 189 | + </plugins> |
| 190 | + </build> |
| 191 | +</project> |
0 commit comments