mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-13 16:40:01 +00:00
55 lines
2.0 KiB
XML
55 lines
2.0 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.4.0-SNAPSHOT</version>
|
|
<name>gameyfin</name>
|
|
<description>gameyfin</description>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>frontend</module>
|
|
<module>backend</module>
|
|
</modules>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.7.5</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>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<properties>
|
|
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
|
<sonar.organization>grimsi-github</sonar.organization>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>2.5.3</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>
|