|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <parent> |
| 7 | + <groupId>ru.ifmo.se.dating</groupId> |
| 8 | + <artifactId>matchmaker</artifactId> |
| 9 | + <version>1.0.0</version> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <artifactId>matchmaker-server</artifactId> |
| 13 | + <version>1.0.0</version> |
| 14 | + <packaging>jar</packaging> |
| 15 | + <name>matchmaker-server</name> |
| 16 | + |
| 17 | + <dependencies> |
| 18 | + <dependency> |
| 19 | + <groupId>ru.ifmo.se.dating</groupId> |
| 20 | + <artifactId>matchmaker-api</artifactId> |
| 21 | + </dependency> |
| 22 | + |
| 23 | + <dependency> |
| 24 | + <groupId>io.swagger.core.v3</groupId> |
| 25 | + <artifactId>swagger-annotations</artifactId> |
| 26 | + </dependency> |
| 27 | + <dependency> |
| 28 | + <groupId>io.swagger.core.v3</groupId> |
| 29 | + <artifactId>swagger-models</artifactId> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>org.openapitools</groupId> |
| 33 | + <artifactId>jackson-databind-nullable</artifactId> |
| 34 | + </dependency> |
| 35 | + |
| 36 | + <dependency> |
| 37 | + <groupId>org.springframework</groupId> |
| 38 | + <artifactId>spring-web</artifactId> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>org.springframework</groupId> |
| 42 | + <artifactId>spring-context</artifactId> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>org.springframework.boot</groupId> |
| 46 | + <artifactId>spring-boot</artifactId> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>org.springframework.boot</groupId> |
| 50 | + <artifactId>spring-boot-starter-web</artifactId> |
| 51 | + </dependency> |
| 52 | + |
| 53 | + <dependency> |
| 54 | + <groupId>javax.validation</groupId> |
| 55 | + <artifactId>validation-api</artifactId> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>javax.servlet</groupId> |
| 59 | + <artifactId>javax.servlet-api</artifactId> |
| 60 | + <scope>provided</scope> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>javax.annotation</groupId> |
| 64 | + <artifactId>javax.annotation-api</artifactId> |
| 65 | + <version>1.3.2</version> |
| 66 | + </dependency> |
| 67 | + |
| 68 | + <dependency> |
| 69 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 70 | + <artifactId>jackson-databind</artifactId> |
| 71 | + </dependency> |
| 72 | + </dependencies> |
| 73 | + |
| 74 | + <build> |
| 75 | + <plugins> |
| 76 | + <plugin> |
| 77 | + <groupId>org.openapitools</groupId> |
| 78 | + <artifactId>openapi-generator-maven-plugin</artifactId> |
| 79 | + <executions> |
| 80 | + <execution> |
| 81 | + <configuration> |
| 82 | + <inputSpec>${project.basedir}/../api/src/main/resources/static/openapi/api.yml</inputSpec> |
| 83 | + <generatorName>spring</generatorName> |
| 84 | + </configuration> |
| 85 | + </execution> |
| 86 | + </executions> |
| 87 | + </plugin> |
| 88 | + </plugins> |
| 89 | + </build> |
| 90 | +</project> |
0 commit comments