mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 16:20:03 +00:00
95 lines
3.5 KiB
XML
95 lines
3.5 KiB
XML
<?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>
|
|
|
|
<groupId>de.grimsi</groupId>
|
|
<artifactId>gameyfin</artifactId>
|
|
<version>1.2.4-SNAPSHOT</version>
|
|
<name>gameyfin</name>
|
|
<description>gameyfin</description>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>frontend</module>
|
|
<module>backend</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<sonar.organization>grimsi-github</sonar.organization>
|
|
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
|
<jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version>
|
|
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
|
|
</properties>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.7.4</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://github.com/grimsi/gameyfin.git</connection>
|
|
<url>scm:git:https://github.com/grimsi/gameyfin.git</url>
|
|
<developerConnection>scm:git:https://github.com/grimsi/gameyfin.git</developerConnection>
|
|
</scm>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>coverage</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jacoco</groupId>
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>prepare-agent</id>
|
|
<goals>
|
|
<goal>prepare-agent</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>report</id>
|
|
<goals>
|
|
<goal>report</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jacoco</groupId>
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
<version>${jacoco-maven-plugin.version}</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>${maven-release-plugin.version}</version>
|
|
<configuration>
|
|
<scmCommentPrefix>[ci skip]</scmCommentPrefix>
|
|
<tagNameFormat>v@{project.version}</tagNameFormat>
|
|
<checkModificationExcludes>
|
|
<checkModificationExclude>frontend/package.json</checkModificationExclude>
|
|
<checkModificationExclude>frontend/package-lock.json</checkModificationExclude>
|
|
</checkModificationExcludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|