mirror of https://github.com/usbharu/Hideout.git
234 lines
10 KiB
Plaintext
234 lines
10 KiB
Plaintext
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>{{groupId}}</groupId>
|
||
|
<artifactId>{{artifactId}}</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
<name>{{artifactId}}</name>
|
||
|
<version>{{artifactVersion}}</version>
|
||
|
<properties>{{#reactive}}
|
||
|
<kotlinx-coroutines.version>1.6.1
|
||
|
</kotlinx-coroutines.version>{{/reactive}}{{#springDocDocumentationProvider}}{{#useSwaggerUI}}
|
||
|
<springdoc-openapi.version>2.0.2
|
||
|
</springdoc-openapi.version>{{/useSwaggerUI}}{{/springDocDocumentationProvider}}{{#springFoxDocumentationProvider}}
|
||
|
<springfox-swagger2.version>2.9.2
|
||
|
</springfox-swagger2.version>{{/springFoxDocumentationProvider}}{{#useSwaggerUI}}{{^springDocDocumentationProvider}}
|
||
|
<swagger-ui.version>4.15.5
|
||
|
</swagger-ui.version>{{/springDocDocumentationProvider}}{{/useSwaggerUI}}{{^springFoxDocumentationProvider}}{{^springDocDocumentationProvider}}{{#swagger1AnnotationLibrary}}
|
||
|
<swagger-annotations.version>1.6.6
|
||
|
</swagger-annotations.version>{{/swagger1AnnotationLibrary}}{{#swagger2AnnotationLibrary}}
|
||
|
<swagger-annotations.version>2.2.7
|
||
|
</swagger-annotations.version>{{/swagger2AnnotationLibrary}}{{/springDocDocumentationProvider}}{{/springFoxDocumentationProvider}}
|
||
|
<findbugs-jsr305.version>3.0.2</findbugs-jsr305.version>
|
||
|
<jakarta-annotation.version>2.1.0</jakarta-annotation.version>
|
||
|
<kotlin-test-junit5.version>1.7.10</kotlin-test-junit5.version>
|
||
|
|
||
|
<kotlin.version>1.7.10</kotlin.version>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
<parent>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>3.0.2</version>
|
||
|
</parent>
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-parent</artifactId>
|
||
|
<version>2021.0.5</version>
|
||
|
<type>pom</type>
|
||
|
<scope>import</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>repository.spring.milestone</id>
|
||
|
<name>Spring Milestone Repository</name>
|
||
|
<url>https://repo.spring.io/milestone</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
<pluginRepositories>
|
||
|
<pluginRepository>
|
||
|
<id>spring-milestones</id>
|
||
|
<url>https://repo.spring.io/milestone</url>
|
||
|
</pluginRepository>
|
||
|
</pluginRepositories>
|
||
|
<build>
|
||
|
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
|
||
|
<plugins>{{^interfaceOnly}}
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>repackage</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>{{/interfaceOnly}}
|
||
|
<plugin>
|
||
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
<version>${kotlin.version}</version>
|
||
|
<configuration>
|
||
|
<compilerPlugins>
|
||
|
<plugin>spring</plugin>
|
||
|
</compilerPlugins>
|
||
|
<jvmTarget>17</jvmTarget>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>compile</id>
|
||
|
<phase>compile</phase>
|
||
|
<goals>
|
||
|
<goal>compile</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
<execution>
|
||
|
<id>test-compile</id>
|
||
|
<phase>test-compile</phase>
|
||
|
<goals>
|
||
|
<goal>test-compile</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
<artifactId>kotlin-maven-allopen</artifactId>
|
||
|
<version>${kotlin.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||
|
<version>${kotlin.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
<artifactId>kotlin-reflect</artifactId>
|
||
|
<version>${kotlin.version}</version>
|
||
|
</dependency>{{^reactive}}
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>{{/reactive}}{{#reactive}}
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||
|
<artifactId>kotlinx-coroutines-core</artifactId>
|
||
|
<version>${kotlinx-coroutines.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||
|
<artifactId>kotlinx-coroutines-reactor</artifactId>
|
||
|
<version>${kotlinx-coroutines.version}</version>
|
||
|
</dependency>{{/reactive}}
|
||
|
|
||
|
{{#springDocDocumentationProvider}}
|
||
|
<!--SpringDoc dependencies -->{{#useSwaggerUI}}
|
||
|
<dependency>
|
||
|
<groupId>org.springdoc</groupId>
|
||
|
<artifactId>springdoc-openapi-starter-{{#reactive}}
|
||
|
webflux{{/reactive}}{{^reactive}}webmvc{{/reactive}}-ui
|
||
|
</artifactId>
|
||
|
<version>${springdoc-openapi.version}</version>
|
||
|
</dependency>{{/useSwaggerUI}}{{^useSwaggerUI}}
|
||
|
<dependency>
|
||
|
<groupId>org.springdoc</groupId>
|
||
|
<artifactId>springdoc-openapi-{{#reactive}}webflux{{/reactive}}{{^reactive}}webmvc{{/reactive}}-core
|
||
|
</artifactId>
|
||
|
<version>${springdoc-openapi.version}</version>
|
||
|
</dependency>{{/useSwaggerUI}}{{/springDocDocumentationProvider}}{{#springFoxDocumentationProvider}}
|
||
|
<!--SpringFox dependencies -->
|
||
|
<dependency>
|
||
|
<groupId>io.springfox</groupId>
|
||
|
<artifactId>springfox-swagger2</artifactId>
|
||
|
<version>${springfox-swagger2.version}</version>
|
||
|
</dependency>{{/springFoxDocumentationProvider}}{{#useSwaggerUI}}{{^springDocDocumentationProvider}}
|
||
|
<dependency>
|
||
|
<groupId>org.webjars</groupId>
|
||
|
<artifactId>swagger-ui</artifactId>
|
||
|
<version>${swagger-ui.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.webjars</groupId>
|
||
|
<artifactId>webjars-locator-core</artifactId>
|
||
|
</dependency>{{/springDocDocumentationProvider}}{{/useSwaggerUI}}{{^springFoxDocumentationProvider}}{{^springDocDocumentationProvider}}{{#swagger1AnnotationLibrary}}
|
||
|
<dependency>
|
||
|
<groupId>io.swagger</groupId>
|
||
|
<artifactId>swagger-annotations</artifactId>
|
||
|
<version>${swagger-annotations.version}</version>
|
||
|
</dependency>{{/swagger1AnnotationLibrary}}{{#swagger2AnnotationLibrary}}
|
||
|
<dependency>
|
||
|
<groupId>io.swagger.core.v3</groupId>
|
||
|
<artifactId>swagger-annotations</artifactId>
|
||
|
<version>${swagger-annotations.version}</version>
|
||
|
</dependency>{{/swagger2AnnotationLibrary}}{{/springDocDocumentationProvider}}{{/springFoxDocumentationProvider}}
|
||
|
|
||
|
<!-- @Nullable annotation -->
|
||
|
<dependency>
|
||
|
<groupId>com.google.code.findbugs</groupId>
|
||
|
<artifactId>jsr305</artifactId>
|
||
|
<version>${findbugs-jsr305.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
||
|
</dependency>
|
||
|
{{#hasAuthMethods}}
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-oauth2</artifactId>
|
||
|
{{^parentOverridden}}
|
||
|
<version>2.2.5.RELEASE</version>
|
||
|
{{/parentOverridden}}
|
||
|
</dependency>
|
||
|
{{/hasAuthMethods}}
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||
|
<artifactId>jackson-dataformat-yaml</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||
|
<artifactId>jackson-dataformat-xml</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||
|
<artifactId>jackson-module-kotlin</artifactId>
|
||
|
</dependency>
|
||
|
{{#useBeanValidation}}
|
||
|
<!-- Bean Validation API support -->
|
||
|
<dependency>
|
||
|
<groupId>jakarta.validation</groupId>
|
||
|
<artifactId>jakarta.validation-api</artifactId>
|
||
|
</dependency>{{/useBeanValidation}}
|
||
|
<dependency>
|
||
|
<groupId>jakarta.annotation</groupId>
|
||
|
<artifactId>jakarta.annotation-api</artifactId>
|
||
|
<version>${jakarta-annotation.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
<artifactId>kotlin-test-junit5</artifactId>
|
||
|
<version>${kotlin-test-junit5.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|