Files
gameyfin/frontend/pom.xml
T
Simon 4caa2a4187 Release 1.4.2 (#191)
* Updated Java version to 21
* Updated Node.js version used in build to 20
* Add Docker ARM64 image
2023-10-24 15:30:05 +02:00

95 lines
2.7 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>gameyfin</artifactId>
<groupId>de.grimsi</groupId>
<version>1.4.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>gameyfin-frontend</artifactId>
<packaging>jar</packaging>
<properties>
<frontend-maven-plugin.version>1.14.0</frontend-maven-plugin.version>
</properties>
<build>
<resources>
<resource>
<directory>./dist/frontend</directory>
<targetPath>static</targetPath>
</resource>
</resources>
<plugins>
<!-- clean the dist directory used by Angular -->
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>dist</directory>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>${frontend-maven-plugin.version}</version>
<executions>
<!-- Install node and npm -->
<execution>
<id>Install Node and NPM</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<configuration>
<nodeVersion>v20.8.1</nodeVersion>
</configuration>
</execution>
<!-- clean install -->
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<!-- Use legacy peer dependency handling because "mat-table-filter" is unmaintained -->
<arguments>install --legacy-peer-deps</arguments>
</configuration>
</execution>
<!-- Update frontend version in package.json -->
<execution>
<id>npm version</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>version ${project.version} --allow-same-version</arguments>
</configuration>
</execution>
<!-- build app -->
<execution>
<id>npm run build</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run build --omit=dev</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>