148 lines
4.4 KiB
Plaintext
148 lines
4.4 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/xsd/maven-4.0.0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<parent>
|
||
|
|
<groupId>org.springdoc</groupId>
|
||
|
|
<artifactId>springdoc-openapi</artifactId>
|
||
|
|
<version>2.3.0</version>
|
||
|
|
</parent>
|
||
|
|
<artifactId>springdoc-openapi-starter-common</artifactId>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.swagger.core.v3</groupId>
|
||
|
|
<artifactId>swagger-core-jakarta</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Actuator dependencies -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<!-- For Spring Cloud Function Support -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.cloud</groupId>
|
||
|
|
<artifactId>spring-cloud-function-web</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<!-- For Groovy Support -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.groovy</groupId>
|
||
|
|
<artifactId>groovy</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<!-- Javadoc Runtime library -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.therapi</groupId>
|
||
|
|
<artifactId>therapi-runtime-javadoc</artifactId>
|
||
|
|
<version>${therapi-runtime-javadoc.version}</version>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<!-- Spring Security -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.security</groupId>
|
||
|
|
<artifactId>spring-security-oauth2-authorization-server</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<!-- Kotlin -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||
|
|
<artifactId>jackson-module-kotlin</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||
|
|
<artifactId>kotlinx-coroutines-reactor</artifactId>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<!-- Spring Web /Data Rest/Hateoas && For Enhanced Pageable Support-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-data-rest</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.querydsl</groupId>
|
||
|
|
<artifactId>querydsl-core</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
<build>
|
||
|
|
<resources>
|
||
|
|
<resource>
|
||
|
|
<directory>src/main/resources</directory>
|
||
|
|
<filtering>true</filtering>
|
||
|
|
</resource>
|
||
|
|
</resources>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<archive>
|
||
|
|
<manifestEntries>
|
||
|
|
<Automatic-Module-Name>org.springdoc.openapi.common
|
||
|
|
</Automatic-Module-Name>
|
||
|
|
</manifestEntries>
|
||
|
|
</archive>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<id>compile</id>
|
||
|
|
<phase>process-sources</phase>
|
||
|
|
<goals>
|
||
|
|
<goal>compile</goal>
|
||
|
|
</goals>
|
||
|
|
<configuration>
|
||
|
|
<sourceDirs>
|
||
|
|
<sourceDir>${project.basedir}/src/main/java</sourceDir>
|
||
|
|
<sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
|
||
|
|
</sourceDirs>
|
||
|
|
</configuration>
|
||
|
|
</execution>
|
||
|
|
<execution>
|
||
|
|
<id>test-compile</id>
|
||
|
|
<goals>
|
||
|
|
<goal>test-compile</goal>
|
||
|
|
</goals>
|
||
|
|
<configuration>
|
||
|
|
<sourceDirs>
|
||
|
|
<sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
|
||
|
|
<sourceDir>${project.basedir}/src/test/java</sourceDir>
|
||
|
|
</sourceDirs>
|
||
|
|
</configuration>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
<configuration>
|
||
|
|
<compilerPlugins>
|
||
|
|
<plugin>spring</plugin>
|
||
|
|
</compilerPlugins>
|
||
|
|
</configuration>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
|
<artifactId>kotlin-maven-allopen</artifactId>
|
||
|
|
<version>${kotlin.version}</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|