You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
3.0 KiB
118 lines
3.0 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-parent</artifactId> |
|
<version>3.3.5</version> |
|
<relativePath/> <!-- lookup parent from repository --> |
|
</parent> |
|
<groupId>zoltan.vari</groupId> |
|
<artifactId>spotifymixerapi</artifactId> |
|
<version>0.0.5-SNAPSHOT</version> |
|
<name>spotifymixerapi</name> |
|
<description>Demo project for Spring Boot</description> |
|
<url/> |
|
<licenses> |
|
<license/> |
|
</licenses> |
|
<developers> |
|
<developer/> |
|
</developers> |
|
<scm> |
|
<connection/> |
|
<developerConnection/> |
|
<tag/> |
|
<url/> |
|
</scm> |
|
<properties> |
|
<java.version>23</java.version> |
|
</properties> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<version>1.18.34</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
<configuration> |
|
<archive> |
|
<manifest> |
|
<addClasspath>true</addClasspath> |
|
</manifest> |
|
</archive> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<configuration> |
|
<classifier>exec</classifier> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<goals> |
|
<goal>repackage</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-dependency-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>unpack</id> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>unpack</goal> |
|
</goals> |
|
<configuration> |
|
<artifactItems> |
|
<artifactItem> |
|
<groupId>${project.groupId}</groupId> |
|
<artifactId>${project.artifactId}</artifactId> |
|
<version>${project.version}</version> |
|
</artifactItem> |
|
</artifactItems> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>cz.habarta.typescript-generator</groupId> |
|
<artifactId>typescript-generator-maven-plugin</artifactId> |
|
<version>3.2.1263</version> |
|
<executions> |
|
<execution> |
|
<id>generate</id> |
|
<goals> |
|
<goal>generate</goal> |
|
</goals> |
|
<phase>process-classes</phase> |
|
</execution> |
|
</executions> |
|
<configuration> |
|
<jsonLibrary>jackson2</jsonLibrary> |
|
<classPatterns> |
|
<class>spotifymixerapi.api.**</class> |
|
</classPatterns> |
|
<outputKind>module</outputKind> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|